參考
- php 根据两点的经纬度计算距离
- 找出或輸入經緯度
度數、分數和秒數 (DMS):41°24'12.2"N 2°10'26.5"E
度數和小數分數 (DMM):41 24.2028, 2 10.4418
十進位度數 (DD):41.40338, 2.17403 - Android 可以下載「地圖座標」顯示所在座標
--
實際測試
從 22.9957173, 120.1746395 到 22.9961966, 120.1747138 的距離,Google Map 測量為 54 公尺
使用 PHP 程式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?php function getDistance($lat1, $lng1, $lat2, $lng2) { $earthRadius = 6367000; //approximate radius of earth in meters $lat1 = ($lat1 * pi() ) / 180; $lng1 = ($lng1 * pi() ) / 180; $lat2 = ($lat2 * pi() ) / 180; $lng2 = ($lng2 * pi() ) / 180; $calcLongitude = $lng2 - $lng1; $calcLatitude = $lat2 - $lat1; $stepOne = pow(sin($calcLatitude / 2), 2) + cos($lat1) * cos($lat2) * pow(sin($calcLongitude / 2), 2); $stepTwo = 2 * asin(min(1, sqrt($stepOne))); $calculatedDistance = $earthRadius * $stepTwo; return round($calculatedDistance); } echo getDistance(22.9957173, 120.1746395, 22.9961966, 120.1747138); |
結果也是 54 ,所以此程式計算為正確距離
--
2,104 total views, 4 views today