Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way getting all countries, states,cities zipcodes/ in one single database.

I have been looking all over.

I discovered geonames.org, which has I guess all of the content. But there is no way to fetch that data directly.

I am using rails. If there any helpers or Plugins, it'd be great. It would be awesome if there is a complete resource in any parsable format which I can use to get this database in place.

Please recommend if you any thanks

I do have the iso country code list but no States for some countries.

Thanks in advance

share|improve this question
But what about places that don't have states or zip codes? – MitMaro Sep 22 '09 at 21:25
4  
Don't try to know the whole world! The user know best where he lives than you. Yesterday, Google Checkout refuses to accept my zip code, because it was incorrect (for them). I was forced to use an incorrect value to register! – Eduardo Molteni Sep 22 '09 at 21:28
Do you passed by a database or lookup service that provides the borders of a city, state or country in form of gps points (polylines)? – JJD Mar 26 '11 at 11:03

5 Answers

up vote 7 down vote accepted

Thanks Guys,

I got all the the countries and states of all of them, but no zip codes.

http://27.org/isocountrylist/iso_country_list.sql

This contains all countries, and there iso-3166 codes ( Siberia code needs to be changed from "CS" to "RS")

And here is the FIPS file for countries with states

http://www.maxmind.com/app/fips_include

For zip code validation I am using

http://www.geonames.org webservices

There is a geonames ruby gem as well, which makes it really simple to do zipcode validations

Hope that helps anybody who needs this information, worth keeping it handy for web projects.

Another Link ( thanks @laise ): http://dev.maxmind.com/static/csv/codes/maxmind/region.csv

share|improve this answer
maxmind.com/app/fips%5Finclude is not working.. – sudip Apr 1 at 14:48
1  
Can second link be raplaced with this one? – laise Apr 3 at 14:28
thanks, I added your link to the answer – Rishav Rastogi Apr 4 at 7:43

The Carmen plugin is almost certainly what you're looking for.

share|improve this answer
Yes, I checked it out as well. I found what i needed though. Worth checking it out ( details below ). Thanks – Rishav Rastogi Sep 23 '09 at 11:12

This will take a little legwork and data munging, but it's not too bad.

Countries and country codes are easy to come by. Sounds like you already have them.

Not all countries are divided into states. You may have to simply address these one by one-- there may be some combined reference, but not that I know of.

U.S. cities are available, and look for things like FIPS codes. There are commercial data providers that will provide you clean, well-organized data, but they are charging for it.

The post office has some databases with all the zip codes. Note that these charge periodically, and a single zip code doesn't imply a single single (far from it!). And it may not be necessary to actually have a database of all of them, as there are zip verification/correction services available for free.

For loading the data, check out a recent railscast on the subject.

share|improve this answer
Thanks,I found what i needed. Worth checking it out ( details below ) – Rishav Rastogi Sep 23 '09 at 11:11

A ready to go seed file to use in your rails app is here at github!

share|improve this answer

How about that source?

Includes 202 Countries and total Unique States of 3697.

  • ISO Alpha-2
  • ISO Alpha-3
  • ISO 3166 Country Name
  • Individual Country States

P.S. maxmind.com list contains bad state names. At least for Russian Federation (it's where I come from). But list at timdavis.com.au contains right states for Russia. Don't know about other countries.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.