加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

PHP根据两点间的经纬度计算距离

发布时间:2020-05-25 17:06:17 所属栏目:PHP 来源:互联网
导读:这篇文章主要介绍了PHP如何根据两点间的经纬度计算距离,代码很简单,但很实用,需要的朋友可以参考下

这是一个不错的示例,直接贴代码,首先要知道纬度值、经度值

/
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);
}

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读