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

PHP计算百度地图两个GPS坐标之间的距离代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-08 16:55:07 浏览: 评论:0 

应用百度地图时,我们如何用php计算两个GPS经纬度坐标之间的距离呢?现在我们把函数代码分享给你,以下是我分享的用PHP计算两个GPS经纬度坐标之间的距离的代码,有需要的朋友可以直接拿去用,代码如下:

  1. /** 
  2.  * 计算两个坐标之间的距离(米) 
  3.  * @param float $fP1Lat 起点(纬度) 
  4.  * @param float $fP1Lon 起点(经度) 
  5.  * @param float $fP2Lat 终点(纬度) 
  6.  * @param float $fP2Lon 终点(经度) 
  7.  * @return int 
  8.  */ 
  9. function distanceBetween($fP1Lat$fP1Lon$fP2Lat$fP2Lon){ 
  10.     $fEARTH_RADIUS = 6378137; 
  11.     //角度换算成弧度 
  12.     $fRadLon1 = deg2rad($fP1Lon); 
  13.     $fRadLon2 = deg2rad($fP2Lon); 
  14.     $fRadLat1 = deg2rad($fP1Lat); 
  15.     $fRadLat2 = deg2rad($fP2Lat); 
  16.     //计算经纬度的差值 
  17.     $fD1 = abs($fRadLat1 - $fRadLat2); 
  18.     $fD2 = abs($fRadLon1 - $fRadLon2); 
  19.     //距离计算 
  20.     $fP = pow(sin($fD1/2), 2) + 
  21.           cos($fRadLat1) * cos($fRadLat2) * pow(sin($fD2/2), 2); 
  22.     return intval($fEARTH_RADIUS * 2 * asin(sqrt($fP)) + 0.5); 
  23. /** 
  24.  * 百度坐标系转换成标准GPS坐系 
  25.  * @param float $lnglat 坐标(如:106.426, 29.553404) 
  26.  * @return string 转换后的标准GPS值: 
  27.  */ 
  28. function BD09LLtoWGS84($fLng$fLat){ // 经度,纬度 
  29.     $lnglat = explode(','$lnglat); 
  30.     list($x,$y) = $lnglat
  31.     $Baidu_Server = "http://api.map.baidu.com/ag/coord/convert?from=0&to=4&x={$x}&y={$y}"
  32.     $result = @file_get_contents($Baidu_Server); 
  33.     $json = json_decode($result); 
  34.     if($json->error == 0){ //开源软件:phpfensi.com 
  35.         $bx = base64_decode($json->x); 
  36.         $by = base64_decode($json->y); 
  37.         $GPS_x = 2 * $x - $bx
  38.         $GPS_y = 2 * $y - $by
  39.         return $GPS_x.','.$GPS_y;//经度,纬度 
  40.     }else 
  41.         return $lnglat
  42. }

Tags: PHP百度地图 GPS坐标之间

分享到: