本文介紹了計(jì)算由LATE表示的兩點(diǎn)之間的距離,最長可達(dá)15英尺精度的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我已經(jīng)將公式轉(zhuǎn)換為here提供的Java。但精確度是個(gè)問題。我們使用的是GPS坐標(biāo)。
我們使用的是iPhone提供的GPS定位,精度高達(dá)10個(gè)小數(shù)點(diǎn)。
/*
* Latitude and Longitude are in Degree
* Unit Of Measure : 1 = Feet,2 = Kilometer,3 = Miles
*/
//TODO 3 Change Unit of Measure and DISTANCE_IN_FEET constants to Enum
public static Double calculateDistance(double latitudeA,double longitudeA,double latitudeB,double longitudeB,short unitOfMeasure){
Double distance;
distance = DISTANCE_IN_FEET *
Math.acos(
Math.cos(Math.toRadians(latitudeA)) * Math.cos(Math.toRadians(latitudeB))
*
Math.cos(Math.toRadians(longitudeB) - Math.toRadians(longitudeA))
+
Math.sin(Math.toRadians(latitudeA))
*
Math.sin(Math.toRadians(latitudeB))
);
return distance;
}
僅供參考:公共靜態(tài)最終INT DISTANCE_IN_FORTS=20924640;
然后使用Math.round(Distance);轉(zhuǎn)換為Long。
對于實(shí)際的25英尺,我將獲得7英尺的輸出。
推薦答案
您需要haversine formula。
以下是我的Java實(shí)現(xiàn):
/**
* Calculates the distance in km between two lat/long points
* using the haversine formula
*/
public static double haversine(
double lat1, double lng1, double lat2, double lng2) {
int r = 6371; // average radius of the earth in km
double dLat = Math.toRadians(lat2 - lat1);
double dLon = Math.toRadians(lng2 - lng1);
double a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2))
* Math.sin(dLon / 2) * Math.sin(dLon / 2);
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
double d = r * c;
return d;
}
這篇關(guān)于計(jì)算由LATE表示的兩點(diǎn)之間的距離,最長可達(dá)15英尺精度的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,