6 Replies - 2650 Views - Last Post: 23 August 2008 - 08:48 PM

#1 snoj   User is offline

  • Married Life
  • member icon

Reputation: 93
  • View blog
  • Posts: 3,583
  • Joined: 31-March 03

1990 USA Zipcode database with longitude and latitude

Posted 12 December 2007 - 08:57 PM

Tonight I was looking up ways to get a list of zip codes within a radius of a given zip code. Because I dislike paying for things I can get for free, I finally found the 1990 US census database. You can find both the 1990 and 2000 data here. The 1990 set is easier to parse.

Now, on to the algorithm to obtain an area of zip codes!

Is This A Good Question/Topic? 0
  • +

Replies To: 1990 USA Zipcode database with longitude and latitude

#2 Jayman   User is offline

  • Student of Life
  • member icon

Reputation: 423
  • View blog
  • Posts: 9,532
  • Joined: 26-December 05

Re: 1990 USA Zipcode database with longitude and latitude

Posted 13 December 2007 - 12:37 AM

Oh my, I think you are going about this the hard way, my friend.

Why not just grab your information from an existing web service?

http://codebump.com/...codelookup.asmx

Quote

GetZipCodesWithin
Returns a list of zip codes within a specified distance from a given zip code. Parameters: zip - 5 digit US zip code or Canadian postal code (M3H, M3H 6A7), distance - distance in miles.

You have to register for this one, but it is a free subscription. The only restriction is:

Quote

50 miles maximum search radius,
distances rounded to nearest integer,
user-defined places are not supported

Was This Post Helpful? 0
  • +
  • -

#3 Jayman   User is offline

  • Student of Life
  • member icon

Reputation: 423
  • View blog
  • Posts: 9,532
  • Joined: 26-December 05

Re: 1990 USA Zipcode database with longitude and latitude

Posted 13 December 2007 - 12:50 AM

Here is another one that is free.

http://teachatechie....es/ZipCode.asmx

Quote

GetNearbyZipCodes
Returns a DataSet containing maximum of 250 zip codes and radius milage within a given radius of a zip code

Was This Post Helpful? 0
  • +
  • -

#4 snoj   User is offline

  • Married Life
  • member icon

Reputation: 93
  • View blog
  • Posts: 3,583
  • Joined: 31-March 03

Re: 1990 USA Zipcode database with longitude and latitude

Posted 13 December 2007 - 07:30 AM

Thanks for the linkage Jayman. However one of the reasons that I require my own solution is because this is for a subscription based website. Which many for free services frown upon. :(
Was This Post Helpful? 0
  • +
  • -

#5 Jayman   User is offline

  • Student of Life
  • member icon

Reputation: 423
  • View blog
  • Posts: 9,532
  • Joined: 26-December 05

Re: 1990 USA Zipcode database with longitude and latitude

Posted 13 December 2007 - 11:37 AM

Ahh, now I understand. And here I thought I was going to make life a little easier for this project. Oh well, maybe next time. :)
Was This Post Helpful? 0
  • +
  • -

#6 Programmist   User is offline

  • Refactorer in Chief
  • member icon

Reputation: 256
  • View blog
  • Posts: 1,843
  • Joined: 02-January 06

Re: 1990 USA Zipcode database with longitude and latitude

Posted 14 December 2007 - 09:44 AM

I would be secretly happy that I couldn't use the free web services because coding that algorithm sounds like fun. :)
Was This Post Helpful? 0
  • +
  • -

#7 dreamseek   User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 6
  • Joined: 23-August 08

Re: 1990 USA Zipcode database with longitude and latitude

Posted 23 August 2008 - 08:48 PM

Thanks! This post is quite useful for the ZIP code demographics site I'm working on. Appreciate the expertise in this forum.
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1