MySQL Forums
Forum List  »  GIS

Re: Zip Code Proximity search - Examples II
Posted by: Thomas Butler
Date: May 03, 2006 08:59AM

I really like this approach of using a bounding rectangle - very straightforward and simple - I'm working on implementing this in my solution.

A Question though - my geocode zip code database has lat/long coordinates as (see last 2 values in each row represent lat/long):

Aurora","CO","80010","39.7373","-104.8639",
"Austin","TX","73301","30.2669","-97.7429",

From your step #3 - it seems that I will need to convert these lat/long coordinates so that I can do a radius search using miles as the distance units? For example, the user will provide a zip code, select find 'within 10miles' or find 'within 25miles' - I will look up the lat/long for this zip - then I will create the rectangle based on your formula (X + (8 + R)) - However, I can not add 39.7373 (lat) + (8miles + 10miles) because the units for latitude do not represent miles and adding 18 to 39.7373 will not give the correct result - How do I do the conversion here? i.e., do I convert the lat/long values? do I convert miles to the lat/long units? what is the formula?

Thanks for your help


SELECT *
FROM addresses addr
JOIN zip_table zip ON addr.zip_code = zip.zip_code
WHERE addr.business_type = 'drug_store' -- or whatever
AND addr.expensive = 'F' -- or whatever
AND addr.sells_viagra = 'T' -- or whatever
AND zip.lat >= ... AND zip.lat <= ...
AND zip.long >= ... AND zip.long <= ... \

p

Options: ReplyQuote


Subject
Views
Written By
Posted
28368
October 19, 2004 06:04AM
10909
October 19, 2004 07:55AM
9311
October 19, 2004 11:14AM
10345
October 21, 2004 09:28AM
9231
October 19, 2004 06:59PM
7688
October 20, 2004 07:39AM
7694
October 21, 2004 09:10AM
8942
October 22, 2004 07:17AM
6876
October 23, 2004 02:48AM
6297
October 23, 2004 03:09AM
6408
October 23, 2004 03:12AM
6294
October 23, 2004 02:59PM
8065
October 24, 2004 12:34PM
5584
October 24, 2004 01:31PM
13215
October 21, 2005 10:21AM
5642
D C
January 28, 2006 05:24AM
5190
March 02, 2006 04:24PM
7285
October 09, 2007 09:28AM
5799
December 06, 2005 05:34AM
7091
December 06, 2005 06:36AM
5377
December 24, 2005 01:10PM
8934
December 26, 2005 03:49PM
5509
October 09, 2007 09:36AM
Re: Zip Code Proximity search - Examples II
8136
May 03, 2006 08:59AM
29496
December 13, 2007 04:10PM
6243
April 05, 2006 02:59PM
4780
May 02, 2006 03:22PM
5747
May 05, 2006 09:44AM
14682
June 25, 2006 09:32PM
5570
August 30, 2006 12:54PM
6093
July 14, 2007 01:09AM
7700
November 03, 2006 10:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.