All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.clustering.geography.GeographicClusterer Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package com.venky.clustering.geography;

import com.venky.clustering.Clusterer;
import com.venky.geo.GeoLocation;
import com.venky.geo.GeoLocationBuilder;

public class GeographicClusterer extends Clusterer {
	public GeographicClusterer(GeoLocationBuilder builder) {
		this (new GeoCentroidFinder(builder),builder);
	}
	public GeographicClusterer(GeoCentroidFinder centroidFinder , GeoLocationBuilder builder) {
		super(centroidFinder, new GeoMetric());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy