Tagged Questions
10
votes
4answers
3k views
Haversine Formula in Python (Bearing and Distance between two GPS points)
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 ...
2
votes
2answers
192 views
Haversine's formula in sqlalchemy
I'm having the following lines in my code
query = "SELECT id, " \
"( 3959 * acos( cos( radians(37) ) * cos( radians( %(lat)i ) ) * " \
"cos( radians( %(lng)i ) - radians(-122) ) + ...
0
votes
2answers
47 views
Python sort dictionary of Lat / Lons for Footprint
I am calculating satellite coverage footprints on the surface of an ellipsoid and my function returns a list of Lat / Lons that looks like below. It is a python list of dictionaries. Now if I scatter ...