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

相关文章

文章浏览阅读8.4k次,点赞8次,收藏7次。SourceCodester Onl...
文章浏览阅读3.4k次,点赞46次,收藏51次。本文为大家介绍在...
文章浏览阅读1.1k次。- php是最优秀, 最原生的模板语言, 替代...
文章浏览阅读1.1k次,点赞18次,收藏15次。整理K8s网络相关笔...
文章浏览阅读1.2k次,点赞22次,收藏19次。此网络模型提供了...
文章浏览阅读1.1k次,点赞14次,收藏19次。当我们谈论网络安...