首頁  >  文章  >  資料庫  >  如何在 PHP 中使用緯度和經度計算半徑內的距離?

如何在 PHP 中使用緯度和經度計算半徑內的距離?

Barbara Streisand
Barbara Streisand原創
2024-10-30 18:40:03474瀏覽

How to Calculate Distances within a Radius Using Latitude and Longitude in PHP?

根據緯度和經度計算距離

在此場景中,您要確定以緯度和經度為中心15 英里半徑內的點使用者輸入的座標。為此,您可以利用數學公式來計算距離。

考慮以下 PHP 函數:

<code class="php">function get_distance($latitude1, $longitude1, $latitude2, $longitude2, $unit = 'Mi') { 

    // Calculate the angle difference
    $theta = $longitude1 - $longitude2; 

    // Calculate the distance
    $distance = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + 
                (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * 
                cos(deg2rad($theta))); 

    // Convert to degrees
    $distance = acos($distance); 
    $distance = rad2deg($distance); 

    // Convert to miles or kilometers
    $distance = $distance * 60 * 1.1515; 

    // Round the distance
    return (round($distance,2));
}</code>

或者,您可以利用資料庫查詢來完成此操作:

<code class="sql">$query = "SELECT *,(((acos(sin((".$latitude."*pi()/180)) * 
            sin((`Latitude`*pi()/180))+cos((".$latitude."*pi()/180)) * 
            cos((`Latitude`*pi()/180)) * cos(((".$longitude."- `Longitude`)* 
            pi()/180))))*180/pi())*60*1.1515
        ) as distance 
        FROM `MyTable` 
        HAVING distance > ".$distance.";</code>

以上是如何在 PHP 中使用緯度和經度計算半徑內的距離?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn