com.venky.clustering.geography.GeoMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.clustering.geography;
import com.venky.clustering.Metric;
import com.venky.geo.GeoCoordinate;
public class GeoMetric implements Metric{
@Override
public double distance(GeoCoordinate p1, GeoCoordinate p2) {
return p1.distanceTo(p2);
}
}