vote up 1 vote down star

I find that I always find it useful to have a list of all Countries and their country codes. If someone provided it in multiple formats (eg: SQL, DDL, Xml, CSV, JSON, YAML...).

I've found sites that attempt to sell a list of countries but that seems crazy to me. Is there an open source project that I'm overlooking? If there isn't does anyone else see any usefulness of starting a project that maintains a list of coutries and even something that attempts a region hierarchy?

There have been times where I have been wanting to retrieve the top 50 largest cities in a province located in Canada for example.

Ooh, maybe this could be a handy "cloud" computing service.

Thanks, I just want to make sure that I'm not over analyzing an issue that's had a trivial solution for ages.

[Edit]

Just realized that a community based regional allocation strategy might be a bit tricky. How would you deal with regions in conflict?

flag

8 Answers

vote up 1 vote down check

I have a list on my website in sql and tab delimited at http://www.john.geek.nz/index.php/2009/01/sql-tips-list-of-countries/

link|flag
There seems to be a php stackoverflow error when accessing this particular page on your blog. – JSmyth Oct 8 at 21:14
NB: these are 3 digit country codes (no error anymore) – Simon Oct 23 at 22:58
vote up 8 vote down

HTML, XML, TXT and Access

http://www.iso.ch/iso/country_codes/iso_3166_code_lists.htm

link|flag
Seems like the best source so far. What would be nifty is a Localized version of this list. I may want that list in English, French, Spanish, and German... – Scott Muc Jan 20 at 23:06
anybody got a downloadable version of this with lowercase country names (that take up less width in a dropdown)? – Simon Oct 23 at 22:59
Either lcase if on the fly, or run it through a text tool (even Excel will do it) to lcase it all at once. – Jason Oct 26 at 17:28
vote up 1 vote down

I assume what you want are the ISO 3166-1 2-alpha or 3-alpha codes, which are defined by ISO 3166-1. You can get various text and XML versions straight from ISO.org. This doesn't include any province, State, or city data, however.

EDIT: The UN/LOCODE site has a list of sublocations that sync up with ISO 3166-2 (ISO codes for provinces/States): http://www.unece.org/cefact/locode/service/sublocat.htm.

Also, UN/LOCODE has a location code list, which is a list of cities/towns by country: http://www.unece.org/cefact/locode/service/location.htm.

Finally, regarding the comment on regional differences/conflicts, ISO 3166-3 sort of approaches that, maintaining a list of prior names for locations.

link|flag
vote up 0 vote down

In Java, you can call java.util.Locale.getISOCountries(), which may help, depending on what you need.

A region hierarchy is more complex; I expect it cost Yahoo a lot to build that aspect of FireEagle.

There is a lot of information in the GNS country files at http://earth-info.nga.mil/gns/html/namefiles.htm - names, locations and other data for a very large number of places internationally.

link|flag
I wonder if community effort would help complete regional stuff. – Scott Muc Jan 20 at 23:06
vote up 0 vote down

Wikipedia has a list all country codes and their corresponding countries. I found it through a google search for "wikipedia country code".

link|flag
vote up 1 vote down

Also: http://www.ics.uci.edu/pub/websoft/wwwstat/country-codes.txt

link|flag
this one has the advantage over iso.ch/iso/country_codes/… of having lowercase letters for countryname ie. France instead of FRANCE – Simon Oct 23 at 22:48
aha BUT be warned - this appears to be a TLD list. UK for instance has two entries (UK and GB) instead of GB which is the ISO 3166 code. it also includes BIZ, COM, EDU, GOV etc. if you're needing a true country code list it looks like this isnt what you should be using – Simon Oct 23 at 22:53
vote up 3 vote down

I occasionally find the Apendix of the CIA - World Fact Book useful.

link|flag
vote up 1 vote down

I created a rerunnable sql script to handle this. See my blog post: ISO 3166-1 Country Data SQL Script. And you can get the sql script here.

link|flag

Your Answer

Get an OpenID
or

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