首页 > 开发 > PHP > 正文

PHP根据两点间的经纬度计算距离

2024-05-04 23:26:36
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP如何根据两点间的经纬度计算距离,代码很简单,但很实用,需要的朋友可以参考下

这是一个不错的示例,直接贴代码,首先要知道纬度值、经度值

  1. /**  
  2. * @desc 根据两点间的经纬度计算距离  
  3. * @param float $lat 纬度值  
  4. * @param float $lng 经度值  
  5. */ 
  6. function getDistance($lat1$lng1$lat2$lng2)  
  7. {  
  8. $earthRadius = 6367000; //approximate radius of earth in meters  
  9.  
  10. /*  
  11. Convert these degrees to radians  
  12. to work with the formula  
  13. */ 
  14.  
  15. $lat1 = ($lat1 * pi() ) / 180;  
  16. $lng1 = ($lng1 * pi() ) / 180;  
  17.  
  18. $lat2 = ($lat2 * pi() ) / 180;  
  19. $lng2 = ($lng2 * pi() ) / 180;  
  20.  
  21. /*  
  22. Using the  
  23. Haversine formula  
  24.  
  25. http://en.wikipedia.org/wiki/Haversine_formula  
  26.  
  27. calculate the distance  
  28. */ 
  29.  
  30. $calcLongitude = $lng2 - $lng1;  
  31. $calcLatitude = $lat2 - $lat1;  
  32. $stepOne = pow(sin($calcLatitude / 2), 2) + cos($lat1) * cos($lat2) * pow(sin($calcLongitude / 2), 2);  
  33. $stepTwo = 2 * asin(min(1, sqrt($stepOne)));  
  34. $calculatedDistance = $earthRadius * $stepTwo;  
  35.  
  36. return round($calculatedDistance);  
  37. }  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表