add support for Kosovo, even though it only has a temporary code from the EU for now

This commit is contained in:
Andrew Martin 2017-07-20 22:26:36 -04:00
parent 0d57836f6d
commit a8e86b694b
4 changed files with 6 additions and 0 deletions

View File

@ -248,3 +248,4 @@ Western Sahara,EH,ESH,732,ISO 3166-2:EH,Africa,Northern Africa,002,015
Yemen,YE,YEM,887,ISO 3166-2:YE,Asia,Western Asia,142,145
Zambia,ZM,ZMB,894,ISO 3166-2:ZM,Africa,Eastern Africa,002,014
Zimbabwe,ZW,ZWE,716,ISO 3166-2:ZW,Africa,Eastern Africa,002,014
Kosovo,XK,XKX,383,ISO 3166-2:XK,Europe,Southern Europe,150,039

1 name alpha-2 alpha-3 country-code iso_3166-2 region sub-region region-code sub-region-code
248 Yemen YE YEM 887 ISO 3166-2:YE Asia Western Asia 142 145
249 Zambia ZM ZMB 894 ISO 3166-2:ZM Africa Eastern Africa 002 014
250 Zimbabwe ZW ZWE 716 ISO 3166-2:ZW Africa Eastern Africa 002 014
251 Kosovo XK XKX 383 ISO 3166-2:XK Europe Southern Europe 150 039

View File

@ -751,3 +751,6 @@ zambia = Country 894
zimbabwe :: Country
zimbabwe = Country 716
kosovo :: Country
kosovo = Country 383

View File

@ -260,5 +260,6 @@ countryNameQuads =
, (887, T.pack "Yemen",('Y','E'),('Y','E','M'))
, (894, T.pack "Zambia",('Z','M'),('Z','M','B'))
, (716, T.pack "Zimbabwe",('Z','W'),('Z','W','E'))
, (383, T.pack "Kosovo",('X','K'),('X','K','X'))
]
{-# NOINLINE countryNameQuads #-}

View File

@ -255,4 +255,5 @@ enumeratedCountries =
, 887
, 894
, 716
, 383
]