com.venky.clustering.geography.GeographicClusterer Maven / Gradle / Ivy
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());
}
}