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

I need to create two dropdowns for an app. One shows all countries the the world, the other is filled with all cities of a selected country in the first dropdown. Is there any web service or database that provides such information?

share|improve this question
1  
I found a 800+ MB data dump (.txt) for geonames.org that containing probably what I need. Anybody know any tool that can open such a HUGE .txt file? – Desmond Liang Apr 13 '11 at 18:34

4 Answers

up vote 1 down vote accepted

Desmond

You can get a list of all the countries and all cities per country from a free database from MaxMind.com that is only 33Mb.

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

Andrew Part of the "OpenGeoCode.Org" Team

share|improve this answer

Given that you found by yourself the answer to your question, I'll give the answer for what you ask in the comment:

Maybe Boxer Text Editor will do the trick:

Large file capacity

  • edit files up to 2 GB in size
  • no theoretical limit on the number of open files
  • line lengths to 32K characters
  • total editing capacity is limited only by the operating system's virtual memory capabilities
share|improve this answer

Geonames has several webservices which basically give you programmatic access to that 800m db.

share|improve this answer

Have a look at WorldCitiesDatabase.Info
You REALLY don't want to have your two dropdowns filled out with over 2 million entries.

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.