java根据经纬度坐标计算两点的距离算法
生活随笔
收集整理的這篇文章主要介紹了
java根据经纬度坐标计算两点的距离算法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
/** * Created by yuliang on 2015/3/20. */ public class LocationUtils { private static double EARTH_RADIUS = 6378.137; private static double rad(double d) { return d * Math.PI / 180.0; } /** * 通過經緯度獲取距離(單位:米) * @param lat1 * @param lng1 * @param lat2 * @param lng2 * @return */ 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; } }根據經緯度計算距離,這個方法很精確,與百度地圖的測距相差不到1米。 我是利用百度地圖拾取坐標系統(http://api.map.baidu.com/lbsapi/getpoint/index.html)和百度地圖測距的工具測試的。 轉自http://blog.csdn.net/woaixinxin123/article/details/45935439
轉載于:https://my.oschina.net/abbchina/blog/1920919
總結
以上是生活随笔為你收集整理的java根据经纬度坐标计算两点的距离算法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 单页面应用微信分享跳坑指南
- 下一篇: 覆盖索引小结