com.venky.clustering.geography.GeographicClusterer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Commonly used programming tasks in java
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());
}
}