datasets/country-codes

ISO3166-1-Alpha-2 for Namibia is missing

Closed this issue · 1 comments

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).

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