/ Published in: PHP
URL: http://www.catswhocode.com/blog/10-super-useful-php-snippets
"Here is a very handy function, which calculate the distance from a point A to a point B, using latitudes and longitudes. The function can return the distance in miles, kilometers, or nautical miles."
Expand |
Embed | Plain Text
function distance($lat1, $lon1, $lat2, $lon2, $unit) { $theta = $lon1 - $lon2; $miles = $dist * 60 * 1.1515; if ($unit == "K") { return ($miles * 1.609344); } else if ($unit == "N") { return ($miles * 0.8684); } else { return $miles; } } // Usage
You need to login to post a comment.
