我已将公式转换为Java here。但准确性是一个问题。我们正在使用GPS坐标。
我们正在使用iPhone提供的GPS位置,精度高达10小时。
/*
* 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;
}
FYI:public static final int DISTANCE_IN_FEET = 20924640;
然后我使用Math.round(距离);转换为长。
对于实际的25英尺,我输出7英尺。
答案 0 :(得分:17)
这是我的java实现:
/**
* 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;
}
答案 1 :(得分:3)
根据Wikipedia,10英尺接近正常GPS精度所能达到的极限。 (这假设您获得了良好的GPS信号。)This post http://gis.stackexchange.com提供了更详细的数字。它基本上说3米水平分辨率是普通GPS接收器最好的。
因此,如果您要比较两个不同(普通)接收器提供的位置,每个接收器具有最佳情况(3米/ 10英尺)分辨率,您仍然无法可靠地判断一个接收器是否在10英尺范围内另一个。
(注意你的10位“精确”可能是虚幻的。真正的问题是位置的准确程度;即错误条在两个不同的设备上有多大......)
那么在那种情况下我还有其他选择吗?