active questions tagged haversine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:16:32Zhttp://stackoverflow.com/feeds/tag/haversinehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916953/filter-zipcodes-by-proximity-in-django-with-the-haversine-formula1Filter zipcodes by proximity in Django with the Haversine formulaspiffytech2009-12-16T19:12:28Z2009-12-16T19:38:23Z
<p>I'm trying to handle proximity search for a basic store locater in Django. Rather than haul PostGIS around with my app just so I can use GeoDjango's distance filter, I'd like to use the Haversine distance formula in a model query. I'd like all of the calculations to be done in the database in one query, for efficiency. </p>
<p>An example MySQL query from The Internet implementing the Haversine forumla like this:</p>
<pre><code>SELECT id, (
3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) *
cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) *
sin( radians( lat ) ) )
)
AS distance FROM stores HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;
</code></pre>
<p>The query needs to reference the Zipcode ForeignKey for each store's lat/lng values. How can I make all of this work in a Django model query?</p>
http://stackoverflow.com/questions/1695408/is-it-possible-to-implement-the-haversine-formula-in-objective-c-and-call-it-from1Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?brianegge2009-11-08T04:54:37Z2009-11-08T10:55:09Z
<p>As I understand, SQLite doesn't have the math functions to properly implement the <a href="http://en.wikipedia.org/wiki/Haversine%5Fformula" rel="nofollow">Haversine</a> formula in straight SQL. I'm thinking this should be possible using an <a href="http://www.sqlite.org/c3ref/create%5Ffunction.html" rel="nofollow">external function</a>, with the implementation being in C.</p>
<p>The goal is to have a SQLite database in an iPhone, and to be able to sort by the distance to the user's current location. I've searched, but I can't find an example of any examples of this being done. I think the difficult parts would be getting the function declarations correct. The end result I'm hoping for, is to be able to execute a SQL statement like:</p>
<pre><code>SELECT * FROM LOCATION loc ORDER BY distance(loc.lat, loc.long, ?, ?)
</code></pre>
<p>I have a C Haversine formula. The function definition is as follows:</p>
<pre><code>float distance( float nLat1, float nLon1, float nLat2, float nLon2 );
</code></pre>
<p>Does anyone know if this is possible and/or have some example code to start from?</p>
http://stackoverflow.com/questions/1604298/distance-between-two-locations-using-latitude-and-longitude-way-off-what-google-s0Distance between two locations using Latitude and Longitude way off what Google says.Mikecancook2009-10-21T23:55:34Z2009-10-22T02:35:45Z
<p>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 querying Google. </p>
<p>For these two locations: <a href="http://www.google.com/maps?f=d&source=s%5Fd&saddr=10715+Downsville+Pike+Ste+100+MD+21740&daddr=444+East+College+Ave+Ste+120+State+College+PA,+16801&geocode=&hl=en&mra=ls&sll=40.799159,-77.856052&sspn=0.008836,0.01826&g=444+East+College+Ave+Ste+120+State+College+PA,+16801&ie=UTF8&t=h&z=8" rel="nofollow">From: 10715 Downsville Pike Ste 100 MD 21740 to: 444 East College Ave Ste 120 State College PA, 16801</a></p>
<p>Taking into account that distance will be 'as the crow flies', my results are still way off. In this example my result says 21.32 miles, but Google Maps says 144 miles. </p>
<p>I think the topping that makes it even more frustrating is I found this site: <a href="http://jan.ucc.nau.edu/~cvm/latlongdist.html" rel="nofollow">http://jan.ucc.nau.edu/~cvm/latlongdist.html</a> and came up with almost the exact same results as me. </p>
<p>Here's my functions and query:</p>
<p>Functions:
<strong>CalculateDistance</strong></p>
<pre><code>DECLARE @Temp FLOAT
SET @Temp = SIN(@Latitude1/57.2957795130823) *
SIN(@Latitude2/57.2957795130823) +
COS(@Latitude1/57.2957795130823) * COS(@Latitude2/57.2957795130823) *
COS(@Longitude2/57.2957795130823 - @Longitude1/57.2957795130823)
IF @Temp > 1
SET @Temp = 1
ELSE IF @Temp < -1
SET @Temp = -1
RETURN (3958.75586574 * ACOS(@Temp) )
</code></pre>
<p><strong>LatitudePlusDistance</strong></p>
<pre><code>RETURN (SELECT @StartLatitude + SQRT(@Distance * @Distance / 4766.8999155991))
</code></pre>
<p><strong>LongitudePlusDistance</strong></p>
<pre><code>RETURN (SELECT @StartLongitude + SQRT(@Distance * @Distance /
(4784.39411916406 *
COS(2 * @StartLatitude / 114.591559026165) *
COS(2 * @StartLatitude / 114.591559026165))))
</code></pre>
<p>Query:</p>
<pre><code>DECLARE @Longitude DECIMAL(18,8),
@Latitude DECIMAL(18,8),
@MinLongitude DECIMAL(18,8),
@MaxLongitude DECIMAL(18,8),
@MinLatitude DECIMAL(18,8),
@MaxLatitude DECIMAL(18,8),
@WithinMiles DECIMAL(2)
Set @Latitude = -77.856052
Set @Longitude = 40.799159
Set @WithinMiles = 50
-- Calculate the Max Lat/Long
SELECT @MaxLongitude = dbo.LongitudePlusDistance(@Longitude, @Latitude,
@WithinMiles),
@MaxLatitude = dbo.LatitudePlusDistance(@Latitude, @WithinMiles)
-- Calculate the min lat/long
SELECT @MinLatitude = 2 * @Latitude - @MaxLatitude,
@MinLongitude = 2 * @Longitude - @MaxLongitude
SELECT Top 20 *, dbo.CalculateDistance(@Longitude, @Latitude,
LocationLongitude, LocationLatitude) as 'Distance'
FROM Location
WHERE LocationLongitude Between @MinLongitude And @MaxLongitude
And LocationLatitude Between @MinLatitude And @MaxLatitude
And dbo.CalculateDistance(@Longitude, @Latitude, LocationLongitude,
LocationLatitude) <= @WithinMiles
ORDER BY dbo.CalculateDistance(@Longitude, @Latitude, LocationLongitude,
LocationLatitude)
</code></pre>
http://stackoverflow.com/questions/1504830/how-to-return-additional-columns-with-values-generated-in-stored-procedures-on-th0How to Return Additional Columns With Values Generated in Stored Procedures On the 'Fly'?Mikecancook2009-10-01T15:59:40Z2009-10-01T16:03:32Z
<p>This is one of those questions where I'm having a hard time figuring out how to ask it so bare with me. </p>
<p>I have a stored procedure in SQL 2005 that calculates distance using the Haversine formula. Everything works quite nicely but I'd like to return the calculated distance with my result set. How do I go about adding that column/value pair?</p>
<pre><code> DECLARE @Longitude DECIMAL(18,8),
@Latitude DECIMAL(18,8),
@MinLongitude DECIMAL(18,8),
@MaxLongitude DECIMAL(18,8),
@MinLatitude DECIMAL(18,8),
@MaxLatitude DECIMAL(18,8),
@WithinMiles INT
Set @Latitude = -122.25336930
Set @Longitude = 37.50002600
Set @WithinMiles = 20
-- Calculate the Max Lat/Long
SELECT @MaxLongitude = dbo.LongitudePlusDistance(@Longitude, @Latitude, @WithinMiles),
@MaxLatitude = dbo.LatitudePlusDistance(@Latitude, @WithinMiles)
-- Calculate the min lat/long
SELECT @MinLatitude = 2 * @Latitude - @MaxLatitude,
@MinLongitude = 2 * @Longitude - @MaxLongitude
SELECT Top 10 *
FROM Location
WHERE LocationLongitude Between @MinLongitude And @MaxLongitude
And LocationLatitude Between @MinLatitude And @MaxLatitude
And dbo.CalculateDistance(@Longitude, @Latitude, LocationLongitude, LocationLatitude) <= @WithinMiles
ORDER BY dbo.CalculateDistance(@Longitude, @Latitude, LocationLongitude, LocationLatitude)
--Return the result of dbo.CalculateDistance
</code></pre>
<p>Any pointers? Including the correct way to ask this question?</p>
<p>(Oh, and yes, this is not the stored procedure since I was playing with the query directly that's what I pasted in here.)</p>
http://stackoverflow.com/questions/1193963/best-method-for-working-out-locations-within-a-radius-of-starting-point2Best method for working out locations within a radius of starting pointjamiethompson902009-07-28T13:05:45Z2009-07-28T13:42:53Z
<p>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 Open Street Map. </p>
<p>Anyway, I want to be able to find out other users located near the current user.
I have seen a lot of people using the Haversine formula, however this would mean that the user queried every other user's details to work out the distance. I could cache this but its soon going to become outdated as new users sign up.</p>
<p>What sort of effect would running the following query have on my system? </p>
<p><code>sql = "SELECT zipcode, ( 3959 * acos( cos( radians( {$coords['latitude']} ) ) * cos( radians( latitude ) ) * cos( radians( longitude ) - radians( {$coords['longitude']} ) ) + sin( radians( {$coords['latitude']} ) ) * sin( radians( latitude ) ) ) ) AS distance FROM zipcodes HAVING distance <= {$radius} ORDER BY distance";</code></p>
<p>Thats pulled from somone's blog.</p>
<p>I dont have any figures for the signup rate or the amount of users as it's still in development.</p>
<p>I would apriciate any feedback or other methods that I could use to find matching users within a specific radius.</p>
<p>Thanks<br />
Jamie</p>
http://stackoverflow.com/questions/1061286/is-google-maps-calculating-the-wrong-distance7Is Google Maps calculating the wrong distance?gargantaun2009-06-30T00:56:14Z2009-07-07T20:36:54Z
<p>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 GLatLng.distanceFrom method in the Google Maps API. </p>
<p>The reason I'm using two functions is because I noticed something odd about the results I was getting form Google, for example, the distance between Lands End and John O Groats in the UK is returned as follows</p>
<ul>
<li>My Function: 985km </li>
<li>Google: 986km</li>
<li>Wikipedia: 970km</li>
</ul>
<p>The 15/16km difference from the Wikipedia result is because Google return a location result about 15 km away from the actual John O Groats. So that's about right. </p>
<p>So then I tested the distance between London and Milan and got</p>
<ul>
<li>My Function: 1232km </li>
<li>Google: 1234km</li>
<li>Wolfram Alpha: 958.5km</li>
</ul>
<p>So someone is more than 250km out. Then I tried London to New York</p>
<ul>
<li>My Function: 8244km </li>
<li>Google: 8254km</li>
<li>Wolfram Alpha: 5581km</li>
</ul>
<p>Generally, the distance between London and New York is thought to be around 5560km. But now both my function and the Google function appear to be way off the mark. </p>
<p>The function I'm using <a href="http://pastebin.com/f7f835db7" rel="nofollow">can be found here</a>. My Apologies to the author for not linking to the original site, but the layout is really confusing. I'm using the distHaversine function.</p>
<p>I must admit, the maths is way beyond my comfort level, but I get the gist, and as I understand it, Google uses the Haversine method too. I also understand that it can be off by about 0.3%, but that wouldn't account for the differences I'm seeing. And I'm further confused by the fact that it's sometimes right on, and sometimes way off the commonly stated distances between places. It appears the greater the distance, the more off it is. </p>
<p>So who's wrong. Google and the function I'm using, or everyone else?</p>