java 通过经纬度算两点直线距离
2021-06-06 18:03
标签:return private dia cer 依据 计算 main pre out
* 360度=2π π=Math.PI
*
* x度 = x*π/360 弧度
*
* @param
* @return
* @author chiwei
* @since JDK 1.6
*/
private static double getRadian(double degree) {
return degree * Math.PI / 180.0;
}
/**
* 依据经纬度计算两点之间的距离 GetDistance:(). java 通过经纬度算两点直线距离 标签:return private dia cer 依据 计算 main pre out 原文地址:https://www.cnblogs.com/xingqiang/p/14606749.htmlpublic class DistanceRad {
private static double EARTH_RADIUS = 6378.137;// 单位千米
/**
* 角度弧度计算公式 rad:().
*
*
* @param lat1 1点的纬度
* @param lng1 1点的经度
* @param lat2 2点的纬度
* @param lng2 2点的经度
* @return 距离 单位 km
* @author chiwei
* @since JDK 1.6
*/
public static double getDistance(double lat1, double lng1, double lat2, double lng2) {
double radLat1 = getRadian(lat1);
double radLat2 = getRadian(lat2);
double a = radLat1 - radLat2;// 两点纬度差
double b = getRadian(lng1) - getRadian(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;
return s;
}
public static void main(String ar[]) {
double a =getDistance(43.838635, 125.37147, 43.838642, 125.372);
System.out.println(a);
}
}