Tagged Questions

11
votes
4answers
4k 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 ...
3
votes
4answers
521 views

How to measure distance using Haversine formula with MySQL?

I get Latitude and Longitudes from Google Maps Reverse-Geocoding API and then I need something like this: mysql_query("SELECT users.*, ".mysql_distance_column($lat,$lng)." FROM users ORDER BY ...
2
votes
3answers
99 views

Distance-based JOIN given Latitude/Longitude

Given the following tables: table A (id, latitude, longitude) table B (id, latitude, longitude) how do I build an efficient T-SQL query that associates each row in A with the closest row in B? The ...
2
votes
2answers
2k views

Distance between two locations isn't right

I have used the algorithm on http://www.movable-type.co.uk/scripts/latlong.html to find the distance between two points. My two points are long1 = 51.507467; lat1 = -0.08776; long2 = 51.508736; ...
1
vote
2answers
363 views

How to calculate short & long distance via Haversine?

I am looking for a way to calculate the distance between 2 points on the globe. We've been told to use Haversine, which works fine to calculate the shortest distance between the 2 points. Now, I'd ...
1
vote
1answer
835 views

Django Sort By Calculated Field

Using the distance logic from this SO post, I'm getting back a properly-filtered set of objects with this code: class LocationManager(models.Manager): def nearby_locations(self, latitude, ...
0
votes
3answers
247 views

SQL Distance Query without Trigonometry

I have an SQLite database, which does not support trig functions. I would like to sort a set of lat,lng pairs in my table by distance as compared to a second lat,lng pair. I'm familiar with the ...
0
votes
2answers
125 views

Problems finding distance to other users Sql Server 2005 - Haversine

I have a table with users and I need to find the nearest users based on lat, long. I also need the distance. I have been struggling with the haversine formula and alternatives for two days, but I am ...
0
votes
2answers
320 views

Calculating speed from 2 points

I know this question has been asked a lot, but not yet to my satisfaction. I am trying to use the GPS of an Android device to calculate speed. A lot of people seem to reply by saying to simply use the ...
0
votes
3answers
297 views

C, Calculating the distance between two GPS locations?

If I have two GPS locations, say 51.507222, -0.1275 and 48.856667, 2.350833, what formula could I use to calculate the distance between the two? I've heard a lot about a haversine formula, but can't ...
0
votes
1answer
2k views

Distance between two locations using Latitude and Longitude way off what Google says

I've spent a few days trying to figure this one out and can't seem to pinpoint the problems. I have a SQL 2005 database storing latitude and longitude as Decimal(18,8), all of which I received by ...