Re: postal code webservice

2006-07-27 Thread Jordan Michaels
Turetsky, Seth wrote: Does anyone know a reliable site to lookup zip codes, more specifically I want to look up the difference between two? I googled and saw some, but didn't know how reliable they were. Thanks, Seth Hi Seth, While I don't know of any web service, this article might be

RE: postal code webservice

2006-07-27 Thread Russ
By difference, do you mean the distance? I had a zip code database that I found online somewhere that had the lattitude and longitute of each zip code, and I was able to find a fuction to calculate the distance. -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED]

RE: postal code webservice

2006-07-27 Thread Turetsky, Seth
Subject: RE: postal code webservice By difference, do you mean the distance? I had a zip code database that I found online somewhere that had the lattitude and longitute of each zip code, and I was able to find a fuction to calculate the distance. -Original Message- From: Turetsky

RE: postal code webservice

2006-07-27 Thread Ken Ferguson
What do you mean, the difference between the two? Do you mean you'd like to find the distance between the two zip codes? If so, I'd recommend you check out geocoder. http://geocoder.us/help/city_state_zip.shtml you can get the lat/lon for a zip, like this:

RE: postal code webservice

2006-07-27 Thread Brad Wood
: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 10:35 AM To: CF-Talk Subject: Re: postal code webservice Turetsky, Seth wrote: Does anyone know a reliable site to lookup zip codes, more specifically I want to look up the difference between two? I googled and saw some

RE: postal code webservice

2006-07-27 Thread Turetsky, Seth
- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 11:59 AM To: CF-Talk Subject: RE: postal code webservice What do you mean, the difference between the two? Do you mean you'd like to find the distance between the two zip codes? If so, I'd recommend you check out

RE: postal code webservice

2006-07-27 Thread Ken Ferguson
-Talk Subject: RE: postal code webservice What do you mean, the difference between the two? Do you mean you'd like to find the distance between the two zip codes? If so, I'd recommend you check out geocoder. http://geocoder.us/help/city_state_zip.shtml you can get the lat/lon for a zip, like

RE: postal code webservice

2006-07-27 Thread Turetsky, Seth
Thanks, I had to urlencode the address though. Note: I'm running on BD -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 1:02 PM To: CF-Talk Subject: RE: postal code webservice By the way, if you'd like to nab my code for calling the geocoder

RE: postal code webservice

2006-07-27 Thread Ken Ferguson
: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 12:14 PM To: CF-Talk Subject: RE: postal code webservice Thanks, I had to urlencode the address though. Note: I'm running on BD -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006

RE: postal code webservice

2006-07-27 Thread Ken Ferguson
Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 1:31 PM To: CF-Talk Subject: RE: postal code webservice That's a good point though. It's just scratch code that hasn't been cleaned up. I'll need to make sure the information is urlEncoded in the end. Anyway, I hope it'll be useful