Tagged Questions
The haversine tag has no wiki summary.
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 ...
8
votes
2answers
1k views
Is Google Maps calculating the wrong distance?
I've managed to get two functions working to calculate distances between two point on a google map. One that I gleaned(stole) from various places on the web and the other using the ...
6
votes
1answer
907 views
CLLocation Category for Calculating Bearing w/ Haversine function
I'm trying to write a category for CLLocation to return the bearing to another CLLocation.
I believe I'm doing something wrong with the formula (calculous is not my strong suit). The returned bearing ...
5
votes
2answers
1k views
Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?
As I understand, SQLite doesn't have the math functions to properly implement the Haversine formula in straight SQL. I'm thinking this should be possible using an external function, with the ...
3
votes
3answers
829 views
How to transform a distance from degrees to metres?
I'm using OpenLayers with an ordinary mercator map and I'm trying to sample a bounding box by finding a grid of points in latlong.
The bbox is expressed in latlon, e.g.
...
3
votes
3answers
1k views
Best method for working out locations within a radius of starting point
I'm aiming to create a feature in my latest project preferably using PHP. When each user signs up they are going to input their postcode. Then hopefully I will be converting this to lat/long using ...
2
votes
3answers
76 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
122 views
Haversine query into Oracle
I'm currently having to go through my queries and transfer them over to using Oracle rather than SQLSERVER and i'm a bit stuck with this query which i'm using from here
SELECT TOP 1 * FROM ( SELECT ...
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) ) + ...
2
votes
3answers
296 views
Implementing a Haversine function for sqlite into an iPhone project
So after an hour of research, I've found that most people seem to agree that the function at http://www.thismuchiknow.co.uk/?p=71 is the way to go for implementing a Haversine function into an iPhone ...
2
votes
2answers
162 views
What earth radius should I use to calculate distances near the Poles?
I'm monitoring a GPS unit which is on it's way from Cape Discovery in Canada, to the North Pole. I need to keep track of the distance travelled and distance remaining each day, so I'm using the ...
2
votes
4answers
449 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
1answer
405 views
Mysql Recursive Query / Spherical Law of Cosines
I want to search nearest locations from coordinates (lat/lng) into mysql database, I use spherical law of cosines to searching these places :
SELECT onlycoord.id, locations.name, locations.ascii,
...
2
votes
1answer
379 views
Php nearby places script help
I was reading http://code.google.com/apis/maps/articles/phpsqlsearch.html to get the SQL/Math. I wrote a little php script but i get no results.
<?php
$db_host = "localhost";
$db_username = ...
2
votes
3answers
291 views
zipcode distance range formula. Which formula is correct?
I need to find all the zipcodes with a certain range from a zipcode. I have all the zipcode lat/lon in a DB.
I have found two formulas online that vary slightly from each other. Which one is ...
2
votes
2answers
482 views
Geolocation and Haversine formula
I am trying to create a basic web application that detects the users geolocation, queries a mySQL database, and returns all bus stops within say 5 kilometers.
The GTFS feed including the Longitude ...
2
votes
1answer
540 views
Combine NamedQuery and Criteria in Hibernate
I use Hibernate in a storefinder application.
For the proximity search in SQL I use the haversine formula. Because this is a bit messy SQL I created a named SQL query in my .hbm.xml File for this.
...
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;
...
2
votes
2answers
657 views
Calculate compass heading to a CLLocation - Haversine functions for iOS
I understand how to get the distance between 2 CLLocations. I need to determine the generalized compass bearing (N, NE, E etc.) from a CLLocation to another CLLocation.
Before I implement something ...
2
votes
1answer
809 views
Add radius to Longitude and Latitude with C#
I need to generate a bounding box of min and max latitude and longitude values so I can return addresses within a given radius.
I have two func<>'s below to return the range I need to +/- to the ...
2
votes
2answers
2k views
Calculating Great-Circle Distance with SQLite
Here is my problem, I have a SQLite table with locations and latitudes / longitudes. Basically I need to:
SELECT location, HAVERSINE(lat, lon) AS distance FROM location ORDER BY distance ASC;
...
1
vote
1answer
90 views
GPS Distance Calculation
I want to calculate the distance between two GPS locations, each with a latitute value and a longitude value. The calculations should be accurate for short-distance results. eg. < 300m. If I use ...
1
vote
2answers
146 views
Using the Haversine formula with PostgreSQL and PDO
On my site I'm trying to get locations nearby.
I'm trying to use the Haversine formula for this.
http://en.wikipedia.org/wiki/Haversine_formula
MySQL Great Circle Distance (Haversine formula)
...
1
vote
1answer
344 views
google maps API geocode finds nearby KML
I've seen a number of people ask about this on Google Maps discussion groups to productive discussion, so I thought I would try here.
Goal: make a searchable map in Google Maps API that can return ...
1
vote
2answers
115 views
__CIasin and Is Arcsine much slower than sine in .NET?
I've been running som eprofile tests of a slow area of code. This is with Visual Studio 2008 and .NET 2 (fully patched). About 32% of my computation is used by the Haversine formula. This requires two ...
1
vote
1answer
359 views
Doubts in converting spherical coordinates
I'm trying to convert spherical coordinates (namely latitude and longitude from a GPS device) into Cartesian coordinates. I'm following this simple conversion derived from the polar coordinates ...
1
vote
2answers
354 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
800 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
2answers
58 views
How to calculate distance between five markers?
How do you calculate the distance between five markers in Google maps V3? I know I have to use Haversine formula which I researched and even found a post in here teaching on calculating the distance ...
0
votes
2answers
49 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 ...
0
votes
1answer
84 views
Solr 3.4 Geodist function, incorrect/ or unwanted results
I'm having a problem with Solr 3.4, I'm using it's spacial search functions like
Geodist, and Geofilt.
Everything seems ok and the results are return supposedly sorted by distance form a given center ...
0
votes
4answers
226 views
Source code to find the distance between two geo points
I'm working on an Android app and I want to add store locator details and map view.I searched a lot.,but I'm n't getting anything purposeful.I'm tensed and strongly need your help.
The problem is,I ...
0
votes
2answers
190 views
How to calculate the distance between two places using Haversine Formula in iPhone?
I want to calculate the distance between two places using Haversine formula. Actually i am having the latitude and longitude values of two places. Now i want to calculate the distance between that ...
0
votes
3answers
221 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
116 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
305 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
277 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
2answers
467 views
Haversine formula using SQL server to find closest venue - vb.net
I am grabbing a postcode from a form. I can then convert this postcode to lng,lat coordinates as I have these stored in a table.
SELECT lng, lat from postcodeLngLat WHERE postcode = 'CV1'
I have ...
0
votes
0answers
68 views
MYSQL iPhone Coordinate Problem
i have my mySQL server working fine with my iphone app. and i can do standard retrieves etc. but am having a problem implementing a solution i found on this website for obtaining the distance between ...
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 ...
0
votes
1answer
74 views
How to Return Additional Columns With Values Generated in Stored Procedures On the 'Fly'?
This is one of those questions where I'm having a hard time figuring out how to ask it so bare with me.
I have a stored procedure in SQL 2005 that calculates distance using the Haversine formula. ...