package dk.daoas.fulddaekning; public class GeoPoint { public double latitude; public double longitude; public GeoPoint() { //Default } public GeoPoint(double lat, double lng) { //Default latitude=lat; longitude=lng; } public static double beregnAfstand(GeoPoint point1, GeoPoint point2) { //(62.8*sqrt(3.1*(Power(a.Latitude-x.Latitude,2)+Power(a.Longitude-x.Longitude,2)))) as Afstand, double pwrLat = Math.pow(point1.latitude - point2.latitude, 2); double pwrLng = Math.pow(point1.longitude - point2.longitude, 2); return 62.8 * Math.sqrt( 3.1 * (pwrLat + pwrLng) ); } }