/ Published in: PHP

"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
Copy this code and paste it in your HTML
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 echo distance(32.9697, -96.80322, 29.46786, -98.53506, "k")." kilometers";
URL: http://www.catswhocode.com/blog/10-super-useful-php-snippets
Comments
