PHP下的经纬度求距离

WBOY
發布: 2016-06-20 12:47:07
原創
737 人瀏覽過

/***  @desc 根据两点间的经纬度计算距离*  @param float $lat 纬度值*  @param float $lng 经度值*/ function getDistance($lat1, $lng1, $lat2, $lng2) {     $earthRadius = 6367000; //approximate radius of earth in meters      /*       Convert these degrees to radians       to work with the formula     */      $lat1 = ($lat1 * pi() ) / 180;     $lng1 = ($lng1 * pi() ) / 180;      $lat2 = ($lat2 * pi() ) / 180;     $lng2 = ($lng2 * pi() ) / 180;      /*       Using the       Haversine formula       http://en.wikipedia.org/wiki/Haversine_formula       calculate the distance     */      $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); }
登入後複製


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!