程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP 根據經緯度計算距離,php經緯度計算

PHP 根據經緯度計算距離,php經緯度計算

編輯:關於PHP編程

PHP 根據經緯度計算距離,php經緯度計算



$lon1 經度
$lat1 緯度
$lon2 經度
$lat2 緯度
$pi80 = 3.1415926535898 / 180;
$lat1 *= $pi80;
$lon1 *= $pi80;
$lat2 *= $pi80;
$lon2 *= $pi80;
//$r = 6372.797; // mean radius of Earth in km
$r = 6378.137;
$dlat = $lat2 - $lat1;
$dlng = $lon2 - $lon1;
$a = sin($dlat/2)*sin($dlat/2)+cos($lat1)*cos($lat2)*sin($dlng/2)*sin($dlng/2);
$c = 2 * atan2(sqrt($a), sqrt(1 - $a));
$km = $r * $c;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved