MySQL Forums
Forum List  »  GIS

Re: Zip Code Proximity search
Posted by: tri.truong
Date: May 05, 2006 09:44AM

Here's a code snippet that gives all zip codes within a certain distance of a provided zip code. It probably makes sense to put the formula into a function:

SELECT a.zip_zip AS zip
FROM zip a,
zip b
WHERE (2*3956*ASIN( (SQRT( POWER(SIN(((a.zip_lat_rad-b.zip_lat_rad))/2),2) +
COS(b.zip_lat_rad) * COS(a.zip_lat_rad) *
POWER(SIN(((abs(a.zip_long_rad)-abs(b.zip_long_rad)))/2),2) )) ) )
< 11 -- provide distance+1 here
AND b.zip_zip = '08831'

Hope this helps.

-T

Options: ReplyQuote


Subject
Views
Written By
Posted
28911
October 19, 2004 06:04AM
10994
October 19, 2004 07:55AM
9431
October 19, 2004 11:14AM
10446
October 21, 2004 09:28AM
9322
October 19, 2004 06:59PM
7790
October 20, 2004 07:39AM
7793
October 21, 2004 09:10AM
9064
October 22, 2004 07:17AM
6995
October 23, 2004 02:48AM
6396
October 23, 2004 03:09AM
6529
October 23, 2004 03:12AM
6403
October 23, 2004 02:59PM
8187
October 24, 2004 12:34PM
5678
October 24, 2004 01:31PM
13384
October 21, 2005 10:21AM
5731
D C
January 28, 2006 05:24AM
5288
March 02, 2006 04:24PM
7388
October 09, 2007 09:28AM
5896
December 06, 2005 05:34AM
7209
December 06, 2005 06:36AM
5471
December 24, 2005 01:10PM
9056
December 26, 2005 03:49PM
5619
October 09, 2007 09:36AM
29631
December 13, 2007 04:10PM
6339
April 05, 2006 02:59PM
4883
May 02, 2006 03:22PM
Re: Zip Code Proximity search
5881
May 05, 2006 09:44AM
14847
June 25, 2006 09:32PM
5677
August 30, 2006 12:54PM
6205
July 14, 2007 01:09AM
7791
November 03, 2006 10:25AM


Sorry, you can't reply to this topic. It has been closed.
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.

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.