Php兩點地理座標距離的計算方法和具體程式碼

傲雪星楓發表於2019-01-15
文章主要為大家詳細介紹了php兩點地理座標距離的計算方法,具有一定的參考價值,感興趣的小夥伴們可以參考一下

php計算兩點地理座標距離的具體程式碼,具體內容如下

功能:根據圓周率和地球半徑係數與兩點座標的經緯度,計算兩點之間的球面距離。

獲取兩點座標距離:

  1. <?php
  2. /**
  3.  * 計算兩點地理座標之間的距離
  4.  * @param Decimal $longitude1 起點經度
  5.  * @param Decimal $latitude1 起點緯度
  6.  * @param Decimal $longitude2 終點經度
  7.  * @param Decimal $latitude2 終點緯度
  8.  * @param Int   $unit    單位 1:米 2:公里
  9.  * @param Int   $decimal  精度 保留小數位數
  10.  * @return Decimal
  11.  */
  12. function getDistance($longitude1, $latitude1, $longitude2, $latitude2, $unit=2, $decimal=2){
  13.  
  14.   $EARTH_RADIUS = 6370.996; // 地球半徑係數
  15.   $PI = 3.1415926;
  16.  
  17.   $radLat1 = $latitude1 * $PI / 180.0;
  18.   $radLat2 = $latitude2 * $PI / 180.0;
  19.  
  20.   $radLng1 = $longitude1 * $PI / 180.0;
  21.   $radLng2 = $longitude2 * $PI /180.0;
  22.  
  23.   $a = $radLat1 - $radLat2;
  24.   $b = $radLng1 - $radLng2;
  25.  
  26.   $distance = 2 * asin(sqrt(pow(sin($a/2),2) + cos($radLat1) * cos($radLat2) * pow(sin($b/2),2)));
  27.   $distance = $distance * $EARTH_RADIUS * 1000;
  28.  
  29.   if($unit==2){
  30.     $distance = $distance / 1000;
  31.   }
  32.  
  33.   return round($distance, $decimal);
  34.  
  35. }
  36.  
  37. // 起點座標
  38. $longitude1 = 113.330405;
  39. $latitude1 = 23.147255;
  40.  
  41. // 終點座標
  42. $longitude2 = 113.314271;
  43. $latitude2 = 23.1323;
  44.  
  45. $distance = getDistance($longitude1, $latitude1, $longitude2, $latitude2, 1);
  46. echo $distance.'m'; // 2342.38m
  47.  
  48. $distance = getDistance($longitude1, $latitude1, $longitude2, $latitude2, 2);
  49. echo $distance.'km'; // 2.34km
  50.  
  51. ?>

以上就是php兩點地理座標距離的計算方法的全部內容,希望對大家的學習有所幫助。

相關文章