Greg
Greg

Reputation: 47124

Simple Geographic Data Sources for a Web App

For a web app I'm working on, I need to know the lat/lon of about 300 US cities. I also need to know the lat/lon for every US zip code.

Does anyone know of a free source to get this information?

Upvotes: 2

Views: 314

Answers (3)

Kris Erickson
Kris Erickson

Reputation: 33834

There is an online database at Geocoder.us. And a simple perl module (we added a soap service to this so we could simply access it from any language, and the longest part of the development process was downloading database (it's about 4 GB).) The geocoing database is available from the US census bureau, a good article on getting this setup can be found here.

Upvotes: 1

Yuval F
Yuval F

Reputation: 20621

Take a look at Ben Fry's Zip Code Visualizer. This is part of his book Visualizing Data.

Upvotes: 1

Tom Ritter
Tom Ritter

Reputation: 101350

Freebase will likely be able to help you. Here is New York and it has Lat/Long.

The Wal-Mart Expansion video used Freebase to get it's data, and it sounds like you're doing something similar.

Upvotes: 2

Related Questions