Created
January 18, 2015 07:15
-
-
Save maxwofford/774659e2d8985c627bf3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Accepts inputs like: {lat:0,lng:0},{lat:15.623,lng:-23.421} | |
function getDistanceFromLatLonInKm(coords1, coords2) { | |
var R = 6371; // Radius of the earth in km | |
var dLat = deg2rad(coords2.lat-coords1.lat); // deg2rad below | |
var dLon = deg2rad(coords1.lng-coords2.lng); | |
var a = | |
Math.sin(dLat/2) * Math.sin(dLat/2) + | |
Math.cos(deg2rad(coords1.lat)) * Math.cos(deg2rad(coords2.lat)) * | |
Math.sin(dLon/2) * Math.sin(dLon/2); | |
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); | |
var d = R * c; // Distance in km | |
return d; | |
} | |
function deg2rad(deg) { | |
return deg * (Math.PI/180); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment