datasets / country-codes

Comprehensive country code information, including ISO 3166 codes, ITU dialing codes, ISO 4217 currency codes, and many others
https://datahub.io/core/country-codes
885 stars 575 forks source link

ISO3166-1-Alpha-2 for Namibia is missing #38

Closed kaiminglee closed 8 years ago

kaiminglee commented 8 years ago

Namibia's ISO 2char code is 'NA' but missing in the data.

Probably, pandas read_csv was used somewhere in the processing, which interprets 'NA' as missing by default (use keep_default_na=False to prevent this).

ewheeler commented 8 years ago

Good catch, @kaiminglee ! thanks

We were also missing Continent for every country in North America (NA)...

Culprit turned out to be csvkit's csvsort but calling with the --no-inference flag did the trick