Skip to main content

The country converter (coco) - a Python package for converting country names between different classifications schemes.

Project description

The country converter (coco) is a Python package to convert country names between different classifications and between different naming versions. Internally it uses regular expressions to match country names.

https://travis-ci.org/konstantinstadler/country_converter.svg?branch=master

Installation

Country_converter is registered at PyPI. From the command line:

pip install country_converter

Alternatively, the source code is available on github.

The package depends on pandas; for testing py.test is required.

Usage

Basic usage

Use within python

Convert various country names to some standard names:

import country_converter as coco
some_names = ['United Rep. of Tanzania', 'Cape Verde', 'Burma', 'Iran (Islamic Republic of)', 'Korea, Republic of', "Dem. People's Rep. of Korea"]
standard_names = coco.convert(names=some_names, to='name_short')
print(standard_names)

Which results in [‘Tanzania’, ‘Cabo Verde’, ‘Myanmar’, ‘Iran’, ‘South Korea’, ‘North Korea’].

In case of multiple conversion, better performance can be achieved by instantiating a single CountryConverter object for all conversions:

import country_converter as coco
cc = coco.CountryConverter()

some_names = ['United Rep. of Tanzania', 'Cape Verde', 'Burma', 'Iran (Islamic Republic of)', 'Korea, Republic of', "Dem. People's Rep. of Korea"]

standard_names = cc.convert(names = some_names, src = 'regex', to = 'name_short')
UNmembership = cc.convert(names = some_names, src = 'regex', to = 'UNmember')
print(standard_names)
print(UNmembership)

Convert between classification schemes:

iso3_codes = ['USA', 'VUT', 'TKL', 'AUT' ]
iso2_codes = coco.convert(names = iso3_codes, src = 'ISO3', to = 'ISO2')
print(iso2_codes)

Which results in [‘US’, ‘VU’, ‘TK’, ‘AT’]

Internally the data is stored in a pandas dataframe, which can be accessed directly. For example, this can be used to filter countries for membership organisations (per year). Note: for this, an instance of CountryConverter is required.

import country_converter as coco
cc = coco.CountryConverter()

some_countries = ['Australia', 'Belgium', 'Brazil', 'Bulgaria', 'Cyprus', 'Czech Republic', 'Denmark', 'Estonia', 'Finland', 'France', 'Germany', 'Greece', 'Hungary', 'India', 'Indonesia', 'Ireland', 'Italy', 'Japan', 'Latvia', 'Lithuania', 'Luxembourg', 'Malta', 'Romania', 'Russia',  'Turkey', 'United Kingdom', 'United States']

oecd_since_1995 = cc.data[(cc.data.OECD >= 1995) & cc.data.name_short.isin(some_countries)].name_short
eu_until_1980 = cc.data[(cc.data.EU <= 1980) & cc.data.name_short.isin(some_countries)].name_short
print(oecd_since_1995)
print(eu_until_1980)

Some properties provide direct access to affiliations:

cc.EU28
cc.OECD

cc.EU27in('ISO3')

and the classification schemes available:

cc.valid_class

The regular expressions can also be used to match any list of countries to any other. For example:

match_these = ['norway', 'united_states', 'china', 'taiwan']
master_list = ['USA', 'The Swedish Kingdom', 'Norway is a Kingdom too', 'Peoples Republic of China', 'Republic of China' ]

matching_dict = coco.match(match_these, master_list)

See the IPython Notebook (country_converter_examples.ipynb) for more information.

Command line usage

The country converter package also provides a command line interface called coco.

Minimal example:

coco Cyprus Denmark Estonia 'United Kingdom'

Converts the given names to ISO3 codes based on regular expression matching. The list of names must be separated by spaces, country names consisting of multiple words must be put in quotes (‘’).

The input classification can be specified with ‘–src’ or ‘-s’, the target classification with ‘–to’ or ‘-t’.

The default output is a space separated list, this can be changed by passing a separator by ‘–output_sep’ or ‘-o’.

Thus, to convert from ISO3 to UN number codes and receive the output as comma separated list use:

coco AUT DEU VAT AUS -s ISO3 -t UNcode -o ', '

For further information call the help by

coco -h

Use in matlab

Newer (tested in 2016a) versions from Matlab allow to directly call python functions and libaries. This requires a python version >= 3.4 installed in the sytem path (e.g. through Anaconda).

To test, try this in matlab:

py.print(py.sys.version)

If this works, you can also use coco after installing it through pip (at the windows commandline - see the installing instruction above):

pip install country_converter

And in matlab:

coco = py.country_converter.CountryConverter()
countries = {'The Swedish Kingdom', 'Norway is a Kingdom too', 'Peoples Republic of China', 'Republic of China'};
ISO2_pythontype = coco.convert(countries, pyargs('to', 'ISO2'));
ISO2_cellarray = cellfun(@char,cell(ISO2_pythontype),'UniformOutput',false);

Alternativley, as a long oneliner:

short_names = cellfun(@char, cell(py.country_converter.convert({56, 276}, pyargs('src', 'UNcode', 'to', 'name_short'))), 'UniformOutput',false);

All properties of coco as explained above are also available in matlab:

coco = py.country_converter.CountryConverter();
coco.EU27
EU27ISO3 = coco.EU27in('ISO3');

These functions return a pandas DataFrame. The underlying values can be access with .values (e.g.

EU27ISO3.values

I leave it to professional matlab users to figure out how to further process them.

Refining and Extending

The underlying raw data is a tab-separated file (country_data.txt) which is read into a pandas dataframe (available as attribute .data in the main class). Any column added to this dataframe can be used for all conversions. The datafile is utf-8 encoded.

The included regular expressions were tested against names commonly found in various databases. In case the expression need to be updated rerun all tests (using the py.test package).

These tests check

  1. Do the short names uniquely match the regular expression?

  2. Do the official name uniquely match the regular expression?

  3. Do the alternative names tested so far still uniquely match the standard names?

To specify a new test set just add a tab-separated file with headers “name_short” and “name_test” and provide name (corresponding to the short name in the main classification file) and the alternative name which should be tested (one pair per row in the file). If the file name starts with “test_regex_” it will be automatically recognised by the test functions.

Classification schemes

Currently the following classification schemes are available:

  1. ISO2 (ISO 3166-1 alpha-2)

  2. ISO3 (ISO 3166-1 alpha-3)

  3. ISO - numeric (ISO 3166-1 numeric)

  4. UN numeric code (which follows to a large extend ISO - numeric)

  5. A standard or short name

  6. The “official” name

  7. Continent

  8. UN region

  9. EXIOBASE 1 classification

  10. EXIOBASE 2 classification

  11. EXIOBASE 2 classification

  12. WIOD classification

  13. OECD membership (per year)

  14. UN membership (per year)

  15. EU membership (per year)

Data sources and further reading

Most of the underlying data can be found in Wikipedia. https://en.wikipedia.org/wiki/ISO_3166-1 is a good starting point. UN regions/codes are given on the United Nation Statistical Division (unstats) web-page. EXIOBASE and WIOD classification were extracted from the respective databases. The membership of OECD, UN and EU can be found at the membership organisations webpages.

Acknowledgements

This package was inspired by (and the regular expression are mostly based on) the R-package countrycode by Vincent Arel-Bundock and his (defunct) port to Python (pycountrycode).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

country_converter-0.3.3.tar.gz (28.7 kB view hashes)

Uploaded Source

Built Distribution

country_converter-0.3.3-py3-none-any.whl (33.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page