1

我必须计算之间的距离

(40.851774999999996,14.268123999999998)

并且每个坐标到 sql 查询的结果中:

$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach ($results as $key => $value) {
    echo "distance = ". calculateDistance("40.851774999999996","14.268123999999998",$value['lat'],$value['lng'])."<br>"; 
}

calculateDistance在哪里

function calculateDistance($targetLat,$targetLng,$currentLat,$currentLng){
    $r    = 6371; // km
    $dLat = $targetLat-$currentLat;
    $dLng = $targetLng-$currentLng; 
    $a    = sin($dLat/2)*sin($dLat/2) + sin($dLng/2)*sin($dLng/2); 
    $c    = 2*atan2(sqrt($a), sqrt(1-$a));
    return $r*$c;
}

它给了我奇怪的结果,例如:

distance = NAN //-> NAN???
distance = 3392.8405117312 // TOO MUCH!
distance = 3392.8405117312 // TOO MUCH!
...

问题出在哪里?有人可以帮我解决吗?:)

4

3 回答 3

2

sin在函数中使用它之前,您需要将度数转换为弧度。

$radians = $degrees * (M_PI/180);

也看看这个函数。它看起来有点不同。

于 2013-05-25T13:30:02.077 回答
2

根据这个答案:

计算两个经纬度点之间的距离?(Haversine 公式)

  1. 您不会将度数转换为弧度。
  2. 你的公式不正确:

他们说:

 var a = 
    Math.sin(dLat/2) * Math.sin(dLat/2) +
    Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2)) * 
    Math.sin(dLon/2) * Math.sin(dLon/2); 

你写了:

$a = sin($dLat/2)*sin($dLat/2) + sin($dLng/2)*sin($dLng/2); 

您的代码中缺少余弦。

于 2013-05-25T13:30:47.667 回答
0

您指的是Haversine公式:

http://en.wikipedia.org/wiki/Haversine_formula

这些页面中有大量示例和代码片段:

我在我的代码中使用了这个片段,效果很好:

http://www.codecodex.com/wiki/Calculate_distance_between_two_points_on_a_globe#PHP

于 2013-05-25T13:59:08.453 回答