Created
March 22, 2015 04:44
-
-
Save amalgjose/6d760a7b963aaa64f734 to your computer and use it in GitHub Desktop.
Python program to find the distance between two gps locations
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
__author__ = 'Amal G Jose' | |
from math import radians, cos, sin, asin, sqrt | |
def get_distance(lon1, lat1, lon2, lat2): | |
##convert decimal degrees to radians | |
lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2]) | |
##haversine formula | |
dlon = lon2 - lon1 | |
dlat = lat2 - lat1 | |
a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2 | |
c = 2 * asin(sqrt(a)) | |
# Radius of earth in kilometers. Use 3956 for miles | |
r = 6371 | |
return c * r | |
lat1 = 12.971599 | |
long1 = 77.594563 | |
lat2 = 12.971599 | |
long2 = 77.604562 | |
print get_distance(long1,lat1,long2, lat2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment