
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
The newest version!
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy