tags:

views:

1231

answers:

7
+3  Q: 

Geocode database

Hi, Can I download address,city,state,postalcode - latitude/longitude information, that can be loaded to a db for US alone.. Also do comment about their accuracy and coverage..

I suppose all GPS devices do this.. any pointers where I can extract this info??

I tried google maps json api.. and don't like the idea that they rate limit the number of requests per second..

Thanks, Ramya

Edit: What I am looking for is "address , city , state , postalcode, latitude/longitude" in csv or dump.. that I can query locally.. ofcourse.. free of cost (non commercial).

+1  A: 

You're looking for something like geocoder.us?

There's also the Virtual Earth API.

Here's a nice list of other geocoder services (thanks to Christopher Klein in the comments ;-)

Edit: I don't think an online service exists that will allow unlimited requests, as this is a security measure to avoid DOS attacks and the likes...

fretje
limit number of requests per second.. :(
Ramya
I've been using geocoder.us for a while now... as stated above you wont find free unlimited services out there for this.
SomeMiscGuy
I understand I would not get unlimited services.. I am looking for a csv/database dump that I can query any number of times..
Ramya
Check this link out: https://webgis.usc.edu/Services/Geocode/About/GeocoderList.aspx one of them might have a database/source that can be downloadable.
SomeMiscGuy
+2  A: 

I've used ZipCodeDownload in the past, and it's got lat/long info as well as postal codes, cities, etc... It is a commercial product however. (note I do not, nor have I ever, worked for this company)

EDIT: It seems unlikely that you will find a free service that provides unlimited requests per second. I don't know if you looked at this link, but the product starts at $30 USD, which, in my mind is quite affordable.

Nathan Koop
A: 

I use the Google Maps API...

http://code.google.com/apis/maps/documentation/geocoding/index.html

every service will throttle your requests. I've found I can make continuous requests by sleeping for 200 ms in between each request (with the occasional extra sleep cycle if it's still too fast).

dotjoe
A: 

You will probably need to find several geocoding services and write your own wrapper class that uses an algorithm to select which one to use, how to use it, and how often to use it. Be careful with this though, for example, I believe that Google requires you to show the geocoding results on a Google map (can't find the reference right this moment).

In addition to Google and the others mentioned in this thread, here are a few services you could look into:

http://developer.yahoo.com/maps/rest/V1/geocode.html

http://www.maxmind.com

Aaron
with google, you can have the geocode returned as json, xml or csv.
dotjoe
+1  A: 

Try Geoname. If I remember well you can download the full database or use its API. Free of charge. It's an open project. Hope this helps,

X.

Xavier Guardiola
+4  A: 

On the GeoNames you could download full database or the extracts for the country http://download.geonames.org/export/dump/

Igor Shubovych
Thank you. I believe I'll be using this.
David Stratton
A: 

Check out http://www.geocodesource.com Saved me a lot of time and money.

Richard