7

php では、緯度と経度のポイント、方位 (度単位)、および距離 (フィートまたは km など) が与えられた場合、新しい緯度経度ポイントが何であるかをどのように把握できますか? これは私が試したものですが、間違っています。

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 に答える