private static double EARTH_RADIUS = 6378.137;
private static double rad(double d) {
return d * Math.PI / 180.0;
}
public static double getDistance(double lat1, double lng1, double lat2,
double lng2) {
double radLat1 = rad(lat1);
double radLat2 = rad(lat2);
double a = radLat1 - radLat2;
double b = rad(lng1) - rad(lng2);
double s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a/2),2)
+ Math.cos(radLat1) * Math.cos(radLat2)
* Math.pow(Math.sin(b / 2), 2)));
s = s * EARTH_RADIUS;
s = Math.round(s * 10000d) / 10000d;
s = s*1000;
return s;
}
// s 则是相隔的距离 单位是米
// 以下是sql语句对经纬度的计算
ACOS(
SIN((#{lat} * 3.1415) / 180 ) * SIN((edm.lat * 3.1415) / 180 )
+
COS((#{lat} * 3.1415) / 180 ) * COS((edm.lat * 3.1415) / 180 ) * COS((#{lng}* 3.1415) / 180 - (edm.lng * 3.1415) / 180 )
) * 6380000