7

在 php 中,给定一个纬度和经度点、方位角(以度为单位)和距离(以英尺或公里或其他为单位)我如何确定新的 lat lng 点是什么?这是我尝试过的,但它是错误的。

function destinationPoint($lat, $lng, $brng, $dist) {
      $meters = $dist/3.2808399; // dist in meters
      $dist =  $meters/1000; // dist in km
      $rad = 6371; // earths mean radius
      $dist = $dist/$rad;  // convert dist to angular distance in radians
      $brng = deg2rad($brng);  // conver to radians 
      $lat1 = deg2rad($lat); 
      $lon1 = deg2rad($lng);

      $lat2 = asin(sin($lat1)*cos($dist) + cos($lat1)*sin($dist)*cos($brng) );
      $lon2 = $lon1 + atan2(sin($brng)*sin($dist)*cos($lat1),cos($dist)-sin($lat1)*sin($lat2));
      $lon2 = ($lon2+3*M_PI) % (2*M_PI) - M_PI;  // normalise to -180..+180º
      $lat2 = rad2deg($lat2);
      $lon2 = rad2deg($lon2);


        echo "lat2 = ".$lat2."<br/>";
        echo "lon2 = ".$lon2."<br/>";
    }
4

1 回答 1

4

只是改变

$lon2 = ($lon2+3*M_PI) % (2*M_PI) - M_PI;

$lon2 = fmod($lon2 + 3*M_PI, 2*M_PI) - M_PI;

根据PHP 关于模运算符 ( %)的文档,

模数的操作数在处理之前被转换为整数(通过去除小数部分)。

fmod "[r] 返回参数除法的浮点余数(模)。"

于 2012-06-20T00:35:48.303 回答