用经纬度坐标计算两点之间的距离

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用经纬度坐标计算两点之间的距离相关的知识,希望对你有一定的参考价值。

This function calculates distance with the Haversine formula, this formula assumes that our Earth is spherical, but it isn’t since it’s more like a big orange fruit also compresses at poles. I’ve read that this function has an error about + o – 3 meters (it depends), but it’s a small error for many purposes.
  1. function distance(lat1,lon1,lat2,lon2) {
  2. var R = 6371; // km (change this constant to get miles)
  3. var dLat = (lat2-lat1) * Math.PI / 180;
  4. var dLon = (lon2-lon1) * Math.PI / 180;
  5. var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
  6. Math.cos(lat1 * Math.PI / 180 ) * Math.cos(lat2 * Math.PI / 180 ) *
  7. Math.sin(dLon/2) * Math.sin(dLon/2);
  8. var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
  9. var d = R * c;
  10. if (d>1) return Math.round(d)+"km";
  11. else if (d<=1) return Math.round(d*1000)+"m";
  12. return d;
  13. }

以上是关于用经纬度坐标计算两点之间的距离的主要内容,如果未能解决你的问题,请参考以下文章

根据两点的经纬度坐标计算两个坐标点之间的直线距离

ARCGis中怎样计算两点间的距离

java两点间距离公式

计算两个经纬度之间的距离

怎样计算两个经纬度之间的距离 百度百科

经纬度互换换算成米两点的经纬度计算两点间的距离