我正在尝试编写一个PHP函数来计算两点之间的接近程度,但我无法让它工作。
我目前正在使用此处找到的功能:http://www.zipcodeworld.com/samples/distance.php.html
function distance($lat1, $lon1, $lat2, $lon2, $unit) {
$theta = $lon1 - $lon2;
$dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));
$dist = acos($dist);
$dist = rad2deg($dist);
$miles = $dist * 60 * 1.1515;
$unit = strtoupper($unit);
if ($unit == "m") {
return ($miles * 1.609344)/1000;
}
else if ($unit == "N") {
return ($miles * 0.8684);
}
else {
return $miles;
}
}
我的应用需要精确到米,但无论我做什么我都得不到正确的结果。
我从这里得到坐标:http://itouchmap.com/latlong.html
我做错了什么?你能帮帮我吗?
由于
麦克
答案 0 :(得分:3)
我刚才写了这个小班,但它应该比你问题中的方法更好地帮助你进行距离计算:https://github.com/treffynnon/Geographic-Calculations-in-PHP
使用以上链接完成您的问题将是:
$Geography = new Geography();
echo $Geography->getDistance($lat1, $lon1, $lat2, $lon2);
使用Vincenty's formulae为距离计算提供以米为单位的距离。
我班上使用的Vincenty公式是http://www.movable-type.co.uk/scripts/LatLongVincenty.html提供的javascript函数的PHP端口
答案 1 :(得分:0)
这是一个详细介绍JS示例可用算法的页面: http://www.movable-type.co.uk/scripts/latlong.html