当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-21 10:06:29 浏览: 评论:0 

这篇文章主要介绍了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. //www.phpfensi.com 
  36. return round($calculatedDistance);  
  37. }  

Tags: PHP经纬度计算

分享到: