Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know how to get the distance and bearing between 2 GPS points. I have researched on the haversine formula and someone told me that I could find the bearing as well with it.

Excuse my small lack of understanding but I am new to Python, just turned 15 and still learning Trig Maths.

(Edit) Now I have a great understanding everything is working fine but the bearing doen't work quite right yet. It comes up as a negative but is supposted to be between 0 - 360 degrees. Thank you very much for the code it has helped me alot. The set data should make the horizontial bearing 96.02166666666666 The set data is this:

Start point: 53.32055555555556 , -1.7297222222222221
Bearing: 96.02166666666666
Distance: 2 km
Destination point: 53.31861111111111, -1.6997222222222223
Final bearing: 96.04555555555555

Here is my new code:

from math import *

Aaltitude = 2000
Oppsite  = 20000

lat1 = 53.32055555555556
lat2 = 53.31861111111111
lon1 = -1.7297222222222221
lon2 = -1.6997222222222223

lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2])

dlon = lon2 - lon1
dlat = lat2 - lat1
a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2
c = 2 * atan2(sqrt(a), sqrt(1-a))
Base = 6371 * c


Bearing =atan2(cos(lat1)*sin(lat2)-sin(lat1)*cos(lat2)*cos(lon2-lon1), sin(lon2-lon1)*cos(lat2)) 

Bearing = degrees(Bearing)
print ""
print ""
print "--------------------"
print "Horizontal Distance:"
print Base
print "--------------------"
print "Bearing:"
print Bearing
print "--------------------"


Base2 = Base * 1000
distance = Base * 2 + Oppsite * 2 / 2
Caltitude = Oppsite - Aaltitude

a = Oppsite/Base
b = atan(a)
c = degrees(b)

distance = distance / 1000

print "The degree of vertical angle is:"
print c
print "--------------------"
print "The distance between the Balloon GPS and the Antenna GPS is:"
print distance
print "--------------------"
share|improve this question
Python haversine implementation can be found codecodex.com/wiki/…. However for short distance calculations very simple ways exists. Now, what is your maximum distance expected? Are you able to get your co-ordinates in some local cartesian co-ordinate system? – eat Feb 6 '11 at 13:15
@James Dyson: with distances like 15km, creat circle doesen't count anything. My suggestion: figure out first the solution with euclidean distances! That will give you a working solution and then later if your distances will be much much longer, then adjust your application. Thanks – eat Feb 6 '11 at 22:30
Can I also find the Bearing from this equation? – James Dyson Feb 6 '11 at 22:42
1  
@James Dyson: If your above comment was aimed to me (and at to my earlier suggestion), the answer is surely (and quite 'trivially' as well). I may be able to give some example code, but it won't utilize trigonometry, rather geometry (so I'm unsure if it will help you at all. Are you familiar at all with the concept of vector? In your case positions and directions could be handled most straightforward manner with vectors). – eat Feb 6 '11 at 23:04
1  
atan2(sqrt(a), sqrt(1-a)) is the same as asin(sqrt(a)) – user102008 Dec 7 '11 at 1:44
show 4 more comments

4 Answers

up vote 35 down vote accepted

Here's a python version:

from math import radians, cos, sin, asin, sqrt

def haversine(lon1, lat1, lon2, lat2):
    """
    Calculate the great circle distance between two points 
    on the earth (specified in decimal degrees)
    """
    # 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)) 
    km = 6367 * c
    return km 
share|improve this answer
2  
Could use math.radians() function instead of multiplying by pi/180 - same effect, but a bit more self-documenting. – Hugh Bothwell Feb 6 '11 at 15:10
Good idea! Fixed. – Michael Dunn Feb 6 '11 at 16:16
Thanks soooo much, My distance can vary (horizontaly) between 15-1km – James Dyson Feb 6 '11 at 20:19
Correct me if I am wrong, but can't you just say: import math? – James Dyson Feb 6 '11 at 20:20
2  
How come you use atan2(sqrt(a), sqrt(1-a)) instead of just asin(sqrt(a))? Is atan2 more accurate in this case? – Eyal Jul 25 '11 at 16:34
show 2 more comments

I don't have the python translation, but her are the formulas you need.

http://www.movable-type.co.uk/scripts/latlong.html

Bob

share|improve this answer
Thanks alot, I found this one before but with the code above can understand it better. – James Dyson Feb 6 '11 at 22:21

Some implementations in python:

share|improve this answer
Thanks...i had already had a look at that and couldn't understand it that well. – James Dyson Feb 6 '11 at 22:17

Thanks Guys Without your help I wouldn't of been able to do it myself. Here is the final result. Thank you egg, Bob, Fábio Diniz, Michael Dunn and Hugh Bothwell. You are the best!

from math import *

#Two Example GPS Locations 
lat1 = 53.32055555555556
lat2 = 53.31861111111111
lon1 = -1.7297222222222221
lon2 = -1.6997222222222223
Aaltitude = 2000
Oppsite  = 20000


lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2])

dlon = lon2 - lon1
dlat = lat2 - lat1
a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2
c = 2 * atan2(sqrt(a), sqrt(1-a))
Base = 6371 * c


def calcBearing(lat1, lon1, lat2, lon2):
dLon = lon2 - lon1
y = sin(dLon) * cos(lat2)
x = cos(lat1) * sin(lat2) \
    - sin(lat1) * cos(lat2) * cos(dLon)
return atan2(y, x)

Bearing = calcBearing(lat1, lon1, lat2, lon2)
Bearing = degrees(Bearing)
print "--------------------"
print "Horizontal Distance:"
print Base
print "--------------------"
print "Horizontal Bearing:"
print Bearing
print "--------------------"


Base2 = Base * 1000
distance = Base * 2 + Oppsite * 2 / 2
Caltitude = Oppsite - Aaltitude

a = Oppsite/Base
b = atan(a)
c = degrees(b)

distance = distance / 1000

print "The degree of vertical angle is:"
print c
print "--------------------"
print "The distance between A and B is:"
print distance
print "--------------------"
share|improve this answer
@James Dyson: There is still one problem with your bearing calculation, and it doesn't show up in your single test case. The bearing as you calculate it using degrees(atan2(....)) can range from -180 degrees to +180 degrees. You need to shift it into the range 0 to 360. This takes one simple step: bearing = (bearing + 360) % 360 ... the '%' is the remainder/modulo operator. – John Machin Feb 7 '11 at 11:51
@James Dyson: Actually you can demonstrate this by calculating the bearing from the 2nd point back to the 1st point; your calculation will show -83.8 degrees; should be 276.2 degrees. – John Machin Feb 7 '11 at 12:06
@John Machin Thankyou for the reply. I get what you are saying entirely now so in this case (my code would think east in 0? ) So I have to level it by bearing = (bearing + 360) % 360 Correct? Cheers John – James Dyson Feb 7 '11 at 20:02
@James Dyson: I don't understand "my code would think east in 0?". The fix is simply as I said to add one more line bearing = (bearing + 360) % 360 ... no need to test for negative beforehand. – John Machin Feb 7 '11 at 21:53
@James Dyson: With a bearing (also known as "azimuth"), north is 0, east is 90, etc – John Machin Feb 7 '11 at 22:40
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.