diff --git a/README.md b/README.md index 506ad9d..6d869ad 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ A python module for returning data about countries, ISO info and states/province * [.borders()](#borders) * [.calling_codes()](#calling_codes) * [.capital()](#capital) +* [.capital_latlng()](#capital_latlng) * [.currencies()](#currencies) * [.demonym()](#demonym) * [.geojson()`](#geo_json) @@ -83,6 +84,10 @@ country.info() 'borders': [], 'callingCodes': ['65'], 'capital': 'Singapore', + 'capital_latlng': [ + 1.357107, + 103.819499 + ], 'currencies': ['SGD'], 'demonym': 'Singaporean', 'flag': '', @@ -210,6 +215,21 @@ country.capital() 'Singapore' ``` +### .capital_latlng() + +Returns capital city latitude and longitude for a specified country + +```python +# coding=utf-8 +from countryinfo import CountryInfo + + +country = CountryInfo('Singapore') +country.capital_latlng() +# returns array, approx latitude and longitude for country capital +[1.357107, 103.819499] +``` + ### .currencies() Returns official currencies for a specified country @@ -502,6 +522,7 @@ country.all() 'borders': ['BWA', 'MOZ', 'ZAF', 'ZMB'], 'callingCodes': ['263'], 'capital': 'Harare', + 'capital_latlng': [-17.831773, 31.045686], 'currencies': ['USD'], 'demonym': 'Zimbabwean', 'flag': '', @@ -647,7 +668,7 @@ If like to contribute in a good way, then follow the following guidelines. ## Disclaimer This is being maintained in the contributor's free time, and as such, may contain minor errors in regards to some countries. -Most of the information included in this library is what is listed on Wikipedia. If there is an error, +Most of the information included in this library is what is listed on Wikipedia. If there is an error, please let me know and I will do my best to correct it. ## License diff --git a/README.rst b/README.rst index c60ae97..3d26956 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,7 @@ APIs - `.borders() <#borders>`__ - `.calling\_codes() <#calling_codes>`__ - `.capital() <#capital>`__ +- `.capital_latlng() <#capital_latlng>`__ - `.currencies() <#currencies>`__ - `.demonym() <#demonym>`__ - `.geojson()\` <#geo_json>`__ @@ -224,6 +225,22 @@ Returns capital city for a specified country # returns string 'Singapore' +.capital_latlng() +~~~~~~~~~~~~~~~~~ + +Returns capital city latitude and longitude for a specified country + +.. code:: python + + # coding=utf-8 + from countryinfo import CountryInfo + + + country = CountryInfo('Singapore') + country.capital_latlng() + # returns array, approx latitude and longitude for country capital + [1.357107, 103.819499] + .currencies() ~~~~~~~~~~~~~ @@ -536,6 +553,7 @@ countries. This will be super big. Not recommended. 'borders': ['BWA', 'MOZ', 'ZAF', 'ZMB'], 'callingCodes': ['263'], 'capital': 'Harare', + 'capital_latlng': [-17.831773, 31.045686], 'currencies': ['USD'], 'demonym': 'Zimbabwean', 'flag': '', diff --git a/countryinfo/countryinfo.py b/countryinfo/countryinfo.py index c137c22..5ae7f58 100644 --- a/countryinfo/countryinfo.py +++ b/countryinfo/countryinfo.py @@ -135,6 +135,17 @@ def capital(self): return _capital + def capital_latlng(self): + """Returns capital city latitude and longitude for a specified country + + :return: str + """ + if self.__country_name: + _capital_latlng = self.__countries[self.__country_name]['capital_latlng'] + # pprint(_capital) + + return _capital_latlng + def currencies(self): """Returns official currencies for a specified country diff --git a/countryinfo/data/afghanistan.json b/countryinfo/data/afghanistan.json index 531ab8c..d11db67 100644 --- a/countryinfo/data/afghanistan.json +++ b/countryinfo/data/afghanistan.json @@ -1 +1 @@ -{"name":"Afghanistan","altSpellings":["AF","Afġānistān"],"area":652230,"borders":["IRN","PAK","TKM","UZB","TJK","CHN"],"callingCodes":["93"],"capital":"Kabul","currencies":["AFN"],"demonym":"Afghan","flag":"http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Afghanistan.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AFG","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}}]},"ISO":{"alpha2":"AF","alpha3":"AFG"},"languages":["ps","uz","tk"],"latlng":[33,65],"nativeName":"افغانستان","population":26023100,"provinces":["Badakhshan","Badghis","Baghlan","Balkh","Bamian","Farah","Faryab","Ghazni","Ghowr","Helmand","Herat","Jowzjan","Kabol","Kandahar","Kapisa","Konar","Kondoz","Laghman","Lowgar","Nangarhar","Nimruz","Oruzgan","Paktia","Paktika","Parvan","Samangan","Sar-e Pol","Takhar","Vardak","Zabol"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+04:30"],"tld":[".af","افغانستان."],"translations":{"de":"Afghanistan","es":"Afganistán","fr":"Afghanistan","ja":"アフガニスタン","it":"Afghanistan"},"wiki":"http://en.wikipedia.org/wiki/afghanistan"} \ No newline at end of file +{"name":"Afghanistan","altSpellings":["AF","Afġānistān"],"area":652230,"borders":["IRN","PAK","TKM","UZB","TJK","CHN"],"callingCodes":["93"],"capital":"Kabul","capital_latlng":[34.526011,69.177684],"currencies":["AFN"],"demonym":"Afghan","flag":"http://upload.wikimedia.org/wikipedia/commons/9/9a/Flag_of_Afghanistan.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AFG","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}}]},"ISO":{"alpha2":"AF","alpha3":"AFG"},"languages":["ps","uz","tk"],"latlng":[33,65],"nativeName":"افغانستان","population":26023100,"provinces":["Badakhshan","Badghis","Baghlan","Balkh","Bamian","Farah","Faryab","Ghazni","Ghowr","Helmand","Herat","Jowzjan","Kabol","Kandahar","Kapisa","Konar","Kondoz","Laghman","Lowgar","Nangarhar","Nimruz","Oruzgan","Paktia","Paktika","Parvan","Samangan","Sar-e Pol","Takhar","Vardak","Zabol"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+04:30"],"tld":[".af","افغانستان."],"translations":{"de":"Afghanistan","es":"Afganistán","fr":"Afghanistan","ja":"アフガニスタン","it":"Afghanistan"},"wiki":"http://en.wikipedia.org/wiki/afghanistan"} \ No newline at end of file diff --git a/countryinfo/data/albania.json b/countryinfo/data/albania.json index f23a2b1..f03933b 100644 --- a/countryinfo/data/albania.json +++ b/countryinfo/data/albania.json @@ -1 +1 @@ -{"name":"Albania","altSpellings":["AL","Shqipëri","Shqipëria","Shqipnia"],"area":28748,"borders":["MNE","GRC","MKD","KOS"],"callingCodes":["355"],"capital":"Tirana","currencies":["ALL"],"demonym":"Albanian","flag":"http://upload.wikimedia.org/wikipedia/commons/3/36/Flag_of_Albania.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ALB","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}}]},"ISO":{"alpha2":"AL","alpha3":"ALB"},"languages":["sq"],"latlng":[41,20],"nativeName":"Shqipëria","population":2895947,"provinces":["Berat","Bulqize","Delvine","Devoll (Bilisht)","Diber (Peshkopi)","Durres","Elbasan","Fier","Gjirokaster","Gramsh","Has (Krume)","Kavaje","Kolonje (Erseke)","Korce","Kruje","Kucove","Kukes","Kurbin","Lezhe","Librazhd","Lushnje","Malesi e Madhe (Koplik)","Mallakaster (Ballsh)","Mat (Burrel)","Mirdite (Rreshen)","Peqin","Permet","Pogradec","Puke","Sarande","Shkoder","Skrapar (Corovode)","Tepelene","Tirane (Tirana)","Tirane (Tirana)","Tropoje (Bajram Curri)","Vlore"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".al"],"translations":{"de":"Albanien","es":"Albania","fr":"Albanie","ja":"アルバニア","it":"Albania"},"wiki":"http://en.wikipedia.org/wiki/albania"} \ No newline at end of file +{"name":"Albania","altSpellings":["AL","Shqipëri","Shqipëria","Shqipnia"],"area":28748,"borders":["MNE","GRC","MKD","KOS"],"callingCodes":["355"],"capital":"Tirana","capital_latlng":[41.326873,19.818791],"currencies":["ALL"],"demonym":"Albanian","flag":"http://upload.wikimedia.org/wikipedia/commons/3/36/Flag_of_Albania.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ALB","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}}]},"ISO":{"alpha2":"AL","alpha3":"ALB"},"languages":["sq"],"latlng":[41,20],"nativeName":"Shqipëria","population":2895947,"provinces":["Berat","Bulqize","Delvine","Devoll (Bilisht)","Diber (Peshkopi)","Durres","Elbasan","Fier","Gjirokaster","Gramsh","Has (Krume)","Kavaje","Kolonje (Erseke)","Korce","Kruje","Kucove","Kukes","Kurbin","Lezhe","Librazhd","Lushnje","Malesi e Madhe (Koplik)","Mallakaster (Ballsh)","Mat (Burrel)","Mirdite (Rreshen)","Peqin","Permet","Pogradec","Puke","Sarande","Shkoder","Skrapar (Corovode)","Tepelene","Tirane (Tirana)","Tirane (Tirana)","Tropoje (Bajram Curri)","Vlore"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".al"],"translations":{"de":"Albanien","es":"Albania","fr":"Albanie","ja":"アルバニア","it":"Albania"},"wiki":"http://en.wikipedia.org/wiki/albania"} \ No newline at end of file diff --git a/countryinfo/data/algeria.json b/countryinfo/data/algeria.json index 71988ef..d652270 100644 --- a/countryinfo/data/algeria.json +++ b/countryinfo/data/algeria.json @@ -1 +1 @@ -{"name":"Algeria","altSpellings":["DZ","Dzayer","Algérie"],"area":2381741,"borders":["TUN","LBY","NER","ESH","MRT","MLI","MAR"],"callingCodes":["213"],"capital":"Algiers","currencies":["DZD"],"demonym":"Algerian","flag":"http://upload.wikimedia.org/wikipedia/commons/7/77/Flag_of_Algeria.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DZA","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}}]},"ISO":{"alpha2":"DZ","alpha3":"DZA"},"languages":["ar"],"latlng":[28,3],"nativeName":"الجزائر","population":38700000,"provinces":["Adrar","Ain Defla","Ain Temouchent","Alger","Annaba","Batna","Bechar","Bejaia","Biskra","Blida","Bordj Bou Arreridj","Bouira","Boumerdes","Chlef","Constantine","Djelfa","El Bayadh","El Oued","El Tarf","Ghardaia","Guelma","Illizi","Jijel","Khenchela","Laghouat","M'Sila","Mascara","Medea","Mila","Mostaganem","Naama","Oran","Ouargla","Oum el Bouaghi","Relizane","Saida","Setif","Sidi Bel Abbes","Skikda","Souk Ahras","Tamanghasset","Tebessa","Tiaret","Tindouf","Tipaza","Tissemsilt","Tizi Ouzou","Tlemcen"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".dz","الجزائر."],"translations":{"de":"Algerien","es":"Argelia","fr":"Algérie","ja":"アルジェリア","it":"Algeria"},"wiki":"http://en.wikipedia.org/wiki/algeria"} \ No newline at end of file +{"name":"Algeria","altSpellings":["DZ","Dzayer","Algérie"],"area":2381741,"borders":["TUN","LBY","NER","ESH","MRT","MLI","MAR"],"callingCodes":["213"],"capital":"Algiers","capital_latlng":[36.775361,3.060188],"currencies":["DZD"],"demonym":"Algerian","flag":"http://upload.wikimedia.org/wikipedia/commons/7/77/Flag_of_Algeria.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DZA","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}}]},"ISO":{"alpha2":"DZ","alpha3":"DZA"},"languages":["ar"],"latlng":[28,3],"nativeName":"الجزائر","population":38700000,"provinces":["Adrar","Ain Defla","Ain Temouchent","Alger","Annaba","Batna","Bechar","Bejaia","Biskra","Blida","Bordj Bou Arreridj","Bouira","Boumerdes","Chlef","Constantine","Djelfa","El Bayadh","El Oued","El Tarf","Ghardaia","Guelma","Illizi","Jijel","Khenchela","Laghouat","M'Sila","Mascara","Medea","Mila","Mostaganem","Naama","Oran","Ouargla","Oum el Bouaghi","Relizane","Saida","Setif","Sidi Bel Abbes","Skikda","Souk Ahras","Tamanghasset","Tebessa","Tiaret","Tindouf","Tipaza","Tissemsilt","Tizi Ouzou","Tlemcen"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".dz","الجزائر."],"translations":{"de":"Algerien","es":"Argelia","fr":"Algérie","ja":"アルジェリア","it":"Algeria"},"wiki":"http://en.wikipedia.org/wiki/algeria"} \ No newline at end of file diff --git a/countryinfo/data/american_samoa.json b/countryinfo/data/american_samoa.json index 98cdb22..30210ed 100644 --- a/countryinfo/data/american_samoa.json +++ b/countryinfo/data/american_samoa.json @@ -1 +1 @@ -{"name":"American Samoa","altSpellings":["AS","Amerika Sāmoa","Amelika Sāmoa","Sāmoa Amelika"],"area":199,"borders":[],"callingCodes":["1684"],"capital":"Pago Pago","currencies":["USD"],"demonym":"American Samoan","flag":"","geoJSON":{},"ISO":{"alpha2":"AS","alpha3":"ASM"},"languages":["en","sm"],"latlng":[-14.33333333,-170],"nativeName":"American Samoa","population":55519,"provinces":["Eastern","Manu'a","Rose Island","Swains Island","Western"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".as"],"translations":{"de":"Amerikanisch-Samoa","es":"Samoa Americana","fr":"Samoa américaines","ja":"アメリカ領サモア","it":"Samoa Americane"},"wiki":"http://en.wikipedia.org/wiki/american_samoa"} \ No newline at end of file +{"name":"American Samoa","altSpellings":["AS","Amerika Sāmoa","Amelika Sāmoa","Sāmoa Amelika"],"area":199,"borders":[],"callingCodes":["1684"],"capital":"Pago Pago","capital_latlng":[-14.275479,-170.70483],"currencies":["USD"],"demonym":"American Samoan","flag":"","geoJSON":{},"ISO":{"alpha2":"AS","alpha3":"ASM"},"languages":["en","sm"],"latlng":[-14.33333333,-170],"nativeName":"American Samoa","population":55519,"provinces":["Eastern","Manu'a","Rose Island","Swains Island","Western"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".as"],"translations":{"de":"Amerikanisch-Samoa","es":"Samoa Americana","fr":"Samoa américaines","ja":"アメリカ領サモア","it":"Samoa Americane"},"wiki":"http://en.wikipedia.org/wiki/american_samoa"} \ No newline at end of file diff --git a/countryinfo/data/angola.json b/countryinfo/data/angola.json index db50d9f..599ef40 100644 --- a/countryinfo/data/angola.json +++ b/countryinfo/data/angola.json @@ -1 +1 @@ -{"name":"Angola","altSpellings":["AO","República de Angola","ʁɛpublika de an'ɡɔla"],"area":1246700,"borders":["COG","COD","ZMB","NAM"],"callingCodes":["244"],"capital":"Luanda","currencies":["AOA"],"demonym":"Angolan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AGO","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}}]},"ISO":{"alpha2":"AO","alpha3":"AGO"},"languages":["pt"],"latlng":[-12.5,18.5],"nativeName":"Angola","population":24383301,"provinces":["Andorra la Vella","Bengo","Benguela","Bie","Cabinda","Canillo","Cuando Cubango","Cuanza Norte","Cuanza Sul","Cunene","Encamp","Escaldes-Engordany","Huambo","Huila","La Massana","Luanda","Lunda Norte","Lunda Sul","Malanje","Moxico","Namibe","Ordino","Sant Julia de Loria","Uige","Zaire"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".ao"],"translations":{"de":"Angola","es":"Angola","fr":"Angola","ja":"アンゴラ","it":"Angola"},"wiki":"http://en.wikipedia.org/wiki/angola"} \ No newline at end of file +{"name":"Angola","altSpellings":["AO","República de Angola","ʁɛpublika de an'ɡɔla"],"area":1246700,"borders":["COG","COD","ZMB","NAM"],"callingCodes":["244"],"capital":"Luanda","capital_latlng":[-8.82727,13.243951],"currencies":["AOA"],"demonym":"Angolan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AGO","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}}]},"ISO":{"alpha2":"AO","alpha3":"AGO"},"languages":["pt"],"latlng":[-12.5,18.5],"nativeName":"Angola","population":24383301,"provinces":["Andorra la Vella","Bengo","Benguela","Bie","Cabinda","Canillo","Cuando Cubango","Cuanza Norte","Cuanza Sul","Cunene","Encamp","Escaldes-Engordany","Huambo","Huila","La Massana","Luanda","Lunda Norte","Lunda Sul","Malanje","Moxico","Namibe","Ordino","Sant Julia de Loria","Uige","Zaire"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".ao"],"translations":{"de":"Angola","es":"Angola","fr":"Angola","ja":"アンゴラ","it":"Angola"},"wiki":"http://en.wikipedia.org/wiki/angola"} \ No newline at end of file diff --git a/countryinfo/data/anguilla.json b/countryinfo/data/anguilla.json index 537149a..5cb8f7f 100644 --- a/countryinfo/data/anguilla.json +++ b/countryinfo/data/anguilla.json @@ -1 +1 @@ -{"name":"Anguilla","altSpellings":["AI"],"area":91,"borders":[],"callingCodes":["1264"],"capital":"The Valley","currencies":["XCD"],"demonym":"Anguillian","flag":"http://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Anguilla.svg","geoJSON":{},"ISO":{"alpha2":"AI","alpha3":"AIA"},"languages":["en"],"latlng":[18.25,-63.16666666],"nativeName":"Anguilla","population":13452,"provinces":["Anguilla"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ai"],"translations":{"de":"Anguilla","es":"Anguilla","fr":"Anguilla","ja":"アンギラ","it":"Anguilla"},"wiki":"http://en.wikipedia.org/wiki/anguilla"} \ No newline at end of file +{"name":"Anguilla","altSpellings":["AI"],"area":91,"borders":[],"callingCodes":["1264"],"capital":"The Valley","capital_latlng":[41.559572,-98.980548],"currencies":["XCD"],"demonym":"Anguillian","flag":"http://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Anguilla.svg","geoJSON":{},"ISO":{"alpha2":"AI","alpha3":"AIA"},"languages":["en"],"latlng":[18.25,-63.16666666],"nativeName":"Anguilla","population":13452,"provinces":["Anguilla"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ai"],"translations":{"de":"Anguilla","es":"Anguilla","fr":"Anguilla","ja":"アンギラ","it":"Anguilla"},"wiki":"http://en.wikipedia.org/wiki/anguilla"} \ No newline at end of file diff --git a/countryinfo/data/antigua_and_barbuda.json b/countryinfo/data/antigua_and_barbuda.json index 91f8f9a..7716aa2 100644 --- a/countryinfo/data/antigua_and_barbuda.json +++ b/countryinfo/data/antigua_and_barbuda.json @@ -1 +1 @@ -{"name":"Antigua and Barbuda","altSpellings":["AG"],"area":442,"borders":[],"callingCodes":["1268"],"capital":"Saint John's","currencies":["XCD"],"demonym":"Antiguan, Barbudan","flag":"http://upload.wikimedia.org/wikipedia/commons/8/89/Flag_of_Antigua_and_Barbuda.svg","geoJSON":{},"ISO":{"alpha2":"AG","alpha3":"ATG"},"languages":["en"],"latlng":[17.05,-61.8],"nativeName":"Antigua and Barbuda","population":86295,"provinces":["Barbuda","Redonda","Saint George","Saint John","Saint Mary","Saint Paul","Saint Peter","Saint Philip"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".ag"],"translations":{"de":"Antigua und Barbuda","es":"Antigua y Barbuda","fr":"Antigua-et-Barbuda","ja":"アンティグア・バーブーダ","it":"Antigua e Barbuda"},"wiki":"http://en.wikipedia.org/wiki/antigua_and_barbuda"} \ No newline at end of file +{"name":"Antigua and Barbuda","altSpellings":["AG"],"area":442,"borders":[],"callingCodes":["1268"],"capital":"Saint John's","capital_latlng":[47.561701,-52.715149],"currencies":["XCD"],"demonym":"Antiguan,Barbudan","flag":"http://upload.wikimedia.org/wikipedia/commons/8/89/Flag_of_Antigua_and_Barbuda.svg","geoJSON":{},"ISO":{"alpha2":"AG","alpha3":"ATG"},"languages":["en"],"latlng":[17.05,-61.8],"nativeName":"Antigua and Barbuda","population":86295,"provinces":["Barbuda","Redonda","Saint George","Saint John","Saint Mary","Saint Paul","Saint Peter","Saint Philip"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".ag"],"translations":{"de":"Antigua und Barbuda","es":"Antigua y Barbuda","fr":"Antigua-et-Barbuda","ja":"アンティグア・バーブーダ","it":"Antigua e Barbuda"},"wiki":"http://en.wikipedia.org/wiki/antigua_and_barbuda"} \ No newline at end of file diff --git a/countryinfo/data/argentina.json b/countryinfo/data/argentina.json index acddb82..2cc893f 100644 --- a/countryinfo/data/argentina.json +++ b/countryinfo/data/argentina.json @@ -1 +1 @@ -{"name":"Argentina","altSpellings":["AR","Argentine Republic","República Argentina"],"area":2780400,"borders":["BOL","BRA","CHL","PRY","URY"],"callingCodes":["54"],"capital":"Buenos Aires","currencies":["ARS"],"demonym":"Argentinean","flag":"http://upload.wikimedia.org/wikipedia/commons/1/1a/Flag_of_Argentina.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}}]},"ISO":{"alpha2":"AR","alpha3":"ARG"},"languages":["es","gn"],"latlng":[-34,-64],"nativeName":"Argentina","population":42669500,"provinces":["Antartica e Islas del Atlantico Sur","Buenos Aires","Buenos Aires Capital Federal","Catamarca","Chaco","Chubut","Cordoba","Corrientes","Entre Rios","Formosa","Jujuy","La Pampa","La Rioja","Mendoza","Misiones","Neuquen","Rio Negro","Salta","San Juan","San Luis","Santa Cruz","Santa Fe","Santiago del Estero","Tierra del Fuego","Tucuman"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".ar"],"translations":{"de":"Argentinien","es":"Argentina","fr":"Argentine","ja":"アルゼンチン","it":"Argentina"},"wiki":"http://en.wikipedia.org/wiki/argentina"} \ No newline at end of file +{"name":"Argentina","altSpellings":["AR","Argentine Republic","República Argentina"],"area":2780400,"borders":["BOL","BRA","CHL","PRY","URY"],"callingCodes":["54"],"capital":"Buenos Aires","capital_latlng":[-34.607568,-58.437089],"currencies":["ARS"],"demonym":"Argentinean","flag":"http://upload.wikimedia.org/wikipedia/commons/1/1a/Flag_of_Argentina.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}}]},"ISO":{"alpha2":"AR","alpha3":"ARG"},"languages":["es","gn"],"latlng":[-34,-64],"nativeName":"Argentina","population":42669500,"provinces":["Antartica e Islas del Atlantico Sur","Buenos Aires","Buenos Aires Capital Federal","Catamarca","Chaco","Chubut","Cordoba","Corrientes","Entre Rios","Formosa","Jujuy","La Pampa","La Rioja","Mendoza","Misiones","Neuquen","Rio Negro","Salta","San Juan","San Luis","Santa Cruz","Santa Fe","Santiago del Estero","Tierra del Fuego","Tucuman"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".ar"],"translations":{"de":"Argentinien","es":"Argentina","fr":"Argentine","ja":"アルゼンチン","it":"Argentina"},"wiki":"http://en.wikipedia.org/wiki/argentina"} \ No newline at end of file diff --git a/countryinfo/data/armenia.json b/countryinfo/data/armenia.json index b70ef53..b0c7966 100644 --- a/countryinfo/data/armenia.json +++ b/countryinfo/data/armenia.json @@ -1 +1 @@ -{"name":"Armenia","altSpellings":["AM","Hayastan","Republic of Armenia","Հայաստանի Հանրապետություն"],"area":29743,"borders":["AZE","GEO","IRN","TUR"],"callingCodes":["374"],"capital":"Yerevan","currencies":["AMD"],"demonym":"Armenian","flag":"http://upload.wikimedia.org/wikipedia/commons/2/2f/Flag_of_Armenia.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARM","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}}]},"ISO":{"alpha2":"AM","alpha3":"ARM"},"languages":["hy","ru"],"latlng":[40,45],"nativeName":"Հայաստան","population":3009800,"provinces":["Aragatsotn","Ararat","Armavir","Geghark'unik'","Kotayk'","Lorri","Shirak","Syunik'","Tavush","Vayots' Dzor","Yerevan"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".am"],"translations":{"de":"Armenien","es":"Armenia","fr":"Arménie","ja":"アルメニア","it":"Armenia"},"wiki":"http://en.wikipedia.org/wiki/armenia"} \ No newline at end of file +{"name":"Armenia","altSpellings":["AM","Hayastan","Republic of Armenia","Հայաստանի Հանրապետություն"],"area":29743,"borders":["AZE","GEO","IRN","TUR"],"callingCodes":["374"],"capital":"Yerevan","capital_latlng":[40.177612,44.512585],"currencies":["AMD"],"demonym":"Armenian","flag":"http://upload.wikimedia.org/wikipedia/commons/2/2f/Flag_of_Armenia.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARM","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}}]},"ISO":{"alpha2":"AM","alpha3":"ARM"},"languages":["hy","ru"],"latlng":[40,45],"nativeName":"Հայաստան","population":3009800,"provinces":["Aragatsotn","Ararat","Armavir","Geghark'unik'","Kotayk'","Lorri","Shirak","Syunik'","Tavush","Vayots' Dzor","Yerevan"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".am"],"translations":{"de":"Armenien","es":"Armenia","fr":"Arménie","ja":"アルメニア","it":"Armenia"},"wiki":"http://en.wikipedia.org/wiki/armenia"} \ No newline at end of file diff --git a/countryinfo/data/aruba.json b/countryinfo/data/aruba.json index 542b6b6..5f11f12 100644 --- a/countryinfo/data/aruba.json +++ b/countryinfo/data/aruba.json @@ -1 +1 @@ -{"name":"Aruba","altSpellings":["AW"],"area":180,"borders":[],"callingCodes":["297"],"capital":"Oranjestad","currencies":["AWG"],"demonym":"Aruban","flag":"http://upload.wikimedia.org/wikipedia/commons/f/f6/Flag_of_Aruba.svg","geoJSON":{},"ISO":{"alpha2":"AW","alpha3":"ABW"},"languages":["nl","pa"],"latlng":[12.5,-69.96666666],"nativeName":"Aruba","population":101484,"provinces":["Aruba"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".aw"],"translations":{"de":"Aruba","es":"Aruba","fr":"Aruba","ja":"アルバ","it":"Aruba"},"wiki":"http://en.wikipedia.org/wiki/aruba"} \ No newline at end of file +{"name":"Aruba","altSpellings":["AW"],"area":180,"borders":[],"callingCodes":["297"],"capital":"Oranjestad","capital_latlng":[12.526874,-70.035684],"currencies":["AWG"],"demonym":"Aruban","flag":"http://upload.wikimedia.org/wikipedia/commons/f/f6/Flag_of_Aruba.svg","geoJSON":{},"ISO":{"alpha2":"AW","alpha3":"ABW"},"languages":["nl","pa"],"latlng":[12.5,-69.96666666],"nativeName":"Aruba","population":101484,"provinces":["Aruba"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".aw"],"translations":{"de":"Aruba","es":"Aruba","fr":"Aruba","ja":"アルバ","it":"Aruba"},"wiki":"http://en.wikipedia.org/wiki/aruba"} \ No newline at end of file diff --git a/countryinfo/data/australia.json b/countryinfo/data/australia.json index db2d9c8..55dc1fa 100644 --- a/countryinfo/data/australia.json +++ b/countryinfo/data/australia.json @@ -1 +1 @@ -{"name":"Australia","altSpellings":["AU"],"area":7692024,"borders":[],"callingCodes":["61"],"capital":"Canberra","currencies":["AUD"],"demonym":"Australian","flag":"http://upload.wikimedia.org/wikipedia/commons/8/88/Flag_of_Australia_%28converted%29.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AUS","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}}]},"ISO":{"alpha2":"AU","alpha3":"AUS"},"languages":["en"],"latlng":[-27,133],"nativeName":"Australia","population":23696900,"provinces":["Australian Capital Territory","New South Wales","Northern Territory","Queensland","South Australia","Tasmania","Victoria","Western Australia"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":["UTC+05:00","UTC+06:30","UTC+07:00","UTC+08:00","UTC+09:30","UTC+10:00","UTC+10:30","UTC+11:30"],"tld":[".au"],"translations":{"de":"Australien","es":"Australia","fr":"Australie","ja":"オーストラリア","it":"Australia"},"wiki":"http://en.wikipedia.org/wiki/australia"} \ No newline at end of file +{"name":"Australia","altSpellings":["AU"],"area":7692024,"borders":[],"callingCodes":["61"],"capital":"Canberra","capital_latlng":[-35.297591,149.101268],"currencies":["AUD"],"demonym":"Australian","flag":"http://upload.wikimedia.org/wikipedia/commons/8/88/Flag_of_Australia_%28converted%29.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AUS","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}}]},"ISO":{"alpha2":"AU","alpha3":"AUS"},"languages":["en"],"latlng":[-27,133],"nativeName":"Australia","population":23696900,"provinces":["Australian Capital Territory","New South Wales","Northern Territory","Queensland","South Australia","Tasmania","Victoria","Western Australia"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":["UTC+05:00","UTC+06:30","UTC+07:00","UTC+08:00","UTC+09:30","UTC+10:00","UTC+10:30","UTC+11:30"],"tld":[".au"],"translations":{"de":"Australien","es":"Australia","fr":"Australie","ja":"オーストラリア","it":"Australia"},"wiki":"http://en.wikipedia.org/wiki/australia"} \ No newline at end of file diff --git a/countryinfo/data/austria.json b/countryinfo/data/austria.json index 75119f2..1f04716 100644 --- a/countryinfo/data/austria.json +++ b/countryinfo/data/austria.json @@ -1 +1 @@ -{"name":"Austria","altSpellings":["AT","Österreich","Osterreich","Oesterreich"],"area":83871,"borders":["CZE","DEU","HUN","ITA","LIE","SVK","SVN","CHE"],"callingCodes":["43"],"capital":"Vienna","currencies":["EUR"],"demonym":"Austrian","flag":"http://upload.wikimedia.org/wikipedia/commons/4/41/Flag_of_Austria.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AUT","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}}]},"ISO":{"alpha2":"AT","alpha3":"AUT"},"languages":["de"],"latlng":[47.33333333,13.33333333],"nativeName":"Österreich","population":8527230,"provinces":["Burgenland","Kaernten","Niederoesterreich","Oberoesterreich","Salzburg","Steiermark","Tirol","Vorarlberg","Wien"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".at"],"translations":{"de":"Österreich","es":"Austria","fr":"Autriche","ja":"オーストリア","it":"Austria"},"wiki":"http://en.wikipedia.org/wiki/austria"} \ No newline at end of file +{"name":"Austria","altSpellings":["AT","Österreich","Osterreich","Oesterreich"],"area":83871,"borders":["CZE","DEU","HUN","ITA","LIE","SVK","SVN","CHE"],"callingCodes":["43"],"capital":"Vienna","capital_latlng":[48.208354,16.372504],"currencies":["EUR"],"demonym":"Austrian","flag":"http://upload.wikimedia.org/wikipedia/commons/4/41/Flag_of_Austria.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AUT","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}}]},"ISO":{"alpha2":"AT","alpha3":"AUT"},"languages":["de"],"latlng":[47.33333333,13.33333333],"nativeName":"Österreich","population":8527230,"provinces":["Burgenland","Kaernten","Niederoesterreich","Oberoesterreich","Salzburg","Steiermark","Tirol","Vorarlberg","Wien"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".at"],"translations":{"de":"Österreich","es":"Austria","fr":"Autriche","ja":"オーストリア","it":"Austria"},"wiki":"http://en.wikipedia.org/wiki/austria"} \ No newline at end of file diff --git a/countryinfo/data/azerbaijan.json b/countryinfo/data/azerbaijan.json index bbff5ad..8138cd6 100644 --- a/countryinfo/data/azerbaijan.json +++ b/countryinfo/data/azerbaijan.json @@ -1 +1 @@ -{"name":"Azerbaijan","altSpellings":["AZ","Republic of Azerbaijan","Azərbaycan Respublikası"],"area":86600,"borders":["ARM","GEO","IRN","RUS","TUR"],"callingCodes":["994"],"capital":"Baku","currencies":["AZN"],"demonym":"Azerbaijani","flag":"http://upload.wikimedia.org/wikipedia/commons/d/dd/Flag_of_Azerbaijan.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AZE","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}}]},"ISO":{"alpha2":"AZ","alpha3":"AZE"},"languages":["az","hy"],"latlng":[40.5,47.5],"nativeName":"Azərbaycan","population":9552500,"provinces":["Abseron Rayonu","Agcabadi Rayonu","Agdam Rayonu","Agdas Rayonu","Agstafa Rayonu","Agsu Rayonu","Ali Bayramli Sahari","Astara Rayonu","Baki Sahari","Balakan Rayonu","Barda Rayonu","Beylaqan Rayonu","Bilasuvar Rayonu","Cabrayil Rayonu","Calilabad Rayonu","Daskasan Rayonu","Davaci Rayonu","Fuzuli Rayonu","Gadabay Rayonu","Ganca Sahari","Goranboy Rayonu","Goycay Rayonu","Haciqabul Rayonu","Imisli Rayonu","Ismayilli Rayonu","Kalbacar Rayonu","Kurdamir Rayonu","Lacin Rayonu","Lankaran Rayonu","Lankaran Sahari","Lerik Rayonu","Masalli Rayonu","Mingacevir Sahari","Naftalan Sahari","Naxcivan Muxtar Respublikasi","Neftcala Rayonu","Oguz Rayonu","Qabala Rayonu","Qax Rayonu","Qazax Rayonu","Qobustan Rayonu","Quba Rayonu","Qubadli Rayonu","Qusar Rayonu","Saatli Rayonu","Sabirabad Rayonu","Saki Rayonu","Saki Sahari","Salyan Rayonu","Samaxi Rayonu","Samkir Rayonu","Samux Rayonu","Siyazan Rayonu","Sumqayit Sahari","Susa Rayonu","Susa Sahari","Tartar Rayonu","Tovuz Rayonu","Ucar Rayonu","Xacmaz Rayonu","Xankandi Sahari","Xanlar Rayonu","Xizi Rayonu","Xocali Rayonu","Xocavand Rayonu","Yardimli Rayonu","Yevlax Rayonu","Yevlax Sahari","Zangilan Rayonu","Zaqatala Rayonu","Zardab Rayonu"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".az"],"translations":{"de":"Aserbaidschan","es":"Azerbaiyán","fr":"Azerbaïdjan","ja":"アゼルバイジャン","it":"Azerbaijan"},"wiki":"http://en.wikipedia.org/wiki/azerbaijan"} \ No newline at end of file +{"name":"Azerbaijan","altSpellings":["AZ","Republic of Azerbaijan","Azərbaycan Respublikası"],"area":86600,"borders":["ARM","GEO","IRN","RUS","TUR"],"callingCodes":["994"],"capital":"Baku","capital_latlng":[40.375443,49.832675],"currencies":["AZN"],"demonym":"Azerbaijani","flag":"http://upload.wikimedia.org/wikipedia/commons/d/dd/Flag_of_Azerbaijan.svg","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"AZE","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}}]},"ISO":{"alpha2":"AZ","alpha3":"AZE"},"languages":["az","hy"],"latlng":[40.5,47.5],"nativeName":"Azərbaycan","population":9552500,"provinces":["Abseron Rayonu","Agcabadi Rayonu","Agdam Rayonu","Agdas Rayonu","Agstafa Rayonu","Agsu Rayonu","Ali Bayramli Sahari","Astara Rayonu","Baki Sahari","Balakan Rayonu","Barda Rayonu","Beylaqan Rayonu","Bilasuvar Rayonu","Cabrayil Rayonu","Calilabad Rayonu","Daskasan Rayonu","Davaci Rayonu","Fuzuli Rayonu","Gadabay Rayonu","Ganca Sahari","Goranboy Rayonu","Goycay Rayonu","Haciqabul Rayonu","Imisli Rayonu","Ismayilli Rayonu","Kalbacar Rayonu","Kurdamir Rayonu","Lacin Rayonu","Lankaran Rayonu","Lankaran Sahari","Lerik Rayonu","Masalli Rayonu","Mingacevir Sahari","Naftalan Sahari","Naxcivan Muxtar Respublikasi","Neftcala Rayonu","Oguz Rayonu","Qabala Rayonu","Qax Rayonu","Qazax Rayonu","Qobustan Rayonu","Quba Rayonu","Qubadli Rayonu","Qusar Rayonu","Saatli Rayonu","Sabirabad Rayonu","Saki Rayonu","Saki Sahari","Salyan Rayonu","Samaxi Rayonu","Samkir Rayonu","Samux Rayonu","Siyazan Rayonu","Sumqayit Sahari","Susa Rayonu","Susa Sahari","Tartar Rayonu","Tovuz Rayonu","Ucar Rayonu","Xacmaz Rayonu","Xankandi Sahari","Xanlar Rayonu","Xizi Rayonu","Xocali Rayonu","Xocavand Rayonu","Yardimli Rayonu","Yevlax Rayonu","Yevlax Sahari","Zangilan Rayonu","Zaqatala Rayonu","Zardab Rayonu"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".az"],"translations":{"de":"Aserbaidschan","es":"Azerbaiyán","fr":"Azerbaïdjan","ja":"アゼルバイジャン","it":"Azerbaijan"},"wiki":"http://en.wikipedia.org/wiki/azerbaijan"} \ No newline at end of file diff --git a/countryinfo/data/bahamas.json b/countryinfo/data/bahamas.json index f4e604b..82cdf53 100644 --- a/countryinfo/data/bahamas.json +++ b/countryinfo/data/bahamas.json @@ -1 +1 @@ -{"name":"The Bahamas","altSpellings":["BS","Commonwealth of the Bahamas"],"area":13943,"borders":[],"callingCodes":["1242"],"capital":"Nassau","currencies":["BSD"],"demonym":"Bahamian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BHS","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}}]},"ISO":{"alpha2":"BS","alpha3":"BHS"},"languages":["en"],"latlng":[24.25,-76],"nativeName":"Bahamas","population":319031,"provinces":["Acklins and Crooked Islands","Bimini","Cat Island","Exuma","Freeport","Fresh Creek","Governor's Harbour","Green Turtle Cay","Harbour Island","High Rock","Inagua","Kemps Bay","Long Island","Marsh Harbour","Mayaguana","New Providence","Nicholls Town and Berry Islands","Ragged Island","Rock Sound","San Salvador and Rum Cay","Sandy Point"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".bs"],"translations":{"de":"Bahamas","es":"Bahamas","fr":"Bahamas","ja":"バハマ","it":"Bahamas"},"wiki":"http://en.wikipedia.org/wiki/bahamas"} \ No newline at end of file +{"name":"The Bahamas","altSpellings":["BS","Commonwealth of the Bahamas"],"area":13943,"borders":[],"callingCodes":["1242"],"capital":"Nassau","capital_latlng":[25.078346,-77.338333],"currencies":["BSD"],"demonym":"Bahamian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BHS","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}}]},"ISO":{"alpha2":"BS","alpha3":"BHS"},"languages":["en"],"latlng":[24.25,-76],"nativeName":"Bahamas","population":319031,"provinces":["Acklins and Crooked Islands","Bimini","Cat Island","Exuma","Freeport","Fresh Creek","Governor's Harbour","Green Turtle Cay","Harbour Island","High Rock","Inagua","Kemps Bay","Long Island","Marsh Harbour","Mayaguana","New Providence","Nicholls Town and Berry Islands","Ragged Island","Rock Sound","San Salvador and Rum Cay","Sandy Point"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".bs"],"translations":{"de":"Bahamas","es":"Bahamas","fr":"Bahamas","ja":"バハマ","it":"Bahamas"},"wiki":"http://en.wikipedia.org/wiki/bahamas"} \ No newline at end of file diff --git a/countryinfo/data/bahrain.json b/countryinfo/data/bahrain.json index 12660dc..dd5c279 100644 --- a/countryinfo/data/bahrain.json +++ b/countryinfo/data/bahrain.json @@ -1 +1 @@ -{"name":"Bahrain","altSpellings":["BH","Kingdom of Bahrain","Mamlakat al-Baḥrayn"],"area":765,"borders":[],"callingCodes":["973"],"capital":"Manama","currencies":["BHD"],"demonym":"Bahraini","flag":"","geoJSON":{},"ISO":{"alpha2":"BH","alpha3":"BHR"},"languages":["ar"],"latlng":[26,50.55],"nativeName":"‏البحرين","population":1316500,"provinces":["Al Hadd","Al Manamah","Al Mintaqah al Gharbiyah","Al Mintaqah al Wusta","Al Mintaqah ash Shamaliyah","Al Muharraq","Ar Rifa' wa al Mintaqah al Janubiyah","Jidd Hafs","Juzur Hawar","Madinat 'Isa","Madinat Hamad","Sitrah"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".bh"],"translations":{"de":"Bahrain","es":"Bahrein","fr":"Bahreïn","ja":"バーレーン","it":"Bahrein"},"wiki":"http://en.wikipedia.org/wiki/bahrain"} \ No newline at end of file +{"name":"Bahrain","altSpellings":["BH","Kingdom of Bahrain","Mamlakat al-Baḥrayn"],"area":765,"borders":[],"callingCodes":["973"],"capital":"Manama","capital_latlng":[26.223504,50.582244],"currencies":["BHD"],"demonym":"Bahraini","flag":"","geoJSON":{},"ISO":{"alpha2":"BH","alpha3":"BHR"},"languages":["ar"],"latlng":[26,50.55],"nativeName":"‏البحرين","population":1316500,"provinces":["Al Hadd","Al Manamah","Al Mintaqah al Gharbiyah","Al Mintaqah al Wusta","Al Mintaqah ash Shamaliyah","Al Muharraq","Ar Rifa' wa al Mintaqah al Janubiyah","Jidd Hafs","Juzur Hawar","Madinat 'Isa","Madinat Hamad","Sitrah"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".bh"],"translations":{"de":"Bahrain","es":"Bahrein","fr":"Bahreïn","ja":"バーレーン","it":"Bahrein"},"wiki":"http://en.wikipedia.org/wiki/bahrain"} \ No newline at end of file diff --git a/countryinfo/data/bangladesh.json b/countryinfo/data/bangladesh.json index 2352c18..d675fb2 100644 --- a/countryinfo/data/bangladesh.json +++ b/countryinfo/data/bangladesh.json @@ -1 +1 @@ -{"name":"Bangladesh","altSpellings":["BD","People's Republic of Bangladesh","Gônôprôjatôntri Bangladesh"],"area":147570,"borders":["MMR","IND"],"callingCodes":["880"],"capital":"Dhaka","currencies":["BDT"],"demonym":"Bangladeshi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BGD","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}}]},"ISO":{"alpha2":"BD","alpha3":"BGD"},"languages":["bn"],"latlng":[24,90],"nativeName":"বাংলাদেশ","population":157486000,"provinces":["Barisal", "Chittagong", "Dhaka", "Mymensingh", "Khulna", "Rajshahi", "Rangpur", "Sylhet"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+06:00"],"tld":[".bd"],"translations":{"de":"Bangladesch","es":"Bangladesh","fr":"Bangladesh","ja":"バングラデシュ","it":"Bangladesh"},"wiki":"http://en.wikipedia.org/wiki/bangladesh"} \ No newline at end of file +{"name":"Bangladesh","altSpellings":["BD","People's Republic of Bangladesh","Gônôprôjatôntri Bangladesh"],"area":147570,"borders":["MMR","IND"],"callingCodes":["880"],"capital":"Dhaka","capital_latlng":[23.759357,90.378814],"currencies":["BDT"],"demonym":"Bangladeshi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BGD","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}}]},"ISO":{"alpha2":"BD","alpha3":"BGD"},"languages":["bn"],"latlng":[24,90],"nativeName":"বাংলাদেশ","population":157486000,"provinces":["Barisal","Chittagong","Dhaka","Mymensingh","Khulna","Rajshahi","Rangpur","Sylhet"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+06:00"],"tld":[".bd"],"translations":{"de":"Bangladesch","es":"Bangladesh","fr":"Bangladesh","ja":"バングラデシュ","it":"Bangladesh"},"wiki":"http://en.wikipedia.org/wiki/bangladesh"} \ No newline at end of file diff --git a/countryinfo/data/barbados.json b/countryinfo/data/barbados.json index a481153..0e90335 100644 --- a/countryinfo/data/barbados.json +++ b/countryinfo/data/barbados.json @@ -1 +1 @@ -{"name":"Barbados","altSpellings":["BB"],"area":430,"borders":[],"callingCodes":["1246"],"capital":"Bridgetown","currencies":["BBD"],"demonym":"Barbadian","flag":"","geoJSON":{},"ISO":{"alpha2":"BB","alpha3":"BRB"},"languages":["en"],"latlng":[13.16666666,-59.53333333],"nativeName":"Barbados","population":285000,"provinces":["Bridgetown","Christ Church","Saint Andrew","Saint George","Saint James","Saint John","Saint Joseph","Saint Lucy","Saint Michael","Saint Peter","Saint Philip","Saint Thomas"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".bb"],"translations":{"de":"Barbados","es":"Barbados","fr":"Barbade","ja":"バルバドス","it":"Barbados"},"wiki":"http://en.wikipedia.org/wiki/barbados"} \ No newline at end of file +{"name":"Barbados","altSpellings":["BB"],"area":430,"borders":[],"callingCodes":["1246"],"capital":"Bridgetown","capital_latlng":[13.097783,-59.618418],"currencies":["BBD"],"demonym":"Barbadian","flag":"","geoJSON":{},"ISO":{"alpha2":"BB","alpha3":"BRB"},"languages":["en"],"latlng":[13.16666666,-59.53333333],"nativeName":"Barbados","population":285000,"provinces":["Bridgetown","Christ Church","Saint Andrew","Saint George","Saint James","Saint John","Saint Joseph","Saint Lucy","Saint Michael","Saint Peter","Saint Philip","Saint Thomas"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".bb"],"translations":{"de":"Barbados","es":"Barbados","fr":"Barbade","ja":"バルバドス","it":"Barbados"},"wiki":"http://en.wikipedia.org/wiki/barbados"} \ No newline at end of file diff --git a/countryinfo/data/belarus.json b/countryinfo/data/belarus.json index d01a7d0..7612133 100644 --- a/countryinfo/data/belarus.json +++ b/countryinfo/data/belarus.json @@ -1 +1 @@ -{"name":"Belarus","altSpellings":["BY","Bielaruś","Republic of Belarus","Белоруссия","Республика Беларусь","Belorussiya","Respublika Belarus’"],"area":207600,"borders":["LVA","LTU","POL","RUS","UKR"],"callingCodes":["375"],"capital":"Minsk","currencies":["BYR"],"demonym":"Belarusian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BLR","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}}]},"ISO":{"alpha2":"BY","alpha3":"BLR"},"languages":["be","ru"],"latlng":[53,28],"nativeName":"Белару́сь","population":9475100,"provinces":["Brestskaya (Brest)","Homyel'skaya (Homyel')","Horad Minsk","Hrodzyenskaya (Hrodna)","Mahilyowskaya (Mahilyow)","Minskaya","Vitsyebskaya (Vitsyebsk)"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+03:00"],"tld":[".by"],"translations":{"de":"Weißrussland","es":"Bielorrusia","fr":"Biélorussie","ja":"ベラルーシ","it":"Bielorussia"},"wiki":"http://en.wikipedia.org/wiki/belarus"} \ No newline at end of file +{"name":"Belarus","altSpellings":["BY","Bielaruś","Republic of Belarus","Белоруссия","Республика Беларусь","Belorussiya","Respublika Belarus’"],"area":207600,"borders":["LVA","LTU","POL","RUS","UKR"],"callingCodes":["375"],"capital":"Minsk","capital_latlng":[53.902334,27.561879],"currencies":["BYR"],"demonym":"Belarusian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BLR","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}}]},"ISO":{"alpha2":"BY","alpha3":"BLR"},"languages":["be","ru"],"latlng":[53,28],"nativeName":"Белару́сь","population":9475100,"provinces":["Brestskaya (Brest)","Homyel'skaya (Homyel')","Horad Minsk","Hrodzyenskaya (Hrodna)","Mahilyowskaya (Mahilyow)","Minskaya","Vitsyebskaya (Vitsyebsk)"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+03:00"],"tld":[".by"],"translations":{"de":"Weißrussland","es":"Bielorrusia","fr":"Biélorussie","ja":"ベラルーシ","it":"Bielorussia"},"wiki":"http://en.wikipedia.org/wiki/belarus"} \ No newline at end of file diff --git a/countryinfo/data/belgium.json b/countryinfo/data/belgium.json index d4374fb..56ccbb1 100644 --- a/countryinfo/data/belgium.json +++ b/countryinfo/data/belgium.json @@ -1 +1 @@ -{"name":"Belgium","altSpellings":["BE","België","Belgie","Belgien","Belgique","Kingdom of Belgium","Koninkrijk België","Royaume de Belgique","Königreich Belgien"],"area":30528,"borders":["FRA","DEU","LUX","NLD"],"callingCodes":["32"],"capital":"Brussels","currencies":["EUR"],"demonym":"Belgian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BEL","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}}]},"ISO":{"alpha2":"BE","alpha3":"BEL"},"languages":["nl","fr","de"],"latlng":[50.83333333,4],"nativeName":"België","population":11225469,"provinces":["Antwerpen","Brabant Wallon","Brussels Capitol Region","Hainaut","Liege","Limburg","Luxembourg","Namur","Oost-Vlaanderen","Vlaams Brabant","West-Vlaanderen"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".be"],"translations":{"de":"Belgien","es":"Bélgica","fr":"Belgique","ja":"ベルギー","it":"Belgio"},"wiki":"http://en.wikipedia.org/wiki/belgium"} \ No newline at end of file +{"name":"Belgium","altSpellings":["BE","België","Belgie","Belgien","Belgique","Kingdom of Belgium","Koninkrijk België","Royaume de Belgique","Königreich Belgien"],"area":30528,"borders":["FRA","DEU","LUX","NLD"],"callingCodes":["32"],"capital":"Brussels","capital_latlng":[50.846557,4.351697],"currencies":["EUR"],"demonym":"Belgian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BEL","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}}]},"ISO":{"alpha2":"BE","alpha3":"BEL"},"languages":["nl","fr","de"],"latlng":[50.83333333,4],"nativeName":"België","population":11225469,"provinces":["Antwerpen","Brabant Wallon","Brussels Capitol Region","Hainaut","Liege","Limburg","Luxembourg","Namur","Oost-Vlaanderen","Vlaams Brabant","West-Vlaanderen"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".be"],"translations":{"de":"Belgien","es":"Bélgica","fr":"Belgique","ja":"ベルギー","it":"Belgio"},"wiki":"http://en.wikipedia.org/wiki/belgium"} \ No newline at end of file diff --git a/countryinfo/data/belize.json b/countryinfo/data/belize.json index e18f75f..76a0c8a 100644 --- a/countryinfo/data/belize.json +++ b/countryinfo/data/belize.json @@ -1 +1 @@ -{"name":"Belize","altSpellings":["BZ"],"area":22966,"borders":["GTM","MEX"],"callingCodes":["501"],"capital":"Belmopan","currencies":["BZD"],"demonym":"Belizean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BLZ","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}}]},"ISO":{"alpha2":"BZ","alpha3":"BLZ"},"languages":["en","es"],"latlng":[17.25,-88.75],"nativeName":"Belize","population":349728,"provinces":["Belize","Cayo","Corozal","Orange Walk","Stann Creek","Toledo"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".bz"],"translations":{"de":"Belize","es":"Belice","fr":"Belize","ja":"ベリーズ","it":"Belize"},"wiki":"http://en.wikipedia.org/wiki/belize"} \ No newline at end of file +{"name":"Belize","altSpellings":["BZ"],"area":22966,"borders":["GTM","MEX"],"callingCodes":["501"],"capital":"Belmopan","capital_latlng":[17.250199,-88.770018],"currencies":["BZD"],"demonym":"Belizean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BLZ","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}}]},"ISO":{"alpha2":"BZ","alpha3":"BLZ"},"languages":["en","es"],"latlng":[17.25,-88.75],"nativeName":"Belize","population":349728,"provinces":["Belize","Cayo","Corozal","Orange Walk","Stann Creek","Toledo"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".bz"],"translations":{"de":"Belize","es":"Belice","fr":"Belize","ja":"ベリーズ","it":"Belize"},"wiki":"http://en.wikipedia.org/wiki/belize"} \ No newline at end of file diff --git a/countryinfo/data/benin.json b/countryinfo/data/benin.json index 0980d3a..f79ca96 100644 --- a/countryinfo/data/benin.json +++ b/countryinfo/data/benin.json @@ -1 +1 @@ -{"name":"Benin","altSpellings":["BJ","Republic of Benin","République du Bénin"],"area":112622,"borders":["BFA","NER","NGA","TGO"],"callingCodes":["229"],"capital":"Porto-Novo","currencies":["XOF"],"demonym":"Beninese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BEN","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}}]},"ISO":{"alpha2":"BJ","alpha3":"BEN"},"languages":["fr"],"latlng":[9.5,2.25],"nativeName":"Bénin","population":9988068,"provinces":["Alibori","Atakora","Atlantique","Borgou","Collines","Couffo","Donga","Littoral","Mono","Oueme","Plateau","Zou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".bj"],"translations":{"de":"Benin","es":"Benín","fr":"Bénin","ja":"ベナン","it":"Benin"},"wiki":"http://en.wikipedia.org/wiki/benin"} \ No newline at end of file +{"name":"Benin","altSpellings":["BJ","Republic of Benin","République du Bénin"],"area":112622,"borders":["BFA","NER","NGA","TGO"],"callingCodes":["229"],"capital":"Porto-Novo","capital_latlng":[6.499072,2.625336],"currencies":["XOF"],"demonym":"Beninese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BEN","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}}]},"ISO":{"alpha2":"BJ","alpha3":"BEN"},"languages":["fr"],"latlng":[9.5,2.25],"nativeName":"Bénin","population":9988068,"provinces":["Alibori","Atakora","Atlantique","Borgou","Collines","Couffo","Donga","Littoral","Mono","Oueme","Plateau","Zou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".bj"],"translations":{"de":"Benin","es":"Benín","fr":"Bénin","ja":"ベナン","it":"Benin"},"wiki":"http://en.wikipedia.org/wiki/benin"} \ No newline at end of file diff --git a/countryinfo/data/bermuda.json b/countryinfo/data/bermuda.json index 412424e..9fef539 100644 --- a/countryinfo/data/bermuda.json +++ b/countryinfo/data/bermuda.json @@ -1 +1 @@ -{"name":"Bermuda","altSpellings":["BM","The Islands of Bermuda","The Bermudas","Somers Isles"],"area":54,"borders":[],"callingCodes":["1441"],"capital":"Hamilton","currencies":["BMD"],"demonym":"Bermudian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BMU","properties":{"name":"Bermuda"},"geometry":{"type":"Polygon","coordinates":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}}]},"ISO":{"alpha2":"BM","alpha3":"BMU"},"languages":["en"],"latlng":[32.33333333,-64.75],"nativeName":"Bermuda","population":64237,"provinces":["Devonshire","Hamilton","Hamilton","Paget","Pembroke","Saint George","Saint Georges","Sandys","Smiths","Southampton","Warwick"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".bm"],"translations":{"de":"Bermuda","es":"Bermudas","fr":"Bermudes","ja":"バミューダ","it":"Bermuda"},"wiki":"http://en.wikipedia.org/wiki/bermuda"} \ No newline at end of file +{"name":"Bermuda","altSpellings":["BM","The Islands of Bermuda","The Bermudas","Somers Isles"],"area":54,"borders":[],"callingCodes":["1441"],"capital":"Hamilton","capital_latlng":[43.25608,-79.872858],"currencies":["BMD"],"demonym":"Bermudian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BMU","properties":{"name":"Bermuda"},"geometry":{"type":"Polygon","coordinates":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}}]},"ISO":{"alpha2":"BM","alpha3":"BMU"},"languages":["en"],"latlng":[32.33333333,-64.75],"nativeName":"Bermuda","population":64237,"provinces":["Devonshire","Hamilton","Hamilton","Paget","Pembroke","Saint George","Saint Georges","Sandys","Smiths","Southampton","Warwick"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".bm"],"translations":{"de":"Bermuda","es":"Bermudas","fr":"Bermudes","ja":"バミューダ","it":"Bermuda"},"wiki":"http://en.wikipedia.org/wiki/bermuda"} \ No newline at end of file diff --git a/countryinfo/data/bhutan.json b/countryinfo/data/bhutan.json index 4598cbe..c4b8e08 100644 --- a/countryinfo/data/bhutan.json +++ b/countryinfo/data/bhutan.json @@ -1 +1 @@ -{"name":"Bhutan","altSpellings":["BT","Kingdom of Bhutan"],"area":38394,"borders":["CHN","IND"],"callingCodes":["975"],"capital":"Thimphu","currencies":["BTN","INR"],"demonym":"Bhutanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BTN","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}}]},"ISO":{"alpha2":"BT","alpha3":"BTN"},"languages":["dz"],"latlng":[27.5,90.5],"nativeName":"ʼbrug-yul","population":755030,"provinces":["Bumthang","Chhukha","Chirang","Daga","Geylegphug","Ha","Lhuntshi","Mongar","Paro","Pemagatsel","Punakha","Samchi","Samdrup Jongkhar","Shemgang","Tashigang","Thimphu","Tongsa","Wangdi Phodrang"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+06:00"],"tld":[".bt"],"translations":{"de":"Bhutan","es":"Bután","fr":"Bhoutan","ja":"ブータン","it":"Bhutan"},"wiki":"http://en.wikipedia.org/wiki/bhutan"} \ No newline at end of file +{"name":"Bhutan","altSpellings":["BT","Kingdom of Bhutan"],"area":38394,"borders":["CHN","IND"],"callingCodes":["975"],"capital":"Thimphu","capital_latlng":[27.472762,89.629548],"currencies":["BTN","INR"],"demonym":"Bhutanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BTN","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}}]},"ISO":{"alpha2":"BT","alpha3":"BTN"},"languages":["dz"],"latlng":[27.5,90.5],"nativeName":"ʼbrug-yul","population":755030,"provinces":["Bumthang","Chhukha","Chirang","Daga","Geylegphug","Ha","Lhuntshi","Mongar","Paro","Pemagatsel","Punakha","Samchi","Samdrup Jongkhar","Shemgang","Tashigang","Thimphu","Tongsa","Wangdi Phodrang"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+06:00"],"tld":[".bt"],"translations":{"de":"Bhutan","es":"Bután","fr":"Bhoutan","ja":"ブータン","it":"Bhutan"},"wiki":"http://en.wikipedia.org/wiki/bhutan"} \ No newline at end of file diff --git a/countryinfo/data/bolivia.json b/countryinfo/data/bolivia.json index 7be78fa..764a3b7 100644 --- a/countryinfo/data/bolivia.json +++ b/countryinfo/data/bolivia.json @@ -1 +1 @@ -{"name":"Bolivia","altSpellings":["BO","Buliwya","Wuliwya","Plurinational State of Bolivia","Estado Plurinacional de Bolivia","Buliwya Mamallaqta","Wuliwya Suyu","Tetã Volívia"],"area":1098581,"borders":["ARG","BRA","CHL","PRY","PER"],"callingCodes":["591"],"capital":"Sucre","currencies":["BOB","BOV"],"demonym":"Bolivian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BOL","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}}]},"ISO":{"alpha2":"BO","alpha3":"BOL"},"languages":["es","ay","qu"],"latlng":[-17,-65],"nativeName":"Bolivia","population":10027254,"provinces":["Beni","Chuquisaca","Cochabamba","La Paz","Oruro","Pando","Potosi","Santa Cruz","Tarija"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".bo"],"translations":{"de":"Bolivien","es":"Bolivia","fr":"Bolivie","ja":"ボリビア多民族国","it":"Bolivia"},"wiki":"http://en.wikipedia.org/wiki/bolivia"} \ No newline at end of file +{"name":"Bolivia","altSpellings":["BO","Buliwya","Wuliwya","Plurinational State of Bolivia","Estado Plurinacional de Bolivia","Buliwya Mamallaqta","Wuliwya Suyu","Tetã Volívia"],"area":1098581,"borders":["ARG","BRA","CHL","PRY","PER"],"callingCodes":["591"],"capital":"Sucre","capital_latlng":[-19.047725,-65.259431],"currencies":["BOB","BOV"],"demonym":"Bolivian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BOL","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}}]},"ISO":{"alpha2":"BO","alpha3":"BOL"},"languages":["es","ay","qu"],"latlng":[-17,-65],"nativeName":"Bolivia","population":10027254,"provinces":["Beni","Chuquisaca","Cochabamba","La Paz","Oruro","Pando","Potosi","Santa Cruz","Tarija"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".bo"],"translations":{"de":"Bolivien","es":"Bolivia","fr":"Bolivie","ja":"ボリビア多民族国","it":"Bolivia"},"wiki":"http://en.wikipedia.org/wiki/bolivia"} \ No newline at end of file diff --git a/countryinfo/data/bosnia_and_herzegovina.json b/countryinfo/data/bosnia_and_herzegovina.json index 3c8d2da..64c47bd 100644 --- a/countryinfo/data/bosnia_and_herzegovina.json +++ b/countryinfo/data/bosnia_and_herzegovina.json @@ -1 +1 @@ -{"name":"Bosnia and Herzegovina","altSpellings":["BA","Bosnia-Herzegovina","Босна и Херцеговина"],"area":51209,"borders":["HRV","MNE","SRB"],"callingCodes":["387"],"capital":"Sarajevo","currencies":["BAM"],"demonym":"Bosnian, Herzegovinian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BIH","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}}]},"ISO":{"alpha2":"BA","alpha3":"BIH"},"languages":["bs","hr","sr"],"latlng":[44,18],"nativeName":"Bosna i Hercegovina","population":3791622,"provinces":["Federation of Bosnia and Herzegovina","Republika Srpska"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".ba"],"translations":{"de":"Bosnien und Herzegowina","es":"Bosnia y Herzegovina","fr":"Bosnie-Herzégovine","ja":"ボスニア・ヘルツェゴビナ","it":"Bosnia ed Erzegovina"},"wiki":"http://en.wikipedia.org/wiki/bosnia_and_herzegovina"} \ No newline at end of file +{"name":"Bosnia and Herzegovina","altSpellings":["BA","Bosnia-Herzegovina","Босна и Херцеговина"],"area":51209,"borders":["HRV","MNE","SRB"],"callingCodes":["387"],"capital":"Sarajevo","capital_latlng":[43.851977,18.386687],"currencies":["BAM"],"demonym":"Bosnian,Herzegovinian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BIH","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}}]},"ISO":{"alpha2":"BA","alpha3":"BIH"},"languages":["bs","hr","sr"],"latlng":[44,18],"nativeName":"Bosna i Hercegovina","population":3791622,"provinces":["Federation of Bosnia and Herzegovina","Republika Srpska"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".ba"],"translations":{"de":"Bosnien und Herzegowina","es":"Bosnia y Herzegovina","fr":"Bosnie-Herzégovine","ja":"ボスニア・ヘルツェゴビナ","it":"Bosnia ed Erzegovina"},"wiki":"http://en.wikipedia.org/wiki/bosnia_and_herzegovina"} \ No newline at end of file diff --git a/countryinfo/data/botswana.json b/countryinfo/data/botswana.json index 640d4fa..a1ccbd6 100644 --- a/countryinfo/data/botswana.json +++ b/countryinfo/data/botswana.json @@ -1 +1 @@ -{"name":"Botswana","altSpellings":["BW","Republic of Botswana","Lefatshe la Botswana"],"area":582000,"borders":["NAM","ZAF","ZMB","ZWE"],"callingCodes":["267"],"capital":"Gaborone","currencies":["BWP"],"demonym":"Motswana","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BWA","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}}]},"ISO":{"alpha2":"BW","alpha3":"BWA"},"languages":["en","tn"],"latlng":[-22,24],"nativeName":"Botswana","population":2024904,"provinces":["Central","Chobe","Francistown","Gaborone","Ghanzi","Kgalagadi","Kgatleng","Kweneng","Lobatse","Ngamiland","North-East","Selebi-Pikwe","South-East","Southern"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".bw"],"translations":{"de":"Botswana","es":"Botswana","fr":"Botswana","ja":"ボツワナ","it":"Botswana"},"wiki":"http://en.wikipedia.org/wiki/botswana"} \ No newline at end of file +{"name":"Botswana","altSpellings":["BW","Republic of Botswana","Lefatshe la Botswana"],"area":582000,"borders":["NAM","ZAF","ZMB","ZWE"],"callingCodes":["267"],"capital":"Gaborone","capital_latlng":[-24.658136,25.908847],"currencies":["BWP"],"demonym":"Motswana","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BWA","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}}]},"ISO":{"alpha2":"BW","alpha3":"BWA"},"languages":["en","tn"],"latlng":[-22,24],"nativeName":"Botswana","population":2024904,"provinces":["Central","Chobe","Francistown","Gaborone","Ghanzi","Kgalagadi","Kgatleng","Kweneng","Lobatse","Ngamiland","North-East","Selebi-Pikwe","South-East","Southern"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".bw"],"translations":{"de":"Botswana","es":"Botswana","fr":"Botswana","ja":"ボツワナ","it":"Botswana"},"wiki":"http://en.wikipedia.org/wiki/botswana"} \ No newline at end of file diff --git a/countryinfo/data/brazil.json b/countryinfo/data/brazil.json index 68b3b00..cdbaf8f 100644 --- a/countryinfo/data/brazil.json +++ b/countryinfo/data/brazil.json @@ -1 +1 @@ -{"name":"Brazil","altSpellings":["BR","Brasil","Federative Republic of Brazil","República Federativa do Brasil"],"area":8515767,"borders":["ARG","BOL","COL","GUF","GUY","PRY","PER","SUR","URY","VEN"],"callingCodes":["55"],"capital":"Brasília","currencies":["BRL"],"demonym":"Brazilian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BRA","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}}]},"ISO":{"alpha2":"BR","alpha3":"BRA"},"languages":["pt"],"latlng":[-10,-55],"nativeName":"Brasil","population":203586000,"provinces":["Acre","Alagoas","Amapa","Amazonas","Bahia","Ceara","Distrito Federal","Espirito Santo","Goias","Maranhao","Mato Grosso","Mato Grosso do Sul","Minas Gerais","Para","Paraiba","Parana","Pernambuco","Piaui","Rio de Janeiro","Rio Grande do Norte","Rio Grande do Sul","Rondonia","Roraima","Santa Catarina","Sao Paulo","Sergipe","Tocantins"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00","UTC−04:00","UTC−03:00","UTC−02:00"],"tld":[".br"],"translations":{"de":"Brasilien","es":"Brasil","fr":"Brésil","ja":"ブラジル","it":"Brasile"},"wiki":"http://en.wikipedia.org/wiki/brazil"} \ No newline at end of file +{"name":"Brazil","altSpellings":["BR","Brasil","Federative Republic of Brazil","República Federativa do Brasil"],"area":8515767,"borders":["ARG","BOL","COL","GUF","GUY","PRY","PER","SUR","URY","VEN"],"callingCodes":["55"],"capital":"Brasília","capital_latlng":[-10.333333,-53.2],"currencies":["BRL"],"demonym":"Brazilian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BRA","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}}]},"ISO":{"alpha2":"BR","alpha3":"BRA"},"languages":["pt"],"latlng":[-10,-55],"nativeName":"Brasil","population":203586000,"provinces":["Acre","Alagoas","Amapa","Amazonas","Bahia","Ceara","Distrito Federal","Espirito Santo","Goias","Maranhao","Mato Grosso","Mato Grosso do Sul","Minas Gerais","Para","Paraiba","Parana","Pernambuco","Piaui","Rio de Janeiro","Rio Grande do Norte","Rio Grande do Sul","Rondonia","Roraima","Santa Catarina","Sao Paulo","Sergipe","Tocantins"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00","UTC−04:00","UTC−03:00","UTC−02:00"],"tld":[".br"],"translations":{"de":"Brasilien","es":"Brasil","fr":"Brésil","ja":"ブラジル","it":"Brasile"},"wiki":"http://en.wikipedia.org/wiki/brazil"} \ No newline at end of file diff --git a/countryinfo/data/british_virgin_islands.json b/countryinfo/data/british_virgin_islands.json index 3fbc00a..6dfce50 100644 --- a/countryinfo/data/british_virgin_islands.json +++ b/countryinfo/data/british_virgin_islands.json @@ -1 +1 @@ -{"name":"British Indian Ocean Territory","altSpellings":["IO"],"area":60,"borders":[],"callingCodes":["246"],"capital":"Diego Garcia","currencies":["USD"],"demonym":"Indian","flag":"","geoJSON":{},"ISO":{"alpha2":"IO","alpha3":"IOT"},"languages":["en"],"latlng":[-6,71.5],"nativeName":"British Indian Ocean Territory","population":3000,"provinces":["Anegada","Jost Van Dyke","Tortola","Virgin Gorda"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".io"],"translations":{"de":"Britisches Territorium im Indischen Ozean","es":"Territorio Británico del Océano Índico","fr":"Territoire britannique de l'océan Indien","ja":"イギリス領インド洋地域","it":"Territorio britannico dell'oceano indiano"},"wiki":"http://en.wikipedia.org/wiki/british_virgin_islands"} \ No newline at end of file +{"name":"British Indian Ocean Territory","altSpellings":["IO"],"area":60,"borders":[],"callingCodes":["246"],"capital":"Diego Garcia","capital_latlng":[-7.338358,72.471815],"currencies":["USD"],"demonym":"Indian","flag":"","geoJSON":{},"ISO":{"alpha2":"IO","alpha3":"IOT"},"languages":["en"],"latlng":[-6,71.5],"nativeName":"British Indian Ocean Territory","population":3000,"provinces":["Anegada","Jost Van Dyke","Tortola","Virgin Gorda"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".io"],"translations":{"de":"Britisches Territorium im Indischen Ozean","es":"Territorio Británico del Océano Índico","fr":"Territoire britannique de l'océan Indien","ja":"イギリス領インド洋地域","it":"Territorio britannico dell'oceano indiano"},"wiki":"http://en.wikipedia.org/wiki/british_virgin_islands"} \ No newline at end of file diff --git a/countryinfo/data/brunei.json b/countryinfo/data/brunei.json index dea2d98..fa8b57c 100644 --- a/countryinfo/data/brunei.json +++ b/countryinfo/data/brunei.json @@ -1 +1 @@ -{"name":"Brunei","altSpellings":["BN","Nation of Brunei"," the Abode of Peace"],"area":5765,"borders":["MYS"],"callingCodes":["673"],"capital":"Bandar Seri Begawan","currencies":["BND"],"demonym":"Bruneian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BRN","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}}]},"ISO":{"alpha2":"BN","alpha3":"BRN"},"languages":["ms"],"latlng":[4.5,114.66666666],"nativeName":"Negara Brunei Darussalam","population":393372,"provinces":["Belait","Brunei and Muara","Temburong","Tutong"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".bn"],"translations":{"de":"Brunei","es":"Brunei","fr":"Brunei","ja":"ブルネイ・ダルサラーム","it":"Brunei"},"wiki":"http://en.wikipedia.org/wiki/brunei"} \ No newline at end of file +{"name":"Brunei","altSpellings":["BN","Nation of Brunei"," the Abode of Peace"],"area":5765,"borders":["MYS"],"callingCodes":["673"],"capital":"Bandar Seri Begawan","capital_latlng":[4.889545,114.941757],"currencies":["BND"],"demonym":"Bruneian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BRN","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}}]},"ISO":{"alpha2":"BN","alpha3":"BRN"},"languages":["ms"],"latlng":[4.5,114.66666666],"nativeName":"Negara Brunei Darussalam","population":393372,"provinces":["Belait","Brunei and Muara","Temburong","Tutong"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".bn"],"translations":{"de":"Brunei","es":"Brunei","fr":"Brunei","ja":"ブルネイ・ダルサラーム","it":"Brunei"},"wiki":"http://en.wikipedia.org/wiki/brunei"} \ No newline at end of file diff --git a/countryinfo/data/bulgaria.json b/countryinfo/data/bulgaria.json index fd93548..821642c 100644 --- a/countryinfo/data/bulgaria.json +++ b/countryinfo/data/bulgaria.json @@ -1 +1 @@ -{"name":"Bulgaria","altSpellings":["BG","Republic of Bulgaria","Република България"],"area":110879,"borders":["GRC","MKD","ROU","SRB","TUR"],"callingCodes":["359"],"capital":"Sofia","currencies":["BGN"],"demonym":"Bulgarian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BGR","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}}]},"ISO":{"alpha2":"BG","alpha3":"BGR"},"languages":["bg"],"latlng":[43,25],"nativeName":"България","population":7245677,"provinces":["Blagoevgrad","Burgas","Dobrich","Gabrovo","Khaskovo","Kurdzhali","Kyustendil","Lovech","Montana","Pazardzhik","Pernik","Pleven","Plovdiv","Razgrad","Ruse","Shumen","Silistra","Sliven","Smolyan","Sofiya","Sofiya-Grad","Stara Zagora","Turgovishte","Varna","Veliko Turnovo","Vidin","Vratsa","Yambol"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".bg"],"translations":{"de":"Bulgarien","es":"Bulgaria","fr":"Bulgarie","ja":"ブルガリア","it":"Bulgaria"},"wiki":"http://en.wikipedia.org/wiki/bulgaria"} \ No newline at end of file +{"name":"Bulgaria","altSpellings":["BG","Republic of Bulgaria","Република България"],"area":110879,"borders":["GRC","MKD","ROU","SRB","TUR"],"callingCodes":["359"],"capital":"Sofia","capital_latlng":[-15.25384,48.256216],"currencies":["BGN"],"demonym":"Bulgarian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BGR","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}}]},"ISO":{"alpha2":"BG","alpha3":"BGR"},"languages":["bg"],"latlng":[43,25],"nativeName":"България","population":7245677,"provinces":["Blagoevgrad","Burgas","Dobrich","Gabrovo","Khaskovo","Kurdzhali","Kyustendil","Lovech","Montana","Pazardzhik","Pernik","Pleven","Plovdiv","Razgrad","Ruse","Shumen","Silistra","Sliven","Smolyan","Sofiya","Sofiya-Grad","Stara Zagora","Turgovishte","Varna","Veliko Turnovo","Vidin","Vratsa","Yambol"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".bg"],"translations":{"de":"Bulgarien","es":"Bulgaria","fr":"Bulgarie","ja":"ブルガリア","it":"Bulgaria"},"wiki":"http://en.wikipedia.org/wiki/bulgaria"} \ No newline at end of file diff --git a/countryinfo/data/burkina_faso.json b/countryinfo/data/burkina_faso.json index 2a2a7e4..dea5eba 100644 --- a/countryinfo/data/burkina_faso.json +++ b/countryinfo/data/burkina_faso.json @@ -1 +1 @@ -{"name":"Burkina Faso","altSpellings":["BF"],"area":272967,"borders":["BEN","CIV","GHA","MLI","NER","TGO"],"callingCodes":["226"],"capital":"Ouagadougou","currencies":["XOF"],"demonym":"Burkinabe","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BFA","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}}]},"ISO":{"alpha2":"BF","alpha3":"BFA"},"languages":["fr","ff"],"latlng":[13,-2],"nativeName":"Burkina Faso","population":17322796,"provinces":["Bale","Bam","Banwa","Bazega","Bougouriba","Boulgou","Boulkiemde","Comoe","Ganzourgou","Gnagna","Gourma","Houet","Ioba","Kadiogo","Kenedougou","Komandjari","Kompienga","Kossi","Koupelogo","Kouritenga","Kourweogo","Leraba","Loroum","Mouhoun","Nahouri","Namentenga","Naumbiel","Nayala","Oubritenga","Oudalan","Passore","Poni","Samentenga","Sanguie","Seno","Sissili","Soum","Sourou","Tapoa","Tuy","Yagha","Yatenga","Ziro","Zondomo","Zoundweogo"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".bf"],"translations":{"de":"Burkina Faso","es":"Burkina Faso","fr":"Burkina Faso","ja":"ブルキナファソ","it":"Burkina Faso"},"wiki":"http://en.wikipedia.org/wiki/burkina_faso"} \ No newline at end of file +{"name":"Burkina Faso","altSpellings":["BF"],"area":272967,"borders":["BEN","CIV","GHA","MLI","NER","TGO"],"callingCodes":["226"],"capital":"Ouagadougou","capital_latlng":[12.368187,-1.527094],"currencies":["XOF"],"demonym":"Burkinabe","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BFA","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}}]},"ISO":{"alpha2":"BF","alpha3":"BFA"},"languages":["fr","ff"],"latlng":[13,-2],"nativeName":"Burkina Faso","population":17322796,"provinces":["Bale","Bam","Banwa","Bazega","Bougouriba","Boulgou","Boulkiemde","Comoe","Ganzourgou","Gnagna","Gourma","Houet","Ioba","Kadiogo","Kenedougou","Komandjari","Kompienga","Kossi","Koupelogo","Kouritenga","Kourweogo","Leraba","Loroum","Mouhoun","Nahouri","Namentenga","Naumbiel","Nayala","Oubritenga","Oudalan","Passore","Poni","Samentenga","Sanguie","Seno","Sissili","Soum","Sourou","Tapoa","Tuy","Yagha","Yatenga","Ziro","Zondomo","Zoundweogo"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".bf"],"translations":{"de":"Burkina Faso","es":"Burkina Faso","fr":"Burkina Faso","ja":"ブルキナファソ","it":"Burkina Faso"},"wiki":"http://en.wikipedia.org/wiki/burkina_faso"} \ No newline at end of file diff --git a/countryinfo/data/burundi.json b/countryinfo/data/burundi.json index 8ddd1a2..371bd60 100644 --- a/countryinfo/data/burundi.json +++ b/countryinfo/data/burundi.json @@ -1 +1 @@ -{"name":"Burundi","altSpellings":["BI","Republic of Burundi","Republika y'Uburundi","République du Burundi"],"area":27834,"borders":["COD","RWA","TZA"],"callingCodes":["257"],"capital":"Bujumbura","currencies":["BIF"],"demonym":"Burundian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BDI","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}}]},"ISO":{"alpha2":"BI","alpha3":"BDI"},"languages":["fr","rn"],"latlng":[-3.5,30],"nativeName":"Burundi","population":9530434,"provinces":["Bubanza","Bujumbura","Bururi","Cankuzo","Cibitoke","Gitega","Karuzi","Kayanza","Kirundo","Makamba","Muramvya","Muyinga","Mwaro","Ngozi","Rutana","Ruyigi"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".bi"],"translations":{"de":"Burundi","es":"Burundi","fr":"Burundi","ja":"ブルンジ","it":"Burundi"},"wiki":"http://en.wikipedia.org/wiki/burundi"} \ No newline at end of file +{"name":"Burundi","altSpellings":["BI","Republic of Burundi","Republika y'Uburundi","République du Burundi"],"area":27834,"borders":["COD","RWA","TZA"],"callingCodes":["257"],"capital":"Bujumbura","capital_latlng":[-3.363812,29.367503],"currencies":["BIF"],"demonym":"Burundian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"BDI","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}}]},"ISO":{"alpha2":"BI","alpha3":"BDI"},"languages":["fr","rn"],"latlng":[-3.5,30],"nativeName":"Burundi","population":9530434,"provinces":["Bubanza","Bujumbura","Bururi","Cankuzo","Cibitoke","Gitega","Karuzi","Kayanza","Kirundo","Makamba","Muramvya","Muyinga","Mwaro","Ngozi","Rutana","Ruyigi"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".bi"],"translations":{"de":"Burundi","es":"Burundi","fr":"Burundi","ja":"ブルンジ","it":"Burundi"},"wiki":"http://en.wikipedia.org/wiki/burundi"} \ No newline at end of file diff --git a/countryinfo/data/cambodia.json b/countryinfo/data/cambodia.json index 375e6c0..3d0746f 100644 --- a/countryinfo/data/cambodia.json +++ b/countryinfo/data/cambodia.json @@ -1 +1 @@ -{"name":"Cambodia","altSpellings":["KH","Kingdom of Cambodia"],"area":181035,"borders":["LAO","THA","VNM"],"callingCodes":["855"],"capital":"Phnom Penh","currencies":["KHR"],"demonym":"Cambodian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KHM","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]}}]},"ISO":{"alpha2":"KH","alpha3":"KHM"},"languages":["km"],"latlng":[13,105],"nativeName":"Kâmpŭchéa","population":15184116,"provinces":["Banteay Mean Cheay","Batdambang","Kampong Cham","Kampong Chhnang","Kampong Spoe","Kampong Thum","Kampot","Kandal","Kaoh Kong","Keb","Kracheh","Mondol Kiri","Otdar Mean Cheay","Pailin","Phnum Penh","Pouthisat","Preah Seihanu (Sihanoukville)","Preah Vihear","Prey Veng","Rotanah Kiri","Siem Reab","Stoeng Treng","Svay Rieng","Takev"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".kh"],"translations":{"de":"Kambodscha","es":"Camboya","fr":"Cambodge","ja":"カンボジア","it":"Cambogia"},"wiki":"http://en.wikipedia.org/wiki/cambodia"} \ No newline at end of file +{"name":"Cambodia","altSpellings":["KH","Kingdom of Cambodia"],"area":181035,"borders":["LAO","THA","VNM"],"callingCodes":["855"],"capital":"Phnom Penh","capital_latlng":[11.568271,104.922443],"currencies":["KHR"],"demonym":"Cambodian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KHM","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]}}]},"ISO":{"alpha2":"KH","alpha3":"KHM"},"languages":["km"],"latlng":[13,105],"nativeName":"Kâmpŭchéa","population":15184116,"provinces":["Banteay Mean Cheay","Batdambang","Kampong Cham","Kampong Chhnang","Kampong Spoe","Kampong Thum","Kampot","Kandal","Kaoh Kong","Keb","Kracheh","Mondol Kiri","Otdar Mean Cheay","Pailin","Phnum Penh","Pouthisat","Preah Seihanu (Sihanoukville)","Preah Vihear","Prey Veng","Rotanah Kiri","Siem Reab","Stoeng Treng","Svay Rieng","Takev"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".kh"],"translations":{"de":"Kambodscha","es":"Camboya","fr":"Cambodge","ja":"カンボジア","it":"Cambogia"},"wiki":"http://en.wikipedia.org/wiki/cambodia"} \ No newline at end of file diff --git a/countryinfo/data/cameroon.json b/countryinfo/data/cameroon.json index ea6b63e..ebc43b7 100644 --- a/countryinfo/data/cameroon.json +++ b/countryinfo/data/cameroon.json @@ -1 +1 @@ -{"name":"Cameroon","altSpellings":["CM","Republic of Cameroon","République du Cameroun"],"area":475442,"borders":["CAF","TCD","COG","GNQ","GAB","NGA"],"callingCodes":["237"],"capital":"Yaoundé","currencies":["XAF"],"demonym":"Cameroonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CMR","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}}]},"ISO":{"alpha2":"CM","alpha3":"CMR"},"languages":["en","fr"],"latlng":[6,12],"nativeName":"Cameroon","population":20386799,"provinces":["Adamaoua","Centre","Est","Extreme-Nord","Littoral","Nord","Nord-Ouest","Ouest","Sud","Sud-Ouest"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cm"],"translations":{"de":"Kamerun","es":"Camerún","fr":"Cameroun","ja":"カメルーン","it":"Camerun"},"wiki":"http://en.wikipedia.org/wiki/cameroon"} \ No newline at end of file +{"name":"Cameroon","altSpellings":["CM","Republic of Cameroon","République du Cameroun"],"area":475442,"borders":["CAF","TCD","COG","GNQ","GAB","NGA"],"callingCodes":["237"],"capital":"Yaoundé","capital_latlng":[3.868987,11.521334],"currencies":["XAF"],"demonym":"Cameroonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CMR","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}}]},"ISO":{"alpha2":"CM","alpha3":"CMR"},"languages":["en","fr"],"latlng":[6,12],"nativeName":"Cameroon","population":20386799,"provinces":["Adamaoua","Centre","Est","Extreme-Nord","Littoral","Nord","Nord-Ouest","Ouest","Sud","Sud-Ouest"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cm"],"translations":{"de":"Kamerun","es":"Camerún","fr":"Cameroun","ja":"カメルーン","it":"Camerun"},"wiki":"http://en.wikipedia.org/wiki/cameroon"} \ No newline at end of file diff --git a/countryinfo/data/canada.json b/countryinfo/data/canada.json index 4277a38..71a7e18 100644 --- a/countryinfo/data/canada.json +++ b/countryinfo/data/canada.json @@ -1 +1 @@ -{"name":"Canada","altSpellings":["CA"],"area":9984670,"borders":["USA"],"callingCodes":["1"],"capital":"Ottawa","currencies":["CAD"],"demonym":"Canadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CAN","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}}]},"ISO":{"alpha2":"CA","alpha3":"CAN"},"languages":["en","fr"],"latlng":[60,-95],"nativeName":"Canada","population":35540419,"provinces":["Alberta","British Columbia","Manitoba","New Brunswick","Newfoundland","Northwest Territories","Nova Scotia","Nunavut","Ontario","Prince Edward Island","Quebec","Saskatchewan","Yukon Territory"],"region":"Americas","subregion":"Northern America","timezones":["UTC−08:00","UTC−07:00","UTC−06:00","UTC−05:00","UTC−04:00","UTC−03:30"],"tld":[".ca"],"translations":{"de":"Kanada","es":"Canadá","fr":"Canada","ja":"カナダ","it":"Canada"},"wiki":"http://en.wikipedia.org/wiki/canada"} \ No newline at end of file +{"name":"Canada","altSpellings":["CA"],"area":9984670,"borders":["USA"],"callingCodes":["1"],"capital":"Ottawa","capital_latlng":[45.421106,-75.690308],"currencies":["CAD"],"demonym":"Canadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CAN","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}}]},"ISO":{"alpha2":"CA","alpha3":"CAN"},"languages":["en","fr"],"latlng":[60,-95],"nativeName":"Canada","population":35540419,"provinces":["Alberta","British Columbia","Manitoba","New Brunswick","Newfoundland","Northwest Territories","Nova Scotia","Nunavut","Ontario","Prince Edward Island","Quebec","Saskatchewan","Yukon Territory"],"region":"Americas","subregion":"Northern America","timezones":["UTC−08:00","UTC−07:00","UTC−06:00","UTC−05:00","UTC−04:00","UTC−03:30"],"tld":[".ca"],"translations":{"de":"Kanada","es":"Canadá","fr":"Canada","ja":"カナダ","it":"Canada"},"wiki":"http://en.wikipedia.org/wiki/canada"} \ No newline at end of file diff --git a/countryinfo/data/cape_verde.json b/countryinfo/data/cape_verde.json index 03c0aba..3fa9aa9 100644 --- a/countryinfo/data/cape_verde.json +++ b/countryinfo/data/cape_verde.json @@ -1 +1 @@ -{"name":"Cape Verde","altSpellings":["CV","Republic of Cabo Verde","República de Cabo Verde"],"area":4033,"borders":[],"callingCodes":["238"],"capital":"Praia","currencies":["CVE"],"demonym":"Cape Verdian","flag":"","geoJSON":{},"ISO":{"alpha2":"CV","alpha3":"CPV"},"languages":["pt"],"latlng":[16,-24],"nativeName":"Cabo Verde","population":518467,"provinces":["Boa Vista","Brava","Maio","Mosteiros","Paul","Porto Novo","Praia","Ribeira Grande","Sal","Santa Catarina","Santa Cruz","Sao Domingos","Sao Filipe","Sao Nicolau","Sao Vicente","Tarrafal"],"region":"Africa","subregion":"Western Africa","timezones":["UTC−01:00"],"tld":[".cv"],"translations":{"de":"Kap Verde","es":"Cabo Verde","fr":"Cap Vert","ja":"カーボベルデ","it":"Capo Verde"},"wiki":"http://en.wikipedia.org/wiki/cape_verde"} \ No newline at end of file +{"name":"Cape Verde","altSpellings":["CV","Republic of Cabo Verde","República de Cabo Verde"],"area":4033,"borders":[],"callingCodes":["238"],"capital":"Praia","capital_latlng":[14.916017,-23.509613],"currencies":["CVE"],"demonym":"Cape Verdian","flag":"","geoJSON":{},"ISO":{"alpha2":"CV","alpha3":"CPV"},"languages":["pt"],"latlng":[16,-24],"nativeName":"Cabo Verde","population":518467,"provinces":["Boa Vista","Brava","Maio","Mosteiros","Paul","Porto Novo","Praia","Ribeira Grande","Sal","Santa Catarina","Santa Cruz","Sao Domingos","Sao Filipe","Sao Nicolau","Sao Vicente","Tarrafal"],"region":"Africa","subregion":"Western Africa","timezones":["UTC−01:00"],"tld":[".cv"],"translations":{"de":"Kap Verde","es":"Cabo Verde","fr":"Cap Vert","ja":"カーボベルデ","it":"Capo Verde"},"wiki":"http://en.wikipedia.org/wiki/cape_verde"} \ No newline at end of file diff --git a/countryinfo/data/cayman_islands.json b/countryinfo/data/cayman_islands.json index ff6ad76..60410d6 100644 --- a/countryinfo/data/cayman_islands.json +++ b/countryinfo/data/cayman_islands.json @@ -1 +1 @@ -{"name":"Cayman Islands","altSpellings":["KY"],"area":264,"borders":[],"callingCodes":["1345"],"capital":"George Town","currencies":["KYD"],"demonym":"Caymanian","flag":"","geoJSON":{},"ISO":{"alpha2":"KY","alpha3":"CYM"},"languages":["en"],"latlng":[19.5,-80.5],"nativeName":"Cayman Islands","population":55456,"provinces":["Creek","Eastern","Midland","South Town","Spot Bay","Stake Bay","West End","Western"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ky"],"translations":{"de":"Kaimaninseln","es":"Islas Caimán","fr":"Îles Caïmans","ja":"ケイマン諸島","it":"Isole Cayman"},"wiki":"http://en.wikipedia.org/wiki/cayman_islands"} \ No newline at end of file +{"name":"Cayman Islands","altSpellings":["KY"],"area":264,"borders":[],"callingCodes":["1345"],"capital":"George Town","capital_latlng":[5.414568,100.329804],"currencies":["KYD"],"demonym":"Caymanian","flag":"","geoJSON":{},"ISO":{"alpha2":"KY","alpha3":"CYM"},"languages":["en"],"latlng":[19.5,-80.5],"nativeName":"Cayman Islands","population":55456,"provinces":["Creek","Eastern","Midland","South Town","Spot Bay","Stake Bay","West End","Western"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ky"],"translations":{"de":"Kaimaninseln","es":"Islas Caimán","fr":"Îles Caïmans","ja":"ケイマン諸島","it":"Isole Cayman"},"wiki":"http://en.wikipedia.org/wiki/cayman_islands"} \ No newline at end of file diff --git a/countryinfo/data/central_african_republic.json b/countryinfo/data/central_african_republic.json index fa0e365..adf9520 100644 --- a/countryinfo/data/central_african_republic.json +++ b/countryinfo/data/central_african_republic.json @@ -1 +1 @@ -{"name":"Central African Republic","altSpellings":["CF","Central African Republic","République centrafricaine"],"area":622984,"borders":["CMR","TCD","COD","COG","SSD","SDN"],"callingCodes":["236"],"capital":"Bangui","currencies":["XAF"],"demonym":"Central African","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CAF","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}}]},"ISO":{"alpha2":"CF","alpha3":"CAF"},"languages":["fr","sg"],"latlng":[7,21],"nativeName":"Ködörösêse tî Bêafrîka","population":4709000,"provinces":["Bamingui-Bangoran","Bangui","Basse-Kotto","Gribingui","Haut-Mbomou","Haute-Kotto","Haute-Sangha","Kemo-Gribingui","Lobaye","Mbomou","Nana-Mambere","Ombella-Mpoko","Ouaka","Ouham","Ouham-Pende","Sangha","Vakaga"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cf"],"translations":{"de":"Zentralafrikanische Republik","es":"República Centroafricana","fr":"République centrafricaine","ja":"中央アフリカ共和国","it":"Repubblica Centrafricana"},"wiki":"http://en.wikipedia.org/wiki/central_african_republic"} \ No newline at end of file +{"name":"Central African Republic","altSpellings":["CF","Central African Republic","République centrafricaine"],"area":622984,"borders":["CMR","TCD","COD","COG","SSD","SDN"],"callingCodes":["236"],"capital":"Bangui","capital_latlng":[4.390715,18.550913],"currencies":["XAF"],"demonym":"Central African","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CAF","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}}]},"ISO":{"alpha2":"CF","alpha3":"CAF"},"languages":["fr","sg"],"latlng":[7,21],"nativeName":"Ködörösêse tî Bêafrîka","population":4709000,"provinces":["Bamingui-Bangoran","Bangui","Basse-Kotto","Gribingui","Haut-Mbomou","Haute-Kotto","Haute-Sangha","Kemo-Gribingui","Lobaye","Mbomou","Nana-Mambere","Ombella-Mpoko","Ouaka","Ouham","Ouham-Pende","Sangha","Vakaga"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cf"],"translations":{"de":"Zentralafrikanische Republik","es":"República Centroafricana","fr":"République centrafricaine","ja":"中央アフリカ共和国","it":"Repubblica Centrafricana"},"wiki":"http://en.wikipedia.org/wiki/central_african_republic"} \ No newline at end of file diff --git a/countryinfo/data/chad.json b/countryinfo/data/chad.json index 34a7514..208d121 100644 --- a/countryinfo/data/chad.json +++ b/countryinfo/data/chad.json @@ -1 +1 @@ -{"name":"Chad","altSpellings":["TD","Tchad","Republic of Chad","République du Tchad"],"area":1284000,"borders":["CMR","CAF","LBY","NER","NGA","SSD"],"callingCodes":["235"],"capital":"N'Djamena","currencies":["XAF"],"demonym":"Chadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TCD","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]}}]},"ISO":{"alpha2":"TD","alpha3":"TCD"},"languages":["fr","ar"],"latlng":[15,19],"nativeName":"Tchad","population":13211000,"provinces":["Batha","Biltine","Borkou-Ennedi-Tibesti","Chari-Baguirmi","Guera","Kanem","Lac","Logone Occidental","Logone Oriental","Mayo-Kebbi","Moyen-Chari","Ouaddai","Salamat","Tandjile"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".td"],"translations":{"de":"Tschad","es":"Chad","fr":"Tchad","ja":"チャド","it":"Ciad"},"wiki":"http://en.wikipedia.org/wiki/chad"} \ No newline at end of file +{"name":"Chad","altSpellings":["TD","Tchad","Republic of Chad","République du Tchad"],"area":1284000,"borders":["CMR","CAF","LBY","NER","NGA","SSD"],"callingCodes":["235"],"capital":"N'Djamena","capital_latlng":[12.119154,15.050276],"currencies":["XAF"],"demonym":"Chadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TCD","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]}}]},"ISO":{"alpha2":"TD","alpha3":"TCD"},"languages":["fr","ar"],"latlng":[15,19],"nativeName":"Tchad","population":13211000,"provinces":["Batha","Biltine","Borkou-Ennedi-Tibesti","Chari-Baguirmi","Guera","Kanem","Lac","Logone Occidental","Logone Oriental","Mayo-Kebbi","Moyen-Chari","Ouaddai","Salamat","Tandjile"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".td"],"translations":{"de":"Tschad","es":"Chad","fr":"Tchad","ja":"チャド","it":"Ciad"},"wiki":"http://en.wikipedia.org/wiki/chad"} \ No newline at end of file diff --git a/countryinfo/data/chile.json b/countryinfo/data/chile.json index cda758a..1f8be46 100644 --- a/countryinfo/data/chile.json +++ b/countryinfo/data/chile.json @@ -1 +1 @@ -{"name":"Chile","altSpellings":["CL","Republic of Chile","República de Chile"],"area":756102,"borders":["ARG","BOL","PER"],"callingCodes":["56"],"capital":"Santiago","currencies":["CLF","CLP"],"demonym":"Chilean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHL","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}}]},"ISO":{"alpha2":"CL","alpha3":"CHL"},"languages":["es"],"latlng":[-30,-71],"nativeName":"Chile","population":17819054,"provinces":["Aisen del General Carlos Ibanez del Campo","Antofagasta","Araucania","Atacama","Bio-Bio","Coquimbo","Libertador General Bernardo O'Higgins","Los Lagos","Magallanes y de la Antartica Chilena","Maule","Region Metropolitana (Santiago)","Tarapaca","Valparaiso"],"region":"Americas","subregion":"South America","timezones":["UTC−06:00","UTC−04:00"],"tld":[".cl"],"translations":{"de":"Chile","es":"Chile","fr":"Chili","ja":"チリ","it":"Cile"},"wiki":"http://en.wikipedia.org/wiki/chile"} \ No newline at end of file +{"name":"Chile","altSpellings":["CL","Republic of Chile","República de Chile"],"area":756102,"borders":["ARG","BOL","PER"],"callingCodes":["56"],"capital":"Santiago","capital_latlng":[9.869479,-83.798075],"currencies":["CLF","CLP"],"demonym":"Chilean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHL","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}}]},"ISO":{"alpha2":"CL","alpha3":"CHL"},"languages":["es"],"latlng":[-30,-71],"nativeName":"Chile","population":17819054,"provinces":["Aisen del General Carlos Ibanez del Campo","Antofagasta","Araucania","Atacama","Bio-Bio","Coquimbo","Libertador General Bernardo O'Higgins","Los Lagos","Magallanes y de la Antartica Chilena","Maule","Region Metropolitana (Santiago)","Tarapaca","Valparaiso"],"region":"Americas","subregion":"South America","timezones":["UTC−06:00","UTC−04:00"],"tld":[".cl"],"translations":{"de":"Chile","es":"Chile","fr":"Chili","ja":"チリ","it":"Cile"},"wiki":"http://en.wikipedia.org/wiki/chile"} \ No newline at end of file diff --git a/countryinfo/data/china.json b/countryinfo/data/china.json index 2135d6e..2dc746f 100644 --- a/countryinfo/data/china.json +++ b/countryinfo/data/china.json @@ -1 +1 @@ -{"name":"China","altSpellings":["CN","Zhōngguó","Zhongguo","Zhonghua","People's Republic of China","中华人民共和国","Zhōnghuá Rénmín Gònghéguó"],"area":9640011,"borders":["AFG","BTN","MMR","HKG","IND","KAZ","PRK","KGZ","LAO","MAC","MNG","PAK","RUS","TJK","VNM"],"callingCodes":["86"],"capital":"Beijing","currencies":["CNY"],"demonym":"Chinese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHN","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}}]},"ISO":{"alpha2":"CN","alpha3":"CHN"},"languages":["zh"],"latlng":[35,105],"nativeName":"中国","population":1367110000,"provinces":["Anhui","Beijing","Chongqing","Fujian","Gansu","Guangdong","Guangxi","Guizhou","Hainan","Hebei","Heilongjiang","Henan","Hubei","Hunan","Jiangsu","Jiangxi","Jilin","Liaoning","Nei Mongol","Ningxia","Qinghai","Shaanxi","Shandong","Shanghai","Shanxi","Sichuan","Tianjin","Xinjiang","Xizang (Tibet)","Yunnan","Zhejiang"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".cn"],"translations":{"de":"China","es":"China","fr":"Chine","ja":"中国","it":"Cina"},"wiki":"http://en.wikipedia.org/wiki/china"} \ No newline at end of file +{"name":"China","altSpellings":["CN","Zhōngguó","Zhongguo","Zhonghua","People's Republic of China","中华人民共和国","Zhōnghuá Rénmín Gònghéguó"],"area":9640011,"borders":["AFG","BTN","MMR","HKG","IND","KAZ","PRK","KGZ","LAO","MAC","MNG","PAK","RUS","TJK","VNM"],"callingCodes":["86"],"capital":"Beijing","capital_latlng":[39.906217,116.391276],"currencies":["CNY"],"demonym":"Chinese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHN","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}}]},"ISO":{"alpha2":"CN","alpha3":"CHN"},"languages":["zh"],"latlng":[35,105],"nativeName":"中国","population":1367110000,"provinces":["Anhui","Beijing","Chongqing","Fujian","Gansu","Guangdong","Guangxi","Guizhou","Hainan","Hebei","Heilongjiang","Henan","Hubei","Hunan","Jiangsu","Jiangxi","Jilin","Liaoning","Nei Mongol","Ningxia","Qinghai","Shaanxi","Shandong","Shanghai","Shanxi","Sichuan","Tianjin","Xinjiang","Xizang (Tibet)","Yunnan","Zhejiang"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".cn"],"translations":{"de":"China","es":"China","fr":"Chine","ja":"中国","it":"Cina"},"wiki":"http://en.wikipedia.org/wiki/china"} \ No newline at end of file diff --git a/countryinfo/data/christmas_island.json b/countryinfo/data/christmas_island.json index 50abb0b..293fc30 100644 --- a/countryinfo/data/christmas_island.json +++ b/countryinfo/data/christmas_island.json @@ -1 +1 @@ -{"name":"Christmas Island","altSpellings":["CX","Territory of Christmas Island"],"area":135,"borders":[],"callingCodes":["61"],"capital":"Flying Fish Cove","currencies":["AUD"],"demonym":"Christmas Island","flag":"","geoJSON":{},"ISO":{"alpha2":"CX","alpha3":"CXR"},"languages":["en"],"latlng":[-10.5,105.66666666],"nativeName":"Christmas Island","population":2072,"provinces":["Christmas Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".cx"],"translations":{"de":"Weihnachtsinsel","es":"Isla de Navidad","fr":"Île Christmas","ja":"クリスマス島","it":"Isola di Natale"},"wiki":"http://en.wikipedia.org/wiki/christmas_island"} \ No newline at end of file +{"name":"Christmas Island","altSpellings":["CX","Territory of Christmas Island"],"area":135,"borders":[],"callingCodes":["61"],"capital":"Flying Fish Cove","capital_latlng":[-10.426665,105.668672],"currencies":["AUD"],"demonym":"Christmas Island","flag":"","geoJSON":{},"ISO":{"alpha2":"CX","alpha3":"CXR"},"languages":["en"],"latlng":[-10.5,105.66666666],"nativeName":"Christmas Island","population":2072,"provinces":["Christmas Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".cx"],"translations":{"de":"Weihnachtsinsel","es":"Isla de Navidad","fr":"Île Christmas","ja":"クリスマス島","it":"Isola di Natale"},"wiki":"http://en.wikipedia.org/wiki/christmas_island"} \ No newline at end of file diff --git a/countryinfo/data/cocos_keeling_islands.json b/countryinfo/data/cocos_keeling_islands.json index 01b775d..3c4f4de 100644 --- a/countryinfo/data/cocos_keeling_islands.json +++ b/countryinfo/data/cocos_keeling_islands.json @@ -1 +1 @@ -{"name":"Cocos (Keeling) Islands","altSpellings":["CC","Territory of the Cocos (Keeling) Islands","Keeling Islands"],"area":14,"borders":[],"callingCodes":["61"],"capital":"West Island","currencies":["AUD"],"demonym":"Cocos Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"CC","alpha3":"CCK"},"languages":["en"],"latlng":[-12.5,96.83333333],"nativeName":"Cocos (Keeling) Islands","population":550,"provinces":["Direction Island","Home Island","Horsburgh Island","North Keeling Island","South Island","West Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".cc"],"translations":{"de":"Kokosinseln","es":"Islas Cocos o Islas Keeling","fr":"Îles Cocos","ja":"ココス(キーリング)諸島","it":"Isole Cocos e Keeling"},"wiki":"http://en.wikipedia.org/wiki/cocos_keeling_islands"} \ No newline at end of file +{"name":"Cocos (Keeling) Islands","altSpellings":["CC","Territory of the Cocos (Keeling) Islands","Keeling Islands"],"area":14,"borders":[],"callingCodes":["61"],"capital":"West Island","capital_latlng":[-12.189848,96.830449],"currencies":["AUD"],"demonym":"Cocos Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"CC","alpha3":"CCK"},"languages":["en"],"latlng":[-12.5,96.83333333],"nativeName":"Cocos (Keeling) Islands","population":550,"provinces":["Direction Island","Home Island","Horsburgh Island","North Keeling Island","South Island","West Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".cc"],"translations":{"de":"Kokosinseln","es":"Islas Cocos o Islas Keeling","fr":"Îles Cocos","ja":"ココス(キーリング)諸島","it":"Isole Cocos e Keeling"},"wiki":"http://en.wikipedia.org/wiki/cocos_keeling_islands"} \ No newline at end of file diff --git a/countryinfo/data/colombia.json b/countryinfo/data/colombia.json index 8068e6d..781884a 100644 --- a/countryinfo/data/colombia.json +++ b/countryinfo/data/colombia.json @@ -1 +1 @@ -{"name":"Colombia","altSpellings":["CO","Republic of Colombia","República de Colombia"],"area":1141748,"borders":["BRA","ECU","PAN","PER","VEN"],"callingCodes":["57"],"capital":"Bogotá","currencies":["COP"],"demonym":"Colombian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COL","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}}]},"ISO":{"alpha2":"CO","alpha3":"COL"},"languages":["es"],"latlng":[4,-72],"nativeName":"Colombia","population":47907800,"provinces":["Amazonas","Antioquia","Arauca","Atlantico","Bolivar","Boyaca","Caldas","Caqueta","Casanare","Cauca","Cesar","Choco","Cordoba","Cundinamarca","Distrito Capital de Santa Fe de Bogota","Guainia","Guaviare","Huila","La Guajira","Magdalena","Meta","Narino","Norte de Santander","Putumayo","Quindio","Risaralda","San Andres y Providencia","Santander","Sucre","Tolima","Valle del Cauca","Vaupes","Vichada"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00"],"tld":[".co"],"translations":{"de":"Kolumbien","es":"Colombia","fr":"Colombie","ja":"コロンビア","it":"Colombia"},"wiki":"http://en.wikipedia.org/wiki/colombia"} \ No newline at end of file +{"name":"Colombia","altSpellings":["CO","Republic of Colombia","República de Colombia"],"area":1141748,"borders":["BRA","ECU","PAN","PER","VEN"],"callingCodes":["57"],"capital":"Bogotá","capital_latlng":[4.59808,-74.076044],"currencies":["COP"],"demonym":"Colombian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COL","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}}]},"ISO":{"alpha2":"CO","alpha3":"COL"},"languages":["es"],"latlng":[4,-72],"nativeName":"Colombia","population":47907800,"provinces":["Amazonas","Antioquia","Arauca","Atlantico","Bolivar","Boyaca","Caldas","Caqueta","Casanare","Cauca","Cesar","Choco","Cordoba","Cundinamarca","Distrito Capital de Santa Fe de Bogota","Guainia","Guaviare","Huila","La Guajira","Magdalena","Meta","Narino","Norte de Santander","Putumayo","Quindio","Risaralda","San Andres y Providencia","Santander","Sucre","Tolima","Valle del Cauca","Vaupes","Vichada"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00"],"tld":[".co"],"translations":{"de":"Kolumbien","es":"Colombia","fr":"Colombie","ja":"コロンビア","it":"Colombia"},"wiki":"http://en.wikipedia.org/wiki/colombia"} \ No newline at end of file diff --git a/countryinfo/data/comoros.json b/countryinfo/data/comoros.json index cac8e3e..998a1f9 100644 --- a/countryinfo/data/comoros.json +++ b/countryinfo/data/comoros.json @@ -1 +1 @@ -{"name":"Comoros","altSpellings":["KM","Union of the Comoros","Union des Comores","Udzima wa Komori","al-Ittiḥād al-Qumurī"],"area":1862,"borders":[],"callingCodes":["269"],"capital":"Moroni","currencies":["KMF"],"demonym":"Comoran","flag":"","geoJSON":{},"ISO":{"alpha2":"KM","alpha3":"COM"},"languages":["ar","fr"],"latlng":[-12.16666666,44.25],"nativeName":"Komori","population":763952,"provinces":["Anjouan (Nzwani)","Domoni","Fomboni","Grande Comore (Njazidja)","Moheli (Mwali)","Moroni","Moutsamoudou"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".km"],"translations":{"de":"Union der Komoren","es":"Comoras","fr":"Comores","ja":"コモロ","it":"Comore"},"wiki":"http://en.wikipedia.org/wiki/comoros"} \ No newline at end of file +{"name":"Comoros","altSpellings":["KM","Union of the Comoros","Union des Comores","Udzima wa Komori","al-Ittiḥād al-Qumurī"],"area":1862,"borders":[],"callingCodes":["269"],"capital":"Moroni","capital_latlng":[-11.693126,43.254304],"currencies":["KMF"],"demonym":"Comoran","flag":"","geoJSON":{},"ISO":{"alpha2":"KM","alpha3":"COM"},"languages":["ar","fr"],"latlng":[-12.16666666,44.25],"nativeName":"Komori","population":763952,"provinces":["Anjouan (Nzwani)","Domoni","Fomboni","Grande Comore (Njazidja)","Moheli (Mwali)","Moroni","Moutsamoudou"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".km"],"translations":{"de":"Union der Komoren","es":"Comoras","fr":"Comores","ja":"コモロ","it":"Comore"},"wiki":"http://en.wikipedia.org/wiki/comoros"} \ No newline at end of file diff --git a/countryinfo/data/congo_democratic_republic_of_the.json b/countryinfo/data/congo_democratic_republic_of_the.json index 34a3758..0afba55 100644 --- a/countryinfo/data/congo_democratic_republic_of_the.json +++ b/countryinfo/data/congo_democratic_republic_of_the.json @@ -1 +1 @@ -{"name":"Republic of the Congo","altSpellings":["CG","Congo-Brazzaville"],"area":342000,"borders":["AGO","CMR","CAF","COD","GAB"],"callingCodes":["242"],"capital":"Brazzaville","currencies":["XAF"],"demonym":"Congolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COG","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}}]},"ISO":{"alpha2":"CG","alpha3":"COG"},"languages":["fr","ln"],"latlng":[-1,15],"nativeName":"République du Congo","population":4559000,"provinces":["Bandundu","Bas-Congo","Equateur","Kasai-Occidental","Kasai-Oriental","Katanga","Kinshasa","Maniema","Nord-Kivu","Orientale","Sud-Kivu"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cg"],"translations":{"de":"Kongo","es":"Congo","fr":"Congo","ja":"コンゴ共和国","it":"Congo"},"wiki":"http://en.wikipedia.org/wiki/congo_democratic_republic_of_the"} \ No newline at end of file +{"name":"Republic of the Congo","altSpellings":["CG","Congo-Brazzaville"],"area":342000,"borders":["AGO","CMR","CAF","COD","GAB"],"callingCodes":["242"],"capital":"Brazzaville","capital_latlng":[-4.269441,15.271226],"currencies":["XAF"],"demonym":"Congolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COG","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}}]},"ISO":{"alpha2":"CG","alpha3":"COG"},"languages":["fr","ln"],"latlng":[-1,15],"nativeName":"République du Congo","population":4559000,"provinces":["Bandundu","Bas-Congo","Equateur","Kasai-Occidental","Kasai-Oriental","Katanga","Kinshasa","Maniema","Nord-Kivu","Orientale","Sud-Kivu"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".cg"],"translations":{"de":"Kongo","es":"Congo","fr":"Congo","ja":"コンゴ共和国","it":"Congo"},"wiki":"http://en.wikipedia.org/wiki/congo_democratic_republic_of_the"} \ No newline at end of file diff --git a/countryinfo/data/congo_republic_of_the.json b/countryinfo/data/congo_republic_of_the.json index de0602c..e2f0732 100644 --- a/countryinfo/data/congo_republic_of_the.json +++ b/countryinfo/data/congo_republic_of_the.json @@ -1 +1 @@ -{"name":"Democratic Republic of the Congo","altSpellings":["CD","DR Congo","Congo-Kinshasa","DRC"],"area":2344858,"borders":["AGO","BDI","CAF","COG","RWA","SSD","TZA","UGA","ZMB"],"callingCodes":["243"],"capital":"Kinshasa","currencies":["CDF"],"demonym":"Congolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COD","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}}]},"ISO":{"alpha2":"CD","alpha3":"COD"},"languages":["fr","ln","kg","sw","lu"],"latlng":[0,25],"nativeName":"République démocratique du Congo","population":69360000,"provinces":["Bouenza","Brazzaville","Cuvette","Kouilou","Lekoumou","Likouala","Niari","Plateaux","Pool","Sangha"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00","UTC+02:00"],"tld":[".cd"],"translations":{"de":"Kongo (Dem. Rep.)","es":"Congo (Rep. Dem.)","fr":"Congo (Rép. dém.)","ja":"コンゴ民主共和国","it":"Congo (Rep. Dem.)"},"wiki":"http://en.wikipedia.org/wiki/congo_republic_of_the"} \ No newline at end of file +{"name":"Democratic Republic of the Congo","altSpellings":["CD","DR Congo","Congo-Kinshasa","DRC"],"area":2344858,"borders":["AGO","BDI","CAF","COG","RWA","SSD","TZA","UGA","ZMB"],"callingCodes":["243"],"capital":"Kinshasa","capital_latlng":[-4.321706,15.312597],"currencies":["CDF"],"demonym":"Congolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"COD","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}}]},"ISO":{"alpha2":"CD","alpha3":"COD"},"languages":["fr","ln","kg","sw","lu"],"latlng":[0,25],"nativeName":"République démocratique du Congo","population":69360000,"provinces":["Bouenza","Brazzaville","Cuvette","Kouilou","Lekoumou","Likouala","Niari","Plateaux","Pool","Sangha"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00","UTC+02:00"],"tld":[".cd"],"translations":{"de":"Kongo (Dem. Rep.)","es":"Congo (Rep. Dem.)","fr":"Congo (Rép. dém.)","ja":"コンゴ民主共和国","it":"Congo (Rep. Dem.)"},"wiki":"http://en.wikipedia.org/wiki/congo_republic_of_the"} \ No newline at end of file diff --git a/countryinfo/data/cook_islands.json b/countryinfo/data/cook_islands.json index f6faec7..d20596e 100644 --- a/countryinfo/data/cook_islands.json +++ b/countryinfo/data/cook_islands.json @@ -1 +1 @@ -{"name":"Cook Islands","altSpellings":["CK","Kūki 'Āirani"],"area":236,"borders":[],"callingCodes":["682"],"capital":"Avarua","currencies":["NZD"],"demonym":"Cook Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"CK","alpha3":"COK"},"languages":["en"],"latlng":[-21.23333333,-159.76666666],"nativeName":"Cook Islands","population":14974,"provinces":["Aitutaki","Atiu","Avarua","Mangaia","Manihiki","Manuae","Mauke","Mitiaro","Nassau Island","Palmerston","Penrhyn","Pukapuka","Rakahanga","Rarotonga","Suwarrow","Takutea"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".ck"],"translations":{"de":"Cookinseln","es":"Islas Cook","fr":"Îles Cook","ja":"クック諸島","it":"Isole Cook"},"wiki":"http://en.wikipedia.org/wiki/cook_islands"} \ No newline at end of file +{"name":"Cook Islands","altSpellings":["CK","Kūki 'Āirani"],"area":236,"borders":[],"callingCodes":["682"],"capital":"Avarua","capital_latlng":[-21.207474,-159.770814],"currencies":["NZD"],"demonym":"Cook Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"CK","alpha3":"COK"},"languages":["en"],"latlng":[-21.23333333,-159.76666666],"nativeName":"Cook Islands","population":14974,"provinces":["Aitutaki","Atiu","Avarua","Mangaia","Manihiki","Manuae","Mauke","Mitiaro","Nassau Island","Palmerston","Penrhyn","Pukapuka","Rakahanga","Rarotonga","Suwarrow","Takutea"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".ck"],"translations":{"de":"Cookinseln","es":"Islas Cook","fr":"Îles Cook","ja":"クック諸島","it":"Isole Cook"},"wiki":"http://en.wikipedia.org/wiki/cook_islands"} \ No newline at end of file diff --git a/countryinfo/data/costa_rica.json b/countryinfo/data/costa_rica.json index 1dafc88..8d61702 100644 --- a/countryinfo/data/costa_rica.json +++ b/countryinfo/data/costa_rica.json @@ -1 +1 @@ -{"name":"Costa Rica","altSpellings":["CR","Republic of Costa Rica","República de Costa Rica"],"area":51100,"borders":["NIC","PAN"],"callingCodes":["506"],"capital":"San José","currencies":["CRC"],"demonym":"Costa Rican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CRI","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}}]},"ISO":{"alpha2":"CR","alpha3":"CRI"},"languages":["es"],"latlng":[10,-84],"nativeName":"Costa Rica","population":4713168,"provinces":["Alajuela","Cartago","Guanacaste","Heredia","Limon","Puntarenas","San Jose"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".cr"],"translations":{"de":"Costa Rica","es":"Costa Rica","fr":"Costa Rica","ja":"コスタリカ","it":"Costa Rica"},"wiki":"http://en.wikipedia.org/wiki/costa_rica"} \ No newline at end of file +{"name":"Costa Rica","altSpellings":["CR","Republic of Costa Rica","República de Costa Rica"],"area":51100,"borders":["NIC","PAN"],"callingCodes":["506"],"capital":"San José","capital_latlng":[9.932543,-84.079578],"currencies":["CRC"],"demonym":"Costa Rican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CRI","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}}]},"ISO":{"alpha2":"CR","alpha3":"CRI"},"languages":["es"],"latlng":[10,-84],"nativeName":"Costa Rica","population":4713168,"provinces":["Alajuela","Cartago","Guanacaste","Heredia","Limon","Puntarenas","San Jose"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".cr"],"translations":{"de":"Costa Rica","es":"Costa Rica","fr":"Costa Rica","ja":"コスタリカ","it":"Costa Rica"},"wiki":"http://en.wikipedia.org/wiki/costa_rica"} \ No newline at end of file diff --git a/countryinfo/data/cote_d_ivoire.json b/countryinfo/data/cote_d_ivoire.json index 5db5565..34c202d 100644 --- a/countryinfo/data/cote_d_ivoire.json +++ b/countryinfo/data/cote_d_ivoire.json @@ -1 +1 @@ -{"name":"Ivory Coast","altSpellings":["CI","Ivory Coast","Republic of Côte d'Ivoire","République de Côte d'Ivoire"],"area":322463,"borders":["BFA","GHA","GIN","LBR","MLI"],"callingCodes":["225"],"capital":"Yamoussoukro","currencies":["XOF"],"demonym":"Ivorian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CIV","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}}]},"ISO":{"alpha2":"CI","alpha3":"CIV"},"languages":["fr"],"latlng":[8,-5],"nativeName":"Côte d'Ivoire","population":23821000,"provinces":["Abengourou","Abidjan","Aboisso","Adiake'","Adzope","Agboville","Agnibilekrou","Ale'pe'","Bangolo","Beoumi","Biankouma","Bocanda","Bondoukou","Bongouanou","Bouafle","Bouake","Bouna","Boundiali","Dabakala","Dabon","Daloa","Danane","Daoukro","Dimbokro","Divo","Duekoue","Ferkessedougou","Gagnoa","Grand Bassam","Grand-Lahou","Guiglo","Issia","Jacqueville","Katiola","Korhogo","Lakota","Man","Mankono","Mbahiakro","Odienne","Oume","Sakassou","San-Pedro","Sassandra","Seguela","Sinfra","Soubre","Tabou","Tanda","Tiassale","Tiebissou","Tingrela","Touba","Toulepleu","Toumodi","Vavoua","Yamoussoukro","Zuenoula"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".ci"],"translations":{"de":"Elfenbeinküste","es":"Costa de Marfil","fr":"Côte d'Ivoire","ja":"コートジボワール","it":"Costa D'Avorio"},"wiki":"http://en.wikipedia.org/wiki/cote_d_ivoire"} \ No newline at end of file +{"name":"Ivory Coast","altSpellings":["CI","Ivory Coast","Republic of Côte d'Ivoire","République de Côte d'Ivoire"],"area":322463,"borders":["BFA","GHA","GIN","LBR","MLI"],"callingCodes":["225"],"capital":"Yamoussoukro","capital_latlng":[6.809107,-5.273263],"currencies":["XOF"],"demonym":"Ivorian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CIV","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}}]},"ISO":{"alpha2":"CI","alpha3":"CIV"},"languages":["fr"],"latlng":[8,-5],"nativeName":"Côte d'Ivoire","population":23821000,"provinces":["Abengourou","Abidjan","Aboisso","Adiake'","Adzope","Agboville","Agnibilekrou","Ale'pe'","Bangolo","Beoumi","Biankouma","Bocanda","Bondoukou","Bongouanou","Bouafle","Bouake","Bouna","Boundiali","Dabakala","Dabon","Daloa","Danane","Daoukro","Dimbokro","Divo","Duekoue","Ferkessedougou","Gagnoa","Grand Bassam","Grand-Lahou","Guiglo","Issia","Jacqueville","Katiola","Korhogo","Lakota","Man","Mankono","Mbahiakro","Odienne","Oume","Sakassou","San-Pedro","Sassandra","Seguela","Sinfra","Soubre","Tabou","Tanda","Tiassale","Tiebissou","Tingrela","Touba","Toulepleu","Toumodi","Vavoua","Yamoussoukro","Zuenoula"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".ci"],"translations":{"de":"Elfenbeinküste","es":"Costa de Marfil","fr":"Côte d'Ivoire","ja":"コートジボワール","it":"Costa D'Avorio"},"wiki":"http://en.wikipedia.org/wiki/cote_d_ivoire"} \ No newline at end of file diff --git a/countryinfo/data/croatia.json b/countryinfo/data/croatia.json index eb2ac5a..ec59754 100644 --- a/countryinfo/data/croatia.json +++ b/countryinfo/data/croatia.json @@ -1 +1 @@ -{"name":"Croatia","altSpellings":["HR","Hrvatska","Republic of Croatia","Republika Hrvatska"],"area":56594,"borders":["BIH","HUN","MNE","SRB","SVN"],"callingCodes":["385"],"capital":"Zagreb","currencies":["HRK"],"demonym":"Croatian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HRV","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]}}]},"ISO":{"alpha2":"HR","alpha3":"HRV"},"languages":["hr"],"latlng":[45.16666666,15.5],"nativeName":"Hrvatska","population":4267558,"provinces":["Bjelovarsko-Bilogorska Zupanija","Brodsko-Posavska Zupanija","Dubrovacko-Neretvanska Zupanija","Istarska Zupanija","Karlovacka Zupanija","Koprivnicko-Krizevacka Zupanija","Krapinsko-Zagorska Zupanija","Licko-Senjska Zupanija","Medimurska Zupanija","Osjecko-Baranjska Zupanija","Pozesko-Slavonska Zupanija","Primorsko-Goranska Zupanija","Sibensko-Kninska Zupanija","Sisacko-Moslavacka Zupanija","Splitsko-Dalmatinska Zupanija","Varazdinska Zupanija","Viroviticko-Podravska Zupanija","Vukovarsko-Srijemska Zupanija","Zadarska Zupanija","Zagreb","Zagrebacka Zupanija"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".hr"],"translations":{"de":"Kroatien","es":"Croacia","fr":"Croatie","ja":"クロアチア","it":"Croazia"},"wiki":"http://en.wikipedia.org/wiki/croatia"} \ No newline at end of file +{"name":"Croatia","altSpellings":["HR","Hrvatska","Republic of Croatia","Republika Hrvatska"],"area":56594,"borders":["BIH","HUN","MNE","SRB","SVN"],"callingCodes":["385"],"capital":"Zagreb","capital_latlng":[45.813177,15.977048],"currencies":["HRK"],"demonym":"Croatian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HRV","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]}}]},"ISO":{"alpha2":"HR","alpha3":"HRV"},"languages":["hr"],"latlng":[45.16666666,15.5],"nativeName":"Hrvatska","population":4267558,"provinces":["Bjelovarsko-Bilogorska Zupanija","Brodsko-Posavska Zupanija","Dubrovacko-Neretvanska Zupanija","Istarska Zupanija","Karlovacka Zupanija","Koprivnicko-Krizevacka Zupanija","Krapinsko-Zagorska Zupanija","Licko-Senjska Zupanija","Medimurska Zupanija","Osjecko-Baranjska Zupanija","Pozesko-Slavonska Zupanija","Primorsko-Goranska Zupanija","Sibensko-Kninska Zupanija","Sisacko-Moslavacka Zupanija","Splitsko-Dalmatinska Zupanija","Varazdinska Zupanija","Viroviticko-Podravska Zupanija","Vukovarsko-Srijemska Zupanija","Zadarska Zupanija","Zagreb","Zagrebacka Zupanija"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".hr"],"translations":{"de":"Kroatien","es":"Croacia","fr":"Croatie","ja":"クロアチア","it":"Croazia"},"wiki":"http://en.wikipedia.org/wiki/croatia"} \ No newline at end of file diff --git a/countryinfo/data/cuba.json b/countryinfo/data/cuba.json index 9fdbce8..78a3a20 100644 --- a/countryinfo/data/cuba.json +++ b/countryinfo/data/cuba.json @@ -1 +1 @@ -{"name":"Cuba","altSpellings":["CU","Republic of Cuba","República de Cuba"],"area":109884,"borders":[],"callingCodes":["53"],"capital":"Havana","currencies":["CUC","CUP"],"demonym":"Cuban","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CUB","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}}]},"ISO":{"alpha2":"CU","alpha3":"CUB"},"languages":["es"],"latlng":[21.5,-80],"nativeName":"Cuba","population":11210064,"provinces":["Camaguey","Ciego de Avila","Cienfuegos","Ciudad de La Habana","Granma","Guantanamo","Holguin","Isla de la Juventud","La Habana","Las Tunas","Matanzas","Pinar del Rio","Sancti Spiritus","Santiago de Cuba","Villa Clara"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".cu"],"translations":{"de":"Kuba","es":"Cuba","fr":"Cuba","ja":"キューバ","it":"Cuba"},"wiki":"http://en.wikipedia.org/wiki/cuba"} \ No newline at end of file +{"name":"Cuba","altSpellings":["CU","Republic of Cuba","República de Cuba"],"area":109884,"borders":[],"callingCodes":["53"],"capital":"Havana","capital_latlng":[23.135305,-82.358963],"currencies":["CUC","CUP"],"demonym":"Cuban","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CUB","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}}]},"ISO":{"alpha2":"CU","alpha3":"CUB"},"languages":["es"],"latlng":[21.5,-80],"nativeName":"Cuba","population":11210064,"provinces":["Camaguey","Ciego de Avila","Cienfuegos","Ciudad de La Habana","Granma","Guantanamo","Holguin","Isla de la Juventud","La Habana","Las Tunas","Matanzas","Pinar del Rio","Sancti Spiritus","Santiago de Cuba","Villa Clara"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".cu"],"translations":{"de":"Kuba","es":"Cuba","fr":"Cuba","ja":"キューバ","it":"Cuba"},"wiki":"http://en.wikipedia.org/wiki/cuba"} \ No newline at end of file diff --git a/countryinfo/data/cyprus.json b/countryinfo/data/cyprus.json index 738fba1..3233ddb 100644 --- a/countryinfo/data/cyprus.json +++ b/countryinfo/data/cyprus.json @@ -1 +1 @@ -{"name":"Cyprus","altSpellings":["CY","Kýpros","Kıbrıs","Republic of Cyprus","Κυπριακή Δημοκρατία","Kıbrıs Cumhuriyeti"],"area":9251,"borders":["GBR"],"callingCodes":["357"],"capital":"Nicosia","currencies":["EUR"],"demonym":"Cypriot","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CYP","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}}]},"ISO":{"alpha2":"CY","alpha3":"CYP"},"languages":["el","tr","hy"],"latlng":[35,33],"nativeName":"Κύπρος","population":858000,"provinces":["Famagusta","Kyrenia","Larnaca","Limassol","Nicosia","Paphos"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+02:00"],"tld":[".cy"],"translations":{"de":"Zypern","es":"Chipre","fr":"Chypre","ja":"キプロス","it":"Cipro"},"wiki":"http://en.wikipedia.org/wiki/cyprus"} \ No newline at end of file +{"name":"Cyprus","altSpellings":["CY","Kýpros","Kıbrıs","Republic of Cyprus","Κυπριακή Δημοκρατία","Kıbrıs Cumhuriyeti"],"area":9251,"borders":["GBR"],"callingCodes":["357"],"capital":"Nicosia","capital_latlng":[35.17393,33.364726],"currencies":["EUR"],"demonym":"Cypriot","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CYP","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}}]},"ISO":{"alpha2":"CY","alpha3":"CYP"},"languages":["el","tr","hy"],"latlng":[35,33],"nativeName":"Κύπρος","population":858000,"provinces":["Famagusta","Kyrenia","Larnaca","Limassol","Nicosia","Paphos"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+02:00"],"tld":[".cy"],"translations":{"de":"Zypern","es":"Chipre","fr":"Chypre","ja":"キプロス","it":"Cipro"},"wiki":"http://en.wikipedia.org/wiki/cyprus"} \ No newline at end of file diff --git a/countryinfo/data/czeck_republic.json b/countryinfo/data/czeck_republic.json index 896206f..7a0ad6e 100644 --- a/countryinfo/data/czeck_republic.json +++ b/countryinfo/data/czeck_republic.json @@ -1 +1 @@ -{"name":"Czech Republic","altSpellings":["CZ","Česká republika","Česko"],"area":78865,"borders":["AUT","DEU","POL","SVK"],"callingCodes":["420"],"capital":"Prague","currencies":["CZK"],"demonym":"Czech","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CZE","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}}]},"ISO":{"alpha2":"CZ","alpha3":"CZE"},"languages":["cs","sk"],"latlng":[49.75,15.5],"nativeName":"Česká republika","population":10521600,"provinces":["Brnensky","Budejovicky","Jihlavsky","Karlovarsky","Kralovehradecky","Liberecky","Olomoucky","Ostravsky","Pardubicky","Plzensky","Praha","Stredocesky","Ustecky","Zlinsky"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".cz"],"translations":{"de":"Tschechische Republik","es":"República Checa","fr":"République tchèque","ja":"チェコ","it":"Repubblica Ceca"},"wiki":"http://en.wikipedia.org/wiki/czeck_republic"} \ No newline at end of file +{"name":"Czech Republic","altSpellings":["CZ","Česká republika","Česko"],"area":78865,"borders":["AUT","DEU","POL","SVK"],"callingCodes":["420"],"capital":"Prague","capital_latlng":[50.087465,14.421254],"currencies":["CZK"],"demonym":"Czech","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CZE","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}}]},"ISO":{"alpha2":"CZ","alpha3":"CZE"},"languages":["cs","sk"],"latlng":[49.75,15.5],"nativeName":"Česká republika","population":10521600,"provinces":["Brnensky","Budejovicky","Jihlavsky","Karlovarsky","Kralovehradecky","Liberecky","Olomoucky","Ostravsky","Pardubicky","Plzensky","Praha","Stredocesky","Ustecky","Zlinsky"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".cz"],"translations":{"de":"Tschechische Republik","es":"República Checa","fr":"République tchèque","ja":"チェコ","it":"Repubblica Ceca"},"wiki":"http://en.wikipedia.org/wiki/czeck_republic"} \ No newline at end of file diff --git a/countryinfo/data/denmark.json b/countryinfo/data/denmark.json index 1bf1550..8d92e83 100644 --- a/countryinfo/data/denmark.json +++ b/countryinfo/data/denmark.json @@ -1 +1 @@ -{"name":"Denmark","altSpellings":["DK","Danmark","Kingdom of Denmark","Kongeriget Danmark"],"area":43094,"borders":["DEU"],"callingCodes":["45"],"capital":"Copenhagen","currencies":["DKK"],"demonym":"Danish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DNK","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}}]},"ISO":{"alpha2":"DK","alpha3":"DNK"},"languages":["da"],"latlng":[56,10],"nativeName":"Danmark","population":5655750,"provinces":["Arhus","Bornholm","Fredericksberg","Frederiksborg","Fyn","Kobenhavn","Kobenhavns","Nordjylland","Ribe","Ringkobing","Roskilde","Sonderjylland","Storstrom","Vejle","Vestsjalland","Viborg"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC−04:00","UTC−03:00","UTC−01:00","UTC","UTC+01:00"],"tld":[".dk"],"translations":{"de":"Dänemark","es":"Dinamarca","fr":"Danemark","ja":"デンマーク","it":"Danimarca"},"wiki":"http://en.wikipedia.org/wiki/denmark"} \ No newline at end of file +{"name":"Denmark","altSpellings":["DK","Danmark","Kingdom of Denmark","Kongeriget Danmark"],"area":43094,"borders":["DEU"],"callingCodes":["45"],"capital":"Copenhagen","capital_latlng":[55.686724,12.570072],"currencies":["DKK"],"demonym":"Danish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DNK","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}}]},"ISO":{"alpha2":"DK","alpha3":"DNK"},"languages":["da"],"latlng":[56,10],"nativeName":"Danmark","population":5655750,"provinces":["Arhus","Bornholm","Fredericksberg","Frederiksborg","Fyn","Kobenhavn","Kobenhavns","Nordjylland","Ribe","Ringkobing","Roskilde","Sonderjylland","Storstrom","Vejle","Vestsjalland","Viborg"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC−04:00","UTC−03:00","UTC−01:00","UTC","UTC+01:00"],"tld":[".dk"],"translations":{"de":"Dänemark","es":"Dinamarca","fr":"Danemark","ja":"デンマーク","it":"Danimarca"},"wiki":"http://en.wikipedia.org/wiki/denmark"} \ No newline at end of file diff --git a/countryinfo/data/djibouti.json b/countryinfo/data/djibouti.json index 96fd5fa..8836999 100644 --- a/countryinfo/data/djibouti.json +++ b/countryinfo/data/djibouti.json @@ -1 +1 @@ -{"name":"Djibouti","altSpellings":["DJ","Jabuuti","Gabuuti","Republic of Djibouti","République de Djibouti","Gabuutih Ummuuno","Jamhuuriyadda Jabuuti"],"area":23200,"borders":["ERI","ETH","SOM"],"callingCodes":["253"],"capital":"Djibouti","currencies":["DJF"],"demonym":"Djibouti","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DJI","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}}]},"ISO":{"alpha2":"DJ","alpha3":"DJI"},"languages":["fr","ar"],"latlng":[11.5,43],"nativeName":"Djibouti","population":886000,"provinces":["'Ali Sabih","Dikhil","Djibouti","Obock","Tadjoura"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".dj"],"translations":{"de":"Dschibuti","es":"Yibuti","fr":"Djibouti","ja":"ジブチ","it":"Gibuti"},"wiki":"http://en.wikipedia.org/wiki/djibouti"} \ No newline at end of file +{"name":"Djibouti","altSpellings":["DJ","Jabuuti","Gabuuti","Republic of Djibouti","République de Djibouti","Gabuutih Ummuuno","Jamhuuriyadda Jabuuti"],"area":23200,"borders":["ERI","ETH","SOM"],"callingCodes":["253"],"capital":"Djibouti","capital_latlng":[11.814597,42.845306],"currencies":["DJF"],"demonym":"Djibouti","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DJI","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}}]},"ISO":{"alpha2":"DJ","alpha3":"DJI"},"languages":["fr","ar"],"latlng":[11.5,43],"nativeName":"Djibouti","population":886000,"provinces":["'Ali Sabih","Dikhil","Djibouti","Obock","Tadjoura"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".dj"],"translations":{"de":"Dschibuti","es":"Yibuti","fr":"Djibouti","ja":"ジブチ","it":"Gibuti"},"wiki":"http://en.wikipedia.org/wiki/djibouti"} \ No newline at end of file diff --git a/countryinfo/data/dominica.json b/countryinfo/data/dominica.json index 9437cd5..f4ec07e 100644 --- a/countryinfo/data/dominica.json +++ b/countryinfo/data/dominica.json @@ -1 +1 @@ -{"name":"Dominica","altSpellings":["DM","Dominique","Wai‘tu kubuli","Commonwealth of Dominica"],"area":751,"borders":[],"callingCodes":["1767"],"capital":"Roseau","currencies":["XCD"],"demonym":"Dominican","flag":"","geoJSON":{},"ISO":{"alpha2":"DM","alpha3":"DMA"},"languages":["en"],"latlng":[15.41666666,-61.33333333],"nativeName":"Dominica","population":71293,"provinces":["Saint Andrew","Saint David","Saint George","Saint John","Saint Joseph","Saint Luke","Saint Mark","Saint Patrick","Saint Paul","Saint Peter"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".dm"],"translations":{"de":"Dominica","es":"Dominica","fr":"Dominique","ja":"ドミニカ国","it":"Dominica"},"wiki":"http://en.wikipedia.org/wiki/dominica"} \ No newline at end of file +{"name":"Dominica","altSpellings":["DM","Dominique","Wai‘tu kubuli","Commonwealth of Dominica"],"area":751,"borders":[],"callingCodes":["1767"],"capital":"Roseau","capital_latlng":[48.771037,-95.769788],"currencies":["XCD"],"demonym":"Dominican","flag":"","geoJSON":{},"ISO":{"alpha2":"DM","alpha3":"DMA"},"languages":["en"],"latlng":[15.41666666,-61.33333333],"nativeName":"Dominica","population":71293,"provinces":["Saint Andrew","Saint David","Saint George","Saint John","Saint Joseph","Saint Luke","Saint Mark","Saint Patrick","Saint Paul","Saint Peter"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".dm"],"translations":{"de":"Dominica","es":"Dominica","fr":"Dominique","ja":"ドミニカ国","it":"Dominica"},"wiki":"http://en.wikipedia.org/wiki/dominica"} \ No newline at end of file diff --git a/countryinfo/data/dominican_republic.json b/countryinfo/data/dominican_republic.json index f3cfe71..50d0453 100644 --- a/countryinfo/data/dominican_republic.json +++ b/countryinfo/data/dominican_republic.json @@ -1 +1 @@ -{"name":"Dominican Republic","altSpellings":["DO"],"area":48671,"borders":["HTI"],"callingCodes":["1809","1829","1849"],"capital":"Santo Domingo","currencies":["DOP"],"demonym":"Dominican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DOM","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}}]},"ISO":{"alpha2":"DO","alpha3":"DOM"},"languages":["es"],"latlng":[19,-70.66666666],"nativeName":"República Dominicana","population":10378267,"provinces":["Azua","Baoruco","Barahona","Dajabon","Distrito Nacional","Duarte","El Seibo","Elias Pina","Espaillat","Hato Mayor","Independencia","La Altagracia","La Romana","La Vega","Maria Trinidad Sanchez","Monsenor Nouel","Monte Cristi","Monte Plata","Pedernales","Peravia","Puerto Plata","Salcedo","Samana","San Cristobal","San Juan","San Pedro de Macoris","Sanchez Ramirez","Santiago","Santiago Rodriguez","Valverde"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".do"],"translations":{"de":"Dominikanische Republik","es":"República Dominicana","fr":"République dominicaine","ja":"ドミニカ共和国","it":"Repubblica Dominicana"},"wiki":"http://en.wikipedia.org/wiki/dominican_republic"} \ No newline at end of file +{"name":"Dominican Republic","altSpellings":["DO"],"area":48671,"borders":["HTI"],"callingCodes":["1809","1829","1849"],"capital":"Santo Domingo","capital_latlng":[18.480197,-69.942111],"currencies":["DOP"],"demonym":"Dominican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DOM","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}}]},"ISO":{"alpha2":"DO","alpha3":"DOM"},"languages":["es"],"latlng":[19,-70.66666666],"nativeName":"República Dominicana","population":10378267,"provinces":["Azua","Baoruco","Barahona","Dajabon","Distrito Nacional","Duarte","El Seibo","Elias Pina","Espaillat","Hato Mayor","Independencia","La Altagracia","La Romana","La Vega","Maria Trinidad Sanchez","Monsenor Nouel","Monte Cristi","Monte Plata","Pedernales","Peravia","Puerto Plata","Salcedo","Samana","San Cristobal","San Juan","San Pedro de Macoris","Sanchez Ramirez","Santiago","Santiago Rodriguez","Valverde"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".do"],"translations":{"de":"Dominikanische Republik","es":"República Dominicana","fr":"République dominicaine","ja":"ドミニカ共和国","it":"Repubblica Dominicana"},"wiki":"http://en.wikipedia.org/wiki/dominican_republic"} \ No newline at end of file diff --git a/countryinfo/data/ecuador.json b/countryinfo/data/ecuador.json index 9c5ec78..d9a3b23 100644 --- a/countryinfo/data/ecuador.json +++ b/countryinfo/data/ecuador.json @@ -1 +1 @@ -{"name":"Ecuador","altSpellings":["EC","Republic of Ecuador","República del Ecuador"],"area":276841,"borders":["COL","PER"],"callingCodes":["593"],"capital":"Quito","currencies":["USD"],"demonym":"Ecuadorean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ECU","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}}]},"ISO":{"alpha2":"EC","alpha3":"ECU"},"languages":["es"],"latlng":[-2,-77.5],"nativeName":"Ecuador","population":15888900,"provinces":["Azuay","Bolivar","Canar","Carchi","Chimborazo","Cotopaxi","El Oro","Esmeraldas","Galapagos","Guayas","Imbabura","Loja","Los Rios","Manabi","Morona-Santiago","Napo","Orellana","Pastaza","Pichincha","Sucumbios","Tungurahua","Zamora-Chinchipe"],"region":"Americas","subregion":"South America","timezones":["UTC−06:00","UTC−05:00"],"tld":[".ec"],"translations":{"de":"Ecuador","es":"Ecuador","fr":"Équateur","ja":"エクアドル","it":"Ecuador"},"wiki":"http://en.wikipedia.org/wiki/ecuador"} \ No newline at end of file +{"name":"Ecuador","altSpellings":["EC","Republic of Ecuador","República del Ecuador"],"area":276841,"borders":["COL","PER"],"callingCodes":["593"],"capital":"Quito","capital_latlng":[-0.220164,-78.512327],"currencies":["USD"],"demonym":"Ecuadorean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ECU","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}}]},"ISO":{"alpha2":"EC","alpha3":"ECU"},"languages":["es"],"latlng":[-2,-77.5],"nativeName":"Ecuador","population":15888900,"provinces":["Azuay","Bolivar","Canar","Carchi","Chimborazo","Cotopaxi","El Oro","Esmeraldas","Galapagos","Guayas","Imbabura","Loja","Los Rios","Manabi","Morona-Santiago","Napo","Orellana","Pastaza","Pichincha","Sucumbios","Tungurahua","Zamora-Chinchipe"],"region":"Americas","subregion":"South America","timezones":["UTC−06:00","UTC−05:00"],"tld":[".ec"],"translations":{"de":"Ecuador","es":"Ecuador","fr":"Équateur","ja":"エクアドル","it":"Ecuador"},"wiki":"http://en.wikipedia.org/wiki/ecuador"} \ No newline at end of file diff --git a/countryinfo/data/egypt.json b/countryinfo/data/egypt.json index 17ca760..d4b29e4 100644 --- a/countryinfo/data/egypt.json +++ b/countryinfo/data/egypt.json @@ -1 +1 @@ -{"name":"Egypt","altSpellings":["EG","Arab Republic of Egypt"],"area":1002450,"borders":["ISR","LBY","SDN"],"callingCodes":["20"],"capital":"Cairo","currencies":["EGP"],"demonym":"Egyptian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"EGY","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}}]},"ISO":{"alpha2":"EG","alpha3":"EGY"},"languages":["ar"],"latlng":[27,30],"nativeName":"مصر‎","population":87668100,"provinces":["Ad Daqahliyah","Al Bahr al Ahmar","Al Buhayrah","Al Fayyum","Al Gharbiyah","Al Iskandariyah","Al Isma'iliyah","Al Jizah","Al Minufiyah","Al Minya","Al Qahirah","Al Qalyubiyah","Al Wadi al Jadid","As Suways","Ash Sharqiyah","Aswan","Asyut","Bani Suwayf","Bur Sa'id","Dumyat","Janub Sina'","Kafr ash Shaykh","Matruh","Qina","Shamal Sina'","Suhaj"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+02:00"],"tld":[".eg"],"translations":{"de":"Ägypten","es":"Egipto","fr":"Égypte","ja":"エジプト","it":"Egitto"},"wiki":"http://en.wikipedia.org/wiki/egypt"} \ No newline at end of file +{"name":"Egypt","altSpellings":["EG","Arab Republic of Egypt"],"area":1002450,"borders":["ISR","LBY","SDN"],"callingCodes":["20"],"capital":"Cairo","capital_latlng":[30.048819,31.243666],"currencies":["EGP"],"demonym":"Egyptian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"EGY","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}}]},"ISO":{"alpha2":"EG","alpha3":"EGY"},"languages":["ar"],"latlng":[27,30],"nativeName":"مصر‎","population":87668100,"provinces":["Ad Daqahliyah","Al Bahr al Ahmar","Al Buhayrah","Al Fayyum","Al Gharbiyah","Al Iskandariyah","Al Isma'iliyah","Al Jizah","Al Minufiyah","Al Minya","Al Qahirah","Al Qalyubiyah","Al Wadi al Jadid","As Suways","Ash Sharqiyah","Aswan","Asyut","Bani Suwayf","Bur Sa'id","Dumyat","Janub Sina'","Kafr ash Shaykh","Matruh","Qina","Shamal Sina'","Suhaj"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+02:00"],"tld":[".eg"],"translations":{"de":"Ägypten","es":"Egipto","fr":"Égypte","ja":"エジプト","it":"Egitto"},"wiki":"http://en.wikipedia.org/wiki/egypt"} \ No newline at end of file diff --git a/countryinfo/data/el_salvador.json b/countryinfo/data/el_salvador.json index b2c538b..5d7029c 100644 --- a/countryinfo/data/el_salvador.json +++ b/countryinfo/data/el_salvador.json @@ -1 +1 @@ -{"name":"El Salvador","altSpellings":["SV","Republic of El Salvador","República de El Salvador"],"area":21041,"borders":["GTM","HND"],"callingCodes":["503"],"capital":"San Salvador","currencies":["SVC","USD"],"demonym":"Salvadoran","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLV","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]}}]},"ISO":{"alpha2":"SV","alpha3":"SLV"},"languages":["es"],"latlng":[13.83333333,-88.91666666],"nativeName":"El Salvador","population":6401240,"provinces":["Ahuachapan","Cabanas","Chalatenango","Cuscatlan","La Libertad","La Paz","La Union","Morazan","San Miguel","San Salvador","San Vicente","Santa Ana","Sonsonate","Usulutan"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".sv"],"translations":{"de":"El Salvador","es":"El Salvador","fr":"Salvador","ja":"エルサルバドル","it":"El Salvador"},"wiki":"http://en.wikipedia.org/wiki/el_salvador"} \ No newline at end of file +{"name":"El Salvador","altSpellings":["SV","Republic of El Salvador","República de El Salvador"],"area":21041,"borders":["GTM","HND"],"callingCodes":["503"],"capital":"San Salvador","capital_latlng":[13.698994,-89.191425],"currencies":["SVC","USD"],"demonym":"Salvadoran","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLV","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]}}]},"ISO":{"alpha2":"SV","alpha3":"SLV"},"languages":["es"],"latlng":[13.83333333,-88.91666666],"nativeName":"El Salvador","population":6401240,"provinces":["Ahuachapan","Cabanas","Chalatenango","Cuscatlan","La Libertad","La Paz","La Union","Morazan","San Miguel","San Salvador","San Vicente","Santa Ana","Sonsonate","Usulutan"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".sv"],"translations":{"de":"El Salvador","es":"El Salvador","fr":"Salvador","ja":"エルサルバドル","it":"El Salvador"},"wiki":"http://en.wikipedia.org/wiki/el_salvador"} \ No newline at end of file diff --git a/countryinfo/data/equatorial_guinea.json b/countryinfo/data/equatorial_guinea.json index 3d70288..2af8006 100644 --- a/countryinfo/data/equatorial_guinea.json +++ b/countryinfo/data/equatorial_guinea.json @@ -1 +1 @@ -{"name":"Equatorial Guinea","altSpellings":["GQ","Republic of Equatorial Guinea","República de Guinea Ecuatorial","République de Guinée équatoriale","República da Guiné Equatorial"],"area":28051,"borders":["CMR","GAB"],"callingCodes":["240"],"capital":"Malabo","currencies":["XAF"],"demonym":"Equatorial Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GNQ","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}}]},"ISO":{"alpha2":"GQ","alpha3":"GNQ"},"languages":["es","fr"],"latlng":[2,10],"nativeName":"Guinea Ecuatorial","population":1430000,"provinces":["Annobon","Bioko Norte","Bioko Sur","Centro Sur","Kie-Ntem","Litoral","Wele-Nzas"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".gq"],"translations":{"de":"Äquatorial-Guinea","es":"Guinea Ecuatorial","fr":"Guinée-Équatoriale","ja":"赤道ギニア","it":"Guinea Equatoriale"},"wiki":"http://en.wikipedia.org/wiki/equatorial_guinea"} \ No newline at end of file +{"name":"Equatorial Guinea","altSpellings":["GQ","Republic of Equatorial Guinea","República de Guinea Ecuatorial","République de Guinée équatoriale","República da Guiné Equatorial"],"area":28051,"borders":["CMR","GAB"],"callingCodes":["240"],"capital":"Malabo","capital_latlng":[3.752828,8.780061],"currencies":["XAF"],"demonym":"Equatorial Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GNQ","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}}]},"ISO":{"alpha2":"GQ","alpha3":"GNQ"},"languages":["es","fr"],"latlng":[2,10],"nativeName":"Guinea Ecuatorial","population":1430000,"provinces":["Annobon","Bioko Norte","Bioko Sur","Centro Sur","Kie-Ntem","Litoral","Wele-Nzas"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".gq"],"translations":{"de":"Äquatorial-Guinea","es":"Guinea Ecuatorial","fr":"Guinée-Équatoriale","ja":"赤道ギニア","it":"Guinea Equatoriale"},"wiki":"http://en.wikipedia.org/wiki/equatorial_guinea"} \ No newline at end of file diff --git a/countryinfo/data/eritrea.json b/countryinfo/data/eritrea.json index 9c5e1bc..19068c7 100644 --- a/countryinfo/data/eritrea.json +++ b/countryinfo/data/eritrea.json @@ -1 +1 @@ -{"name":"Eritrea","altSpellings":["ER","State of Eritrea","ሃገረ ኤርትራ","Dawlat Iritriyá","ʾErtrā","Iritriyā",""],"area":117600,"borders":["DJI","ETH","SDN"],"callingCodes":["291"],"capital":"Asmara","currencies":["ERN"],"demonym":"Eritrean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ERI","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}}]},"ISO":{"alpha2":"ER","alpha3":"ERI"},"languages":["ti","ar","en"],"latlng":[15,39],"nativeName":"ኤርትራ","population":6536000,"provinces":["Akale Guzay","Barka","Denkel","Hamasen","Sahil","Semhar","Senhit","Seraye"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".er"],"translations":{"de":"Eritrea","es":"Eritrea","fr":"Érythrée","ja":"エリトリア","it":"Eritrea"},"wiki":"http://en.wikipedia.org/wiki/eritrea"} \ No newline at end of file +{"name":"Eritrea","altSpellings":["ER","State of Eritrea","ሃገረ ኤርትራ","Dawlat Iritriyá","ʾErtrā","Iritriyā",""],"area":117600,"borders":["DJI","ETH","SDN"],"callingCodes":["291"],"capital":"Asmara","capital_latlng":[15.338967,38.932676],"currencies":["ERN"],"demonym":"Eritrean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ERI","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}}]},"ISO":{"alpha2":"ER","alpha3":"ERI"},"languages":["ti","ar","en"],"latlng":[15,39],"nativeName":"ኤርትራ","population":6536000,"provinces":["Akale Guzay","Barka","Denkel","Hamasen","Sahil","Semhar","Senhit","Seraye"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".er"],"translations":{"de":"Eritrea","es":"Eritrea","fr":"Érythrée","ja":"エリトリア","it":"Eritrea"},"wiki":"http://en.wikipedia.org/wiki/eritrea"} \ No newline at end of file diff --git a/countryinfo/data/estonia.json b/countryinfo/data/estonia.json index 8b27cbc..c42a50d 100644 --- a/countryinfo/data/estonia.json +++ b/countryinfo/data/estonia.json @@ -1 +1 @@ -{"name":"Estonia","altSpellings":["EE","Eesti","Republic of Estonia","Eesti Vabariik"],"area":45227,"borders":["LVA","RUS"],"callingCodes":["372"],"capital":"Tallinn","currencies":["EUR"],"demonym":"Estonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"EST","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}}]},"ISO":{"alpha2":"EE","alpha3":"EST"},"languages":["et"],"latlng":[59,26],"nativeName":"Eesti","population":1315819,"provinces":["Harjumaa (Tallinn)","Hiiumaa (Kardla)","Ida-Virumaa (Johvi)","Jarvamaa (Paide)","Jogevamaa (Jogeva)","Laane-Virumaa (Rakvere)","Laanemaa (Haapsalu)","Parnumaa (Parnu)","Polvamaa (Polva)","Raplamaa (Rapla)","Saaremaa (Kuessaare)","Tartumaa (Tartu)","Valgamaa (Valga)","Viljandimaa (Viljandi)","Vorumaa (Voru)"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".ee"],"translations":{"de":"Estland","es":"Estonia","fr":"Estonie","ja":"エストニア","it":"Estonia"},"wiki":"http://en.wikipedia.org/wiki/estonia"} \ No newline at end of file +{"name":"Estonia","altSpellings":["EE","Eesti","Republic of Estonia","Eesti Vabariik"],"area":45227,"borders":["LVA","RUS"],"callingCodes":["372"],"capital":"Tallinn","capital_latlng":[59.437216,24.745369],"currencies":["EUR"],"demonym":"Estonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"EST","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}}]},"ISO":{"alpha2":"EE","alpha3":"EST"},"languages":["et"],"latlng":[59,26],"nativeName":"Eesti","population":1315819,"provinces":["Harjumaa (Tallinn)","Hiiumaa (Kardla)","Ida-Virumaa (Johvi)","Jarvamaa (Paide)","Jogevamaa (Jogeva)","Laane-Virumaa (Rakvere)","Laanemaa (Haapsalu)","Parnumaa (Parnu)","Polvamaa (Polva)","Raplamaa (Rapla)","Saaremaa (Kuessaare)","Tartumaa (Tartu)","Valgamaa (Valga)","Viljandimaa (Viljandi)","Vorumaa (Voru)"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".ee"],"translations":{"de":"Estland","es":"Estonia","fr":"Estonie","ja":"エストニア","it":"Estonia"},"wiki":"http://en.wikipedia.org/wiki/estonia"} \ No newline at end of file diff --git a/countryinfo/data/ethiopia.json b/countryinfo/data/ethiopia.json index 8621bb2..851c993 100644 --- a/countryinfo/data/ethiopia.json +++ b/countryinfo/data/ethiopia.json @@ -1 +1 @@ -{"name":"Ethiopia","altSpellings":["ET","ʾĪtyōṗṗyā","Federal Democratic Republic of Ethiopia","የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ"],"area":1104300,"borders":["DJI","ERI","KEN","SOM","SSD","SDN"],"callingCodes":["251"],"capital":"Addis Ababa","currencies":["ETB"],"demonym":"Ethiopian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ETH","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}}]},"ISO":{"alpha2":"ET","alpha3":"ETH"},"languages":["am"],"latlng":[8,38],"nativeName":"ኢትዮጵያ","population":87952991,"provinces":["Adis Abeba (Addis Ababa)","Afar","Amara","Dire Dawa","Gambela Hizboch","Hareri Hizb","Oromiya","Sumale","Tigray","YeDebub Biheroch Bihereseboch na Hizboch"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".et"],"translations":{"de":"Äthiopien","es":"Etiopía","fr":"Éthiopie","ja":"エチオピア","it":"Etiopia"},"wiki":"http://en.wikipedia.org/wiki/ethiopia"} \ No newline at end of file +{"name":"Ethiopia","altSpellings":["ET","ʾĪtyōṗṗyā","Federal Democratic Republic of Ethiopia","የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ"],"area":1104300,"borders":["DJI","ERI","KEN","SOM","SSD","SDN"],"callingCodes":["251"],"capital":"Addis Ababa","capital_latlng":[9.010793,38.761252],"currencies":["ETB"],"demonym":"Ethiopian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ETH","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}}]},"ISO":{"alpha2":"ET","alpha3":"ETH"},"languages":["am"],"latlng":[8,38],"nativeName":"ኢትዮጵያ","population":87952991,"provinces":["Adis Abeba (Addis Ababa)","Afar","Amara","Dire Dawa","Gambela Hizboch","Hareri Hizb","Oromiya","Sumale","Tigray","YeDebub Biheroch Bihereseboch na Hizboch"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".et"],"translations":{"de":"Äthiopien","es":"Etiopía","fr":"Éthiopie","ja":"エチオピア","it":"Etiopia"},"wiki":"http://en.wikipedia.org/wiki/ethiopia"} \ No newline at end of file diff --git a/countryinfo/data/falkland_islands_islas_malvinas.json b/countryinfo/data/falkland_islands_islas_malvinas.json index 158910e..032364d 100644 --- a/countryinfo/data/falkland_islands_islas_malvinas.json +++ b/countryinfo/data/falkland_islands_islas_malvinas.json @@ -1 +1 @@ -{"name":"Falkland Islands","altSpellings":["FK","Islas Malvinas"],"area":12173,"borders":[],"callingCodes":["500"],"capital":"Stanley","currencies":["FKP"],"demonym":"Falkland Islander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FLK","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}}]},"ISO":{"alpha2":"FK","alpha3":"FLK"},"languages":["en"],"latlng":[-51.75,-59],"nativeName":"Falkland Islands","population":3000,"provinces":["Falkland Islands (Islas Malvinas)"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".fk"],"translations":{"de":"Falklandinseln","es":"Islas Malvinas","fr":"Îles Malouines","ja":"フォークランド(マルビナス)諸島","it":"Isole Falkland o Isole Malvine"},"wiki":"http://en.wikipedia.org/wiki/falkland_islands_islas_malvinas"} \ No newline at end of file +{"name":"Falkland Islands","altSpellings":["FK","Islas Malvinas"],"area":12173,"borders":[],"callingCodes":["500"],"capital":"Stanley","capital_latlng":[-51.695058,-57.849169],"currencies":["FKP"],"demonym":"Falkland Islander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FLK","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}}]},"ISO":{"alpha2":"FK","alpha3":"FLK"},"languages":["en"],"latlng":[-51.75,-59],"nativeName":"Falkland Islands","population":3000,"provinces":["Falkland Islands (Islas Malvinas)"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".fk"],"translations":{"de":"Falklandinseln","es":"Islas Malvinas","fr":"Îles Malouines","ja":"フォークランド(マルビナス)諸島","it":"Isole Falkland o Isole Malvine"},"wiki":"http://en.wikipedia.org/wiki/falkland_islands_islas_malvinas"} \ No newline at end of file diff --git a/countryinfo/data/faroe_islands.json b/countryinfo/data/faroe_islands.json index e081884..8a7c73b 100644 --- a/countryinfo/data/faroe_islands.json +++ b/countryinfo/data/faroe_islands.json @@ -1 +1 @@ -{"name":"Faroe Islands","altSpellings":["FO","Føroyar","Færøerne"],"area":1393,"borders":[],"callingCodes":["298"],"capital":"Tórshavn","currencies":["DKK"],"demonym":"Faroese","flag":"","geoJSON":{},"ISO":{"alpha2":"FO","alpha3":"FRO"},"languages":["fo"],"latlng":[62,-7],"nativeName":"Føroyar","population":48605,"provinces":["Bordoy","Eysturoy","Mykines","Sandoy","Skuvoy","Streymoy","Suduroy","Tvoroyri","Vagar"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".fo"],"translations":{"de":"Färöer-Inseln","es":"Islas Faroe","fr":"Îles Féroé","ja":"フェロー諸島","it":"Isole Far Oer"},"wiki":"http://en.wikipedia.org/wiki/faroe_islands"} \ No newline at end of file +{"name":"Faroe Islands","altSpellings":["FO","Føroyar","Færøerne"],"area":1393,"borders":[],"callingCodes":["298"],"capital":"Tórshavn","capital_latlng":[62.012,-6.768],"currencies":["DKK"],"demonym":"Faroese","flag":"","geoJSON":{},"ISO":{"alpha2":"FO","alpha3":"FRO"},"languages":["fo"],"latlng":[62,-7],"nativeName":"Føroyar","population":48605,"provinces":["Bordoy","Eysturoy","Mykines","Sandoy","Skuvoy","Streymoy","Suduroy","Tvoroyri","Vagar"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".fo"],"translations":{"de":"Färöer-Inseln","es":"Islas Faroe","fr":"Îles Féroé","ja":"フェロー諸島","it":"Isole Far Oer"},"wiki":"http://en.wikipedia.org/wiki/faroe_islands"} \ No newline at end of file diff --git a/countryinfo/data/fiji.json b/countryinfo/data/fiji.json index e60767d..ab120d6 100644 --- a/countryinfo/data/fiji.json +++ b/countryinfo/data/fiji.json @@ -1 +1 @@ -{"name":"Fiji","altSpellings":["FJ","Viti","Republic of Fiji","Matanitu ko Viti","Fijī Gaṇarājya"],"area":18272,"borders":[],"callingCodes":["679"],"capital":"Suva","currencies":["FJD"],"demonym":"Fijian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FJI","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}}]},"ISO":{"alpha2":"FJ","alpha3":"FJI"},"languages":["en","fj","hi","ur"],"latlng":[-18,175],"nativeName":"Fiji","population":859178,"provinces":["Central","Eastern","Northern","Rotuma","Western"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+12:00"],"tld":[".fj"],"translations":{"de":"Fidschi","es":"Fiyi","fr":"Fidji","ja":"フィジー","it":"Figi"},"wiki":"http://en.wikipedia.org/wiki/fiji"} \ No newline at end of file +{"name":"Fiji","altSpellings":["FJ","Viti","Republic of Fiji","Matanitu ko Viti","Fijī Gaṇarājya"],"area":18272,"borders":[],"callingCodes":["679"],"capital":"Suva","capital_latlng":[-18.141588,178.442166],"currencies":["FJD"],"demonym":"Fijian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FJI","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}}]},"ISO":{"alpha2":"FJ","alpha3":"FJI"},"languages":["en","fj","hi","ur"],"latlng":[-18,175],"nativeName":"Fiji","population":859178,"provinces":["Central","Eastern","Northern","Rotuma","Western"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+12:00"],"tld":[".fj"],"translations":{"de":"Fidschi","es":"Fiyi","fr":"Fidji","ja":"フィジー","it":"Figi"},"wiki":"http://en.wikipedia.org/wiki/fiji"} \ No newline at end of file diff --git a/countryinfo/data/finland.json b/countryinfo/data/finland.json index 0f0de0c..46037f7 100644 --- a/countryinfo/data/finland.json +++ b/countryinfo/data/finland.json @@ -1 +1 @@ -{"name":"Finland","altSpellings":["FI","Suomi","Republic of Finland","Suomen tasavalta","Republiken Finland"],"area":338424,"borders":["NOR","SWE","RUS"],"callingCodes":["358"],"capital":"Helsinki","currencies":["EUR"],"demonym":"Finnish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FIN","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}}]},"ISO":{"alpha2":"FI","alpha3":"FIN"},"languages":["fi","sv"],"latlng":[64,26],"nativeName":"Suomi","population":5470437,"provinces":["Aland","Etela-Suomen Laani","Ita-Suomen Laani","Lansi-Suomen Laani","Lappi","Oulun Laani"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".fi"],"translations":{"de":"Finnland","es":"Finlandia","fr":"Finlande","ja":"フィンランド","it":"Finlandia"},"wiki":"http://en.wikipedia.org/wiki/finland"} \ No newline at end of file +{"name":"Finland","altSpellings":["FI","Suomi","Republic of Finland","Suomen tasavalta","Republiken Finland"],"area":338424,"borders":["NOR","SWE","RUS"],"callingCodes":["358"],"capital":"Helsinki","capital_latlng":[60.16741,24.942577],"currencies":["EUR"],"demonym":"Finnish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FIN","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}}]},"ISO":{"alpha2":"FI","alpha3":"FIN"},"languages":["fi","sv"],"latlng":[64,26],"nativeName":"Suomi","population":5470437,"provinces":["Aland","Etela-Suomen Laani","Ita-Suomen Laani","Lansi-Suomen Laani","Lappi","Oulun Laani"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".fi"],"translations":{"de":"Finnland","es":"Finlandia","fr":"Finlande","ja":"フィンランド","it":"Finlandia"},"wiki":"http://en.wikipedia.org/wiki/finland"} \ No newline at end of file diff --git a/countryinfo/data/france.json b/countryinfo/data/france.json index a78212e..1c2f63f 100644 --- a/countryinfo/data/france.json +++ b/countryinfo/data/france.json @@ -1 +1 @@ -{"name":"France","altSpellings":["FR","French Republic","République française"],"area":640679,"borders":["AND","BEL","DEU","ITA","LUX","MCO","ESP","CHE"],"callingCodes":["33"],"capital":"Paris","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FRA","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}}]},"ISO":{"alpha2":"FR","alpha3":"FRA"},"languages":["fr"],"latlng":[46,2],"nativeName":"France","population":66078000,"provinces":["Alsace","Aquitaine","Auvergne","Basse-Normandie","Bourgogne","Bretagne","Centre","Champagne-Ardenne","Corse","Franche-Comte","Haute-Normandie","Ile-de-France","Languedoc-Roussillon","Limousin","Lorraine","Midi-Pyrenees","Nord-Pas-de-Calais","Pays de la Loire","Picardie","Poitou-Charentes","Provence-Alpes-Cote d'Azur","Rhone-Alpes"],"region":"Europe","subregion":"Western Europe","timezones":["UTC−10:00","UTC−09:30","UTC−09:00","UTC−08:00","UTC−04:00","UTC−03:00","UTC+01:00","UTC+03:00","UTC+04:00","UTC+05:00","UTC+11:00","UTC+12:00"],"tld":[".fr"],"translations":{"de":"Frankreich","es":"Francia","fr":"France","ja":"フランス","it":"Francia"},"wiki":"http://en.wikipedia.org/wiki/france"} \ No newline at end of file +{"name":"France","altSpellings":["FR","French Republic","République française"],"area":640679,"borders":["AND","BEL","DEU","ITA","LUX","MCO","ESP","CHE"],"callingCodes":["33"],"capital":"Paris","capital_latlng":[48.856697,2.351462],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"FRA","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}}]},"ISO":{"alpha2":"FR","alpha3":"FRA"},"languages":["fr"],"latlng":[46,2],"nativeName":"France","population":66078000,"provinces":["Alsace","Aquitaine","Auvergne","Basse-Normandie","Bourgogne","Bretagne","Centre","Champagne-Ardenne","Corse","Franche-Comte","Haute-Normandie","Ile-de-France","Languedoc-Roussillon","Limousin","Lorraine","Midi-Pyrenees","Nord-Pas-de-Calais","Pays de la Loire","Picardie","Poitou-Charentes","Provence-Alpes-Cote d'Azur","Rhone-Alpes"],"region":"Europe","subregion":"Western Europe","timezones":["UTC−10:00","UTC−09:30","UTC−09:00","UTC−08:00","UTC−04:00","UTC−03:00","UTC+01:00","UTC+03:00","UTC+04:00","UTC+05:00","UTC+11:00","UTC+12:00"],"tld":[".fr"],"translations":{"de":"Frankreich","es":"Francia","fr":"France","ja":"フランス","it":"Francia"},"wiki":"http://en.wikipedia.org/wiki/france"} \ No newline at end of file diff --git a/countryinfo/data/french_guiana.json b/countryinfo/data/french_guiana.json index 274625c..37b806f 100644 --- a/countryinfo/data/french_guiana.json +++ b/countryinfo/data/french_guiana.json @@ -1 +1 @@ -{"name":"French Guiana","altSpellings":["GF","Guiana","Guyane"],"area":null,"borders":["BRA","SUR"],"callingCodes":["594"],"capital":"Cayenne","currencies":["EUR"],"demonym":"","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GUF","properties":{"name":"French Guiana"},"geometry":{"type":"Polygon","coordinates":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}}]},"ISO":{"alpha2":"GF","alpha3":"GUF"},"languages":["fr"],"latlng":[4,-53],"nativeName":"Guyane française","population":237549,"provinces":["French Guiana"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".gf"],"translations":{"de":"Französisch Guyana","es":"Guayana Francesa","fr":"Guayane","ja":"フランス領ギアナ","it":"Guyana francese"},"wiki":"http://en.wikipedia.org/wiki/french_guiana"} \ No newline at end of file +{"name":"French Guiana","altSpellings":["GF","Guiana","Guyane"],"area":null,"borders":["BRA","SUR"],"callingCodes":["594"],"capital":"Cayenne","capital_latlng":[4.937114,-52.325831],"currencies":["EUR"],"demonym":"","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GUF","properties":{"name":"French Guiana"},"geometry":{"type":"Polygon","coordinates":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}}]},"ISO":{"alpha2":"GF","alpha3":"GUF"},"languages":["fr"],"latlng":[4,-53],"nativeName":"Guyane française","population":237549,"provinces":["French Guiana"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".gf"],"translations":{"de":"Französisch Guyana","es":"Guayana Francesa","fr":"Guayane","ja":"フランス領ギアナ","it":"Guyana francese"},"wiki":"http://en.wikipedia.org/wiki/french_guiana"} \ No newline at end of file diff --git a/countryinfo/data/french_polynesia.json b/countryinfo/data/french_polynesia.json index 583624b..0260386 100644 --- a/countryinfo/data/french_polynesia.json +++ b/countryinfo/data/french_polynesia.json @@ -1 +1 @@ -{"name":"French Polynesia","altSpellings":["PF","Polynésie française","French Polynesia","Pōrīnetia Farāni"],"area":4167,"borders":[],"callingCodes":["689"],"capital":"Papeetē","currencies":["XPF"],"demonym":"French Polynesian","flag":"","geoJSON":{},"ISO":{"alpha2":"PF","alpha3":"PYF"},"languages":["fr"],"latlng":[-15,-140],"nativeName":"Polynésie française","population":268270,"provinces":["Archipel des Marquises","Archipel des Tuamotu","Archipel des Tubuai","Iles du Vent","Iles Sous-le-Vent"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".pf"],"translations":{"de":"Französisch-Polynesien","es":"Polinesia Francesa","fr":"Polynésie française","ja":"フランス領ポリネシア","it":"Polinesia Francese"},"wiki":"http://en.wikipedia.org/wiki/french_polynesia"} \ No newline at end of file +{"name":"French Polynesia","altSpellings":["PF","Polynésie française","French Polynesia","Pōrīnetia Farāni"],"area":4167,"borders":[],"callingCodes":["689"],"capital":"Papeetē","capital_latlng":[-17.537384,-149.565996],"currencies":["XPF"],"demonym":"French Polynesian","flag":"","geoJSON":{},"ISO":{"alpha2":"PF","alpha3":"PYF"},"languages":["fr"],"latlng":[-15,-140],"nativeName":"Polynésie française","population":268270,"provinces":["Archipel des Marquises","Archipel des Tuamotu","Archipel des Tubuai","Iles du Vent","Iles Sous-le-Vent"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".pf"],"translations":{"de":"Französisch-Polynesien","es":"Polinesia Francesa","fr":"Polynésie française","ja":"フランス領ポリネシア","it":"Polinesia Francese"},"wiki":"http://en.wikipedia.org/wiki/french_polynesia"} \ No newline at end of file diff --git a/countryinfo/data/french_southern_and_antarctic_lands.json b/countryinfo/data/french_southern_and_antarctic_lands.json index 26c3d87..5879645 100644 --- a/countryinfo/data/french_southern_and_antarctic_lands.json +++ b/countryinfo/data/french_southern_and_antarctic_lands.json @@ -1 +1 @@ -{"name":"French Southern and Antarctic Lands","altSpellings":["TF"],"area":7747,"borders":[],"callingCodes":[""],"capital":"Port-aux-Français","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ATF","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}}]},"ISO":{"alpha2":"TF","alpha3":"ATF"},"languages":["fr"],"latlng":[-49.25,69.167],"nativeName":"Territoire des Terres australes et antarctiques françaises","population":140,"provinces":["Adelie Land","Ile Crozet","Iles Kerguelen","Iles Saint-Paul et Amsterdam"],"region":"","subregion":"","timezones":null,"tld":[".tf"],"translations":{"de":"Französische Süd- und Antarktisgebiete","es":"Tierras Australes y Antárticas Francesas","fr":"Terres australes et antarctiques françaises","ja":"フランス領南方・南極地域","it":"Territori Francesi del Sud"},"wiki":"http://en.wikipedia.org/wiki/french_southern_and_antarctic_lands"} \ No newline at end of file +{"name":"French Southern and Antarctic Lands","altSpellings":["TF"],"area":7747,"borders":[],"callingCodes":[""],"capital":"Port-aux-Français","capital_latlng":[-49.353677,70.243567],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ATF","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}}]},"ISO":{"alpha2":"TF","alpha3":"ATF"},"languages":["fr"],"latlng":[-49.25,69.167],"nativeName":"Territoire des Terres australes et antarctiques françaises","population":140,"provinces":["Adelie Land","Ile Crozet","Iles Kerguelen","Iles Saint-Paul et Amsterdam"],"region":"","subregion":"","timezones":null,"tld":[".tf"],"translations":{"de":"Französische Süd- und Antarktisgebiete","es":"Tierras Australes y Antárticas Francesas","fr":"Terres australes et antarctiques françaises","ja":"フランス領南方・南極地域","it":"Territori Francesi del Sud"},"wiki":"http://en.wikipedia.org/wiki/french_southern_and_antarctic_lands"} \ No newline at end of file diff --git a/countryinfo/data/gabon.json b/countryinfo/data/gabon.json index 9775adf..8683b5d 100644 --- a/countryinfo/data/gabon.json +++ b/countryinfo/data/gabon.json @@ -1 +1 @@ -{"name":"Gabon","altSpellings":["GA","Gabonese Republic","République Gabonaise"],"area":267668,"borders":["CMR","COG","GNQ"],"callingCodes":["241"],"capital":"Libreville","currencies":["XAF"],"demonym":"Gabonese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GAB","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}}]},"ISO":{"alpha2":"GA","alpha3":"GAB"},"languages":["fr"],"latlng":[-1,11.75],"nativeName":"Gabon","population":1711000,"provinces":["Estuaire","Haut-Ogooue","Moyen-Ogooue","Ngounie","Nyanga","Ogooue-Ivindo","Ogooue-Lolo","Ogooue-Maritime","Woleu-Ntem"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".ga"],"translations":{"de":"Gabun","es":"Gabón","fr":"Gabon","ja":"ガボン","it":"Gabon"},"wiki":"http://en.wikipedia.org/wiki/gabon"} \ No newline at end of file +{"name":"Gabon","altSpellings":["GA","Gabonese Republic","République Gabonaise"],"area":267668,"borders":["CMR","COG","GNQ"],"callingCodes":["241"],"capital":"Libreville","capital_latlng":[0.390002,9.454001],"currencies":["XAF"],"demonym":"Gabonese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GAB","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}}]},"ISO":{"alpha2":"GA","alpha3":"GAB"},"languages":["fr"],"latlng":[-1,11.75],"nativeName":"Gabon","population":1711000,"provinces":["Estuaire","Haut-Ogooue","Moyen-Ogooue","Ngounie","Nyanga","Ogooue-Ivindo","Ogooue-Lolo","Ogooue-Maritime","Woleu-Ntem"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+01:00"],"tld":[".ga"],"translations":{"de":"Gabun","es":"Gabón","fr":"Gabon","ja":"ガボン","it":"Gabon"},"wiki":"http://en.wikipedia.org/wiki/gabon"} \ No newline at end of file diff --git a/countryinfo/data/gambia_the.json b/countryinfo/data/gambia_the.json index de9db5b..e132d7e 100644 --- a/countryinfo/data/gambia_the.json +++ b/countryinfo/data/gambia_the.json @@ -1 +1 @@ -{"name":"The Gambia","altSpellings":["GM","Republic of the Gambia"],"area":11295,"borders":["SEN"],"callingCodes":["220"],"capital":"Banjul","currencies":["GMD"],"demonym":"Gambian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GMB","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}}]},"ISO":{"alpha2":"GM","alpha3":"GMB"},"languages":["en"],"latlng":[13.46666666,-16.56666666],"nativeName":"Gambia","population":1882450,"provinces":["Banjul","Central River","Lower River","North Bank","Upper River","Western"],"region":"Africa","subregion":"Western Africa","timezones":null,"tld":[".gm"],"translations":{"de":"Gambia","es":"Gambia","fr":"Gambie","ja":"ガンビア","it":"Gambia"},"wiki":"http://en.wikipedia.org/wiki/gambia_the"} \ No newline at end of file +{"name":"The Gambia","altSpellings":["GM","Republic of the Gambia"],"area":11295,"borders":["SEN"],"callingCodes":["220"],"capital":"Banjul","capital_latlng":[13.441346,-16.562471],"currencies":["GMD"],"demonym":"Gambian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GMB","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}}]},"ISO":{"alpha2":"GM","alpha3":"GMB"},"languages":["en"],"latlng":[13.46666666,-16.56666666],"nativeName":"Gambia","population":1882450,"provinces":["Banjul","Central River","Lower River","North Bank","Upper River","Western"],"region":"Africa","subregion":"Western Africa","timezones":null,"tld":[".gm"],"translations":{"de":"Gambia","es":"Gambia","fr":"Gambie","ja":"ガンビア","it":"Gambia"},"wiki":"http://en.wikipedia.org/wiki/gambia_the"} \ No newline at end of file diff --git a/countryinfo/data/georgia.json b/countryinfo/data/georgia.json index c8c98d0..868cc87 100644 --- a/countryinfo/data/georgia.json +++ b/countryinfo/data/georgia.json @@ -1 +1 @@ -{"name":"Georgia","altSpellings":["GE","Sakartvelo"],"area":69700,"borders":["ARM","AZE","RUS","TUR"],"callingCodes":["995"],"capital":"Tbilisi","currencies":["GEL"],"demonym":"Georgian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GEO","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}}]},"ISO":{"alpha2":"GE","alpha3":"GEO"},"languages":["ka"],"latlng":[42,43.5],"nativeName":"საქართველო","population":4490500,"provinces":["Abashis","Abkhazia or Ap'khazet'is Avtonomiuri Respublika (Sokhumi)","Adigenis","Ajaria or Acharis Avtonomiuri Respublika (Bat'umi)","Akhalgoris","Akhalk'alak'is","Akhalts'ikhis","Akhmetis","Ambrolauris","Aspindzis","Baghdat'is","Bolnisis","Borjomis","Ch'khorotsqus","Ch'okhatauris","Chiat'ura","Dedop'listsqaros","Dmanisis","Dushet'is","Gardabanis","Gori","Goris","Gurjaanis","Javis","K'arelis","K'ut'aisi","Kaspis","Kharagaulis","Khashuris","Khobis","Khonis","Lagodekhis","Lanch'khut'is","Lentekhis","Marneulis","Martvilis","Mestiis","Mts'khet'is","Ninotsmindis","Onis","Ozurget'is","P'ot'i","Qazbegis","Qvarlis","Rust'avi","Sach'kheris","Sagarejos","Samtrediis","Senakis","Sighnaghis","T'bilisi","T'elavis","T'erjolis","T'et'ritsqaros","T'ianet'is","Tqibuli","Ts'ageris","Tsalenjikhis","Tsalkis","Tsqaltubo","Vanis","Zestap'onis","Zugdidi","Zugdidis"],"region":"Asia","subregion":"Western Asia","timezones":null,"tld":[".ge"],"translations":{"de":"Georgien","es":"Georgia","fr":"Géorgie","ja":"グルジア","it":"Georgia"},"wiki":"http://en.wikipedia.org/wiki/georgia"} \ No newline at end of file +{"name":"Georgia","altSpellings":["GE","Sakartvelo"],"area":69700,"borders":["ARM","AZE","RUS","TUR"],"callingCodes":["995"],"capital":"Tbilisi","capital_latlng":[41.693459,44.80145],"currencies":["GEL"],"demonym":"Georgian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GEO","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}}]},"ISO":{"alpha2":"GE","alpha3":"GEO"},"languages":["ka"],"latlng":[42,43.5],"nativeName":"საქართველო","population":4490500,"provinces":["Abashis","Abkhazia or Ap'khazet'is Avtonomiuri Respublika (Sokhumi)","Adigenis","Ajaria or Acharis Avtonomiuri Respublika (Bat'umi)","Akhalgoris","Akhalk'alak'is","Akhalts'ikhis","Akhmetis","Ambrolauris","Aspindzis","Baghdat'is","Bolnisis","Borjomis","Ch'khorotsqus","Ch'okhatauris","Chiat'ura","Dedop'listsqaros","Dmanisis","Dushet'is","Gardabanis","Gori","Goris","Gurjaanis","Javis","K'arelis","K'ut'aisi","Kaspis","Kharagaulis","Khashuris","Khobis","Khonis","Lagodekhis","Lanch'khut'is","Lentekhis","Marneulis","Martvilis","Mestiis","Mts'khet'is","Ninotsmindis","Onis","Ozurget'is","P'ot'i","Qazbegis","Qvarlis","Rust'avi","Sach'kheris","Sagarejos","Samtrediis","Senakis","Sighnaghis","T'bilisi","T'elavis","T'erjolis","T'et'ritsqaros","T'ianet'is","Tqibuli","Ts'ageris","Tsalenjikhis","Tsalkis","Tsqaltubo","Vanis","Zestap'onis","Zugdidi","Zugdidis"],"region":"Asia","subregion":"Western Asia","timezones":null,"tld":[".ge"],"translations":{"de":"Georgien","es":"Georgia","fr":"Géorgie","ja":"グルジア","it":"Georgia"},"wiki":"http://en.wikipedia.org/wiki/georgia"} \ No newline at end of file diff --git a/countryinfo/data/germany.json b/countryinfo/data/germany.json index cdd86e2..3784d3a 100644 --- a/countryinfo/data/germany.json +++ b/countryinfo/data/germany.json @@ -1 +1 @@ -{"name":"Germany","altSpellings":["DE","Federal Republic of Germany","Bundesrepublik Deutschland"],"area":357114,"borders":["AUT","BEL","CZE","DNK","FRA","LUX","NLD","POL","CHE"],"callingCodes":["49"],"capital":"Berlin","currencies":["EUR"],"demonym":"German","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DEU","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}}]},"ISO":{"alpha2":"DE","alpha3":"DEU"},"languages":["de"],"latlng":[51,9],"nativeName":"Deutschland","population":80783000,"provinces":["Baden-Wuerttemberg","Bayern","Berlin","Brandenburg","Bremen","Hamburg","Hessen","Mecklenburg-Vorpommern","Niedersachsen","Nordrhein-Westfalen","Rheinland-Pfalz","Saarland","Sachsen","Sachsen-Anhalt","Schleswig-Holstein","Thueringen"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".de"],"translations":{"de":"Deutschland","es":"Alemania","fr":"Allemagne","ja":"ドイツ","it":"Germania","nl":"Duitsland","pl":"Niemcy","da":"Tyskland"},"wiki":"http://en.wikipedia.org/wiki/germany"} +{"name":"Germany","altSpellings":["DE","Federal Republic of Germany","Bundesrepublik Deutschland"],"area":357114,"borders":["AUT","BEL","CZE","DNK","FRA","LUX","NLD","POL","CHE"],"callingCodes":["49"],"capital":"Berlin","capital_latlng":[52.517036,13.38886],"currencies":["EUR"],"demonym":"German","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"DEU","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}}]},"ISO":{"alpha2":"DE","alpha3":"DEU"},"languages":["de"],"latlng":[51,9],"nativeName":"Deutschland","population":80783000,"provinces":["Baden-Wuerttemberg","Bayern","Berlin","Brandenburg","Bremen","Hamburg","Hessen","Mecklenburg-Vorpommern","Niedersachsen","Nordrhein-Westfalen","Rheinland-Pfalz","Saarland","Sachsen","Sachsen-Anhalt","Schleswig-Holstein","Thueringen"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".de"],"translations":{"de":"Deutschland","es":"Alemania","fr":"Allemagne","ja":"ドイツ","it":"Germania","nl":"Duitsland","pl":"Niemcy","da":"Tyskland"},"wiki":"http://en.wikipedia.org/wiki/germany"} \ No newline at end of file diff --git a/countryinfo/data/ghana.json b/countryinfo/data/ghana.json index 6a83d11..f7d3795 100644 --- a/countryinfo/data/ghana.json +++ b/countryinfo/data/ghana.json @@ -1 +1 @@ -{"name":"Ghana","altSpellings":["GH"],"area":238533,"borders":["BFA","CIV","TGO"],"callingCodes":["233"],"capital":"Accra","currencies":["GHS"],"demonym":"Ghanaian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GHA","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}}]},"ISO":{"alpha2":"GH","alpha3":"GHA"},"languages":["en"],"latlng":[8,-2],"nativeName":"Ghana","population":27043093,"provinces":["Ashanti","Brong-Ahafo","Central","Eastern","Greater Accra","Northern","Upper East","Upper West","Volta","Western"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gh"],"translations":{"de":"Ghana","es":"Ghana","fr":"Ghana","ja":"ガーナ","it":"Ghana"},"wiki":"http://en.wikipedia.org/wiki/ghana"} \ No newline at end of file +{"name":"Ghana","altSpellings":["GH"],"area":238533,"borders":["BFA","CIV","TGO"],"callingCodes":["233"],"capital":"Accra","capital_latlng":[5.560014,-0.205744],"currencies":["GHS"],"demonym":"Ghanaian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GHA","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}}]},"ISO":{"alpha2":"GH","alpha3":"GHA"},"languages":["en"],"latlng":[8,-2],"nativeName":"Ghana","population":27043093,"provinces":["Ashanti","Brong-Ahafo","Central","Eastern","Greater Accra","Northern","Upper East","Upper West","Volta","Western"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gh"],"translations":{"de":"Ghana","es":"Ghana","fr":"Ghana","ja":"ガーナ","it":"Ghana"},"wiki":"http://en.wikipedia.org/wiki/ghana"} \ No newline at end of file diff --git a/countryinfo/data/gibraltar.json b/countryinfo/data/gibraltar.json index 7e07d6d..7f343e8 100644 --- a/countryinfo/data/gibraltar.json +++ b/countryinfo/data/gibraltar.json @@ -1 +1 @@ -{"name":"Gibraltar","altSpellings":["GI"],"area":6,"borders":["ESP"],"callingCodes":["350"],"capital":"Gibraltar","currencies":["GIP"],"demonym":"Gibraltar","flag":"","geoJSON":{},"ISO":{"alpha2":"GI","alpha3":"GIB"},"languages":["en"],"latlng":[36.13333333,-5.35],"nativeName":"Gibraltar","population":30001,"provinces":["Gibraltar"],"region":"Europe","subregion":"Southern Europe","timezones":null,"tld":[".gi"],"translations":{"de":"Gibraltar","es":"Gibraltar","fr":"Gibraltar","ja":"ジブラルタル","it":"Gibilterra"},"wiki":"http://en.wikipedia.org/wiki/gibraltar"} \ No newline at end of file +{"name":"Gibraltar","altSpellings":["GI"],"area":6,"borders":["ESP"],"callingCodes":["350"],"capital":"Gibraltar","capital_latlng":[36.140807,-5.35413],"currencies":["GIP"],"demonym":"Gibraltar","flag":"","geoJSON":{},"ISO":{"alpha2":"GI","alpha3":"GIB"},"languages":["en"],"latlng":[36.13333333,-5.35],"nativeName":"Gibraltar","population":30001,"provinces":["Gibraltar"],"region":"Europe","subregion":"Southern Europe","timezones":null,"tld":[".gi"],"translations":{"de":"Gibraltar","es":"Gibraltar","fr":"Gibraltar","ja":"ジブラルタル","it":"Gibilterra"},"wiki":"http://en.wikipedia.org/wiki/gibraltar"} \ No newline at end of file diff --git a/countryinfo/data/greece.json b/countryinfo/data/greece.json index 48012b3..8593c20 100644 --- a/countryinfo/data/greece.json +++ b/countryinfo/data/greece.json @@ -1 +1 @@ -{"name":"Greece","altSpellings":["GR","Elláda","Hellenic Republic","Ελληνική Δημοκρατία"],"area":131990,"borders":["ALB","BGR","TUR","MKD"],"callingCodes":["30"],"capital":"Athens","currencies":["EUR"],"demonym":"Greek","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GRC","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}}]},"ISO":{"alpha2":"GR","alpha3":"GRC"},"languages":["el"],"latlng":[39,22],"nativeName":"Ελλάδα","population":10992589,"provinces":["Aitolia kai Akarnania","Akhaia","Argolis","Arkadhia","Arta","Attiki","Ayion Oros (Mt. Athos)","Dhodhekanisos","Drama","Evritania","Evros","Evvoia","Florina","Fokis","Fthiotis","Grevena","Ilia","Imathia","Ioannina","Irakleion","Kardhitsa","Kastoria","Kavala","Kefallinia","Kerkyra","Khalkidhiki","Khania","Khios","Kikladhes","Kilkis","Korinthia","Kozani","Lakonia","Larisa","Lasithi","Lesvos","Levkas","Magnisia","Messinia","Pella","Pieria","Preveza","Rethimni","Rodhopi","Samos","Serrai","Thesprotia","Thessaloniki","Trikala","Voiotia","Xanthi","Zakinthos"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+02:00"],"tld":[".gr"],"translations":{"de":"Griechenland","es":"Grecia","fr":"Grèce","ja":"ギリシャ","it":"Grecia"},"wiki":"http://en.wikipedia.org/wiki/greece"} \ No newline at end of file +{"name":"Greece","altSpellings":["GR","Elláda","Hellenic Republic","Ελληνική Δημοκρατία"],"area":131990,"borders":["ALB","BGR","TUR","MKD"],"callingCodes":["30"],"capital":"Athens","capital_latlng":[37.983941,23.728305],"currencies":["EUR"],"demonym":"Greek","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GRC","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}}]},"ISO":{"alpha2":"GR","alpha3":"GRC"},"languages":["el"],"latlng":[39,22],"nativeName":"Ελλάδα","population":10992589,"provinces":["Aitolia kai Akarnania","Akhaia","Argolis","Arkadhia","Arta","Attiki","Ayion Oros (Mt. Athos)","Dhodhekanisos","Drama","Evritania","Evros","Evvoia","Florina","Fokis","Fthiotis","Grevena","Ilia","Imathia","Ioannina","Irakleion","Kardhitsa","Kastoria","Kavala","Kefallinia","Kerkyra","Khalkidhiki","Khania","Khios","Kikladhes","Kilkis","Korinthia","Kozani","Lakonia","Larisa","Lasithi","Lesvos","Levkas","Magnisia","Messinia","Pella","Pieria","Preveza","Rethimni","Rodhopi","Samos","Serrai","Thesprotia","Thessaloniki","Trikala","Voiotia","Xanthi","Zakinthos"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+02:00"],"tld":[".gr"],"translations":{"de":"Griechenland","es":"Grecia","fr":"Grèce","ja":"ギリシャ","it":"Grecia"},"wiki":"http://en.wikipedia.org/wiki/greece"} \ No newline at end of file diff --git a/countryinfo/data/greenland.json b/countryinfo/data/greenland.json index 9c9f029..0729f36 100644 --- a/countryinfo/data/greenland.json +++ b/countryinfo/data/greenland.json @@ -1 +1 @@ -{"name":"Greenland","altSpellings":["GL","Grønland"],"area":2166086,"borders":[],"callingCodes":["299"],"capital":"Nuuk","currencies":["DKK"],"demonym":"Greenlandic","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GRL","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}}]},"ISO":{"alpha2":"GL","alpha3":"GRL"},"languages":["kl"],"latlng":[72,-40],"nativeName":"Kalaallit Nunaat","population":56295,"provinces":["Avannaa (Nordgronland)","Kitaa (Vestgronland)","Tunu (Ostgronland)"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".gl"],"translations":{"de":"Grönland","es":"Groenlandia","fr":"Groenland","ja":"グリーンランド","it":"Groenlandia"},"wiki":"http://en.wikipedia.org/wiki/greenland"} \ No newline at end of file +{"name":"Greenland","altSpellings":["GL","Grønland"],"area":2166086,"borders":[],"callingCodes":["299"],"capital":"Nuuk","capital_latlng":[64.175029,-51.735539],"currencies":["DKK"],"demonym":"Greenlandic","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GRL","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}}]},"ISO":{"alpha2":"GL","alpha3":"GRL"},"languages":["kl"],"latlng":[72,-40],"nativeName":"Kalaallit Nunaat","population":56295,"provinces":["Avannaa (Nordgronland)","Kitaa (Vestgronland)","Tunu (Ostgronland)"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".gl"],"translations":{"de":"Grönland","es":"Groenlandia","fr":"Groenland","ja":"グリーンランド","it":"Groenlandia"},"wiki":"http://en.wikipedia.org/wiki/greenland"} \ No newline at end of file diff --git a/countryinfo/data/grenada.json b/countryinfo/data/grenada.json index 84bd7da..25fdc9e 100644 --- a/countryinfo/data/grenada.json +++ b/countryinfo/data/grenada.json @@ -1 +1 @@ -{"name":"Grenada","altSpellings":["GD"],"area":344,"borders":[],"callingCodes":["1473"],"capital":"St. George's","currencies":["XCD"],"demonym":"Grenadian","flag":"","geoJSON":{},"ISO":{"alpha2":"GD","alpha3":"GRD"},"languages":["en"],"latlng":[12.11666666,-61.66666666],"nativeName":"Grenada","population":103328,"provinces":["Carriacou and Petit Martinique","Saint Andrew","Saint David","Saint George","Saint John","Saint Mark","Saint Patrick"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".gd"],"translations":{"de":"Grenada","es":"Grenada","fr":"Grenade","ja":"グレナダ","it":"Grenada"},"wiki":"http://en.wikipedia.org/wiki/grenada"} \ No newline at end of file +{"name":"Grenada","altSpellings":["GD"],"area":344,"borders":[],"callingCodes":["1473"],"capital":"St. George's","capital_latlng":[48.658138,6.928099],"currencies":["XCD"],"demonym":"Grenadian","flag":"","geoJSON":{},"ISO":{"alpha2":"GD","alpha3":"GRD"},"languages":["en"],"latlng":[12.11666666,-61.66666666],"nativeName":"Grenada","population":103328,"provinces":["Carriacou and Petit Martinique","Saint Andrew","Saint David","Saint George","Saint John","Saint Mark","Saint Patrick"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".gd"],"translations":{"de":"Grenada","es":"Grenada","fr":"Grenade","ja":"グレナダ","it":"Grenada"},"wiki":"http://en.wikipedia.org/wiki/grenada"} \ No newline at end of file diff --git a/countryinfo/data/guadeloupe.json b/countryinfo/data/guadeloupe.json index 1f0518b..c05ce35 100644 --- a/countryinfo/data/guadeloupe.json +++ b/countryinfo/data/guadeloupe.json @@ -1 +1 @@ -{"name":"Guadeloupe","altSpellings":["GP","Gwadloup"],"area":null,"borders":[],"callingCodes":["590"],"capital":"Basse-Terre","currencies":["EUR"],"demonym":"Guadeloupian","flag":"","geoJSON":{},"ISO":{"alpha2":"GP","alpha3":"GLP"},"languages":["fr"],"latlng":[16.25,-61.583333],"nativeName":"Guadeloupe","population":405739,"provinces":["Basse-Terre","Grande-Terre","Iles de la Petite Terre","Iles des Saintes","Marie-Galante"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".gp"],"translations":{"de":"Guadeloupe","es":"Guadalupe","fr":"Guadeloupe","ja":"グアドループ","it":"Guadeloupa"},"wiki":"http://en.wikipedia.org/wiki/guadeloupe"} \ No newline at end of file +{"name":"Guadeloupe","altSpellings":["GP","Gwadloup"],"area":null,"borders":[],"callingCodes":["590"],"capital":"Basse-Terre","capital_latlng":[16.000078,-61.733337],"currencies":["EUR"],"demonym":"Guadeloupian","flag":"","geoJSON":{},"ISO":{"alpha2":"GP","alpha3":"GLP"},"languages":["fr"],"latlng":[16.25,-61.583333],"nativeName":"Guadeloupe","population":405739,"provinces":["Basse-Terre","Grande-Terre","Iles de la Petite Terre","Iles des Saintes","Marie-Galante"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".gp"],"translations":{"de":"Guadeloupe","es":"Guadalupe","fr":"Guadeloupe","ja":"グアドループ","it":"Guadeloupa"},"wiki":"http://en.wikipedia.org/wiki/guadeloupe"} \ No newline at end of file diff --git a/countryinfo/data/guam.json b/countryinfo/data/guam.json index 87f2ebe..5fa406b 100644 --- a/countryinfo/data/guam.json +++ b/countryinfo/data/guam.json @@ -1 +1 @@ -{"name":"Guam","altSpellings":["GU","Guåhån"],"area":549,"borders":[],"callingCodes":["1671"],"capital":"Hagåtña","currencies":["USD"],"demonym":"Guamanian","flag":"","geoJSON":{},"ISO":{"alpha2":"GU","alpha3":"GUM"},"languages":["en","ch","es"],"latlng":[13.46666666,144.78333333],"nativeName":"Guam","population":159358,"provinces":["Guam"],"region":"Oceania","subregion":"Micronesia","timezones":null,"tld":[".gu"],"translations":{"de":"Guam","es":"Guam","fr":"Guam","ja":"グアム","it":"Guam"},"wiki":"http://en.wikipedia.org/wiki/guam"} \ No newline at end of file +{"name":"Guam","altSpellings":["GU","Guåhån"],"area":549,"borders":[],"callingCodes":["1671"],"capital":"Hagåtña","capital_latlng":[13.472745,144.752018],"currencies":["USD"],"demonym":"Guamanian","flag":"","geoJSON":{},"ISO":{"alpha2":"GU","alpha3":"GUM"},"languages":["en","ch","es"],"latlng":[13.46666666,144.78333333],"nativeName":"Guam","population":159358,"provinces":["Guam"],"region":"Oceania","subregion":"Micronesia","timezones":null,"tld":[".gu"],"translations":{"de":"Guam","es":"Guam","fr":"Guam","ja":"グアム","it":"Guam"},"wiki":"http://en.wikipedia.org/wiki/guam"} \ No newline at end of file diff --git a/countryinfo/data/guatemala.json b/countryinfo/data/guatemala.json index e3fbc82..3669cc8 100644 --- a/countryinfo/data/guatemala.json +++ b/countryinfo/data/guatemala.json @@ -1 +1 @@ -{"name":"Guatemala","altSpellings":["GT"],"area":108889,"borders":["BLZ","SLV","HND","MEX"],"callingCodes":["502"],"capital":"Guatemala City","currencies":["GTQ"],"demonym":"Guatemalan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GTM","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}}]},"ISO":{"alpha2":"GT","alpha3":"GTM"},"languages":["es"],"latlng":[15.5,-90.25],"nativeName":"Guatemala","population":15806675,"provinces":["Alta Verapaz","Baja Verapaz","Chimaltenango","Chiquimula","El Progreso","Escuintla","Guatemala","Huehuetenango","Izabal","Jalapa","Jutiapa","Peten","Quetzaltenango","Quiche","Retalhuleu","Sacatepequez","San Marcos","Santa Rosa","Solola","Suchitepequez","Totonicapan","Zacapa"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".gt"],"translations":{"de":"Guatemala","es":"Guatemala","fr":"Guatemala","ja":"グアテマラ","it":"Guatemala"},"wiki":"http://en.wikipedia.org/wiki/guatemala"} \ No newline at end of file +{"name":"Guatemala","altSpellings":["GT"],"area":108889,"borders":["BLZ","SLV","HND","MEX"],"callingCodes":["502"],"capital":"Guatemala City","capital_latlng":[14.622233,-90.518519],"currencies":["GTQ"],"demonym":"Guatemalan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GTM","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}}]},"ISO":{"alpha2":"GT","alpha3":"GTM"},"languages":["es"],"latlng":[15.5,-90.25],"nativeName":"Guatemala","population":15806675,"provinces":["Alta Verapaz","Baja Verapaz","Chimaltenango","Chiquimula","El Progreso","Escuintla","Guatemala","Huehuetenango","Izabal","Jalapa","Jutiapa","Peten","Quetzaltenango","Quiche","Retalhuleu","Sacatepequez","San Marcos","Santa Rosa","Solola","Suchitepequez","Totonicapan","Zacapa"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".gt"],"translations":{"de":"Guatemala","es":"Guatemala","fr":"Guatemala","ja":"グアテマラ","it":"Guatemala"},"wiki":"http://en.wikipedia.org/wiki/guatemala"} \ No newline at end of file diff --git a/countryinfo/data/guernsey.json b/countryinfo/data/guernsey.json index 18f713d..002fdb6 100644 --- a/countryinfo/data/guernsey.json +++ b/countryinfo/data/guernsey.json @@ -1 +1 @@ -{"name":"Guernsey","altSpellings":["GG","Bailiwick of Guernsey","Bailliage de Guernesey"],"area":78,"borders":[],"callingCodes":["44"],"capital":"St. Peter Port","currencies":["GBP"],"demonym":"Channel Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"GG","alpha3":"GGY"},"languages":["en","fr"],"latlng":[49.46666666,-2.58333333],"nativeName":"Guernsey","population":63085,"provinces":["Castel","Forest","St. Andrew","St. Martin","St. Peter Port","St. Pierre du Bois","St. Sampson","St. Saviour","Torteval","Vale"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".gg"],"translations":{"de":"Guernsey","es":"Guernsey","fr":"Guernesey","ja":"ガーンジー","it":"Guernsey"},"wiki":"http://en.wikipedia.org/wiki/guernsey"} \ No newline at end of file +{"name":"Guernsey","altSpellings":["GG","Bailiwick of Guernsey","Bailliage de Guernesey"],"area":78,"borders":[],"callingCodes":["44"],"capital":"St. Peter Port","capital_latlng":[49.456814,-2.538998],"currencies":["GBP"],"demonym":"Channel Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"GG","alpha3":"GGY"},"languages":["en","fr"],"latlng":[49.46666666,-2.58333333],"nativeName":"Guernsey","population":63085,"provinces":["Castel","Forest","St. Andrew","St. Martin","St. Peter Port","St. Pierre du Bois","St. Sampson","St. Saviour","Torteval","Vale"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".gg"],"translations":{"de":"Guernsey","es":"Guernsey","fr":"Guernesey","ja":"ガーンジー","it":"Guernsey"},"wiki":"http://en.wikipedia.org/wiki/guernsey"} \ No newline at end of file diff --git a/countryinfo/data/guinea.json b/countryinfo/data/guinea.json index 2926e34..19cd7d8 100644 --- a/countryinfo/data/guinea.json +++ b/countryinfo/data/guinea.json @@ -1 +1 @@ -{"name":"Guinea","altSpellings":["GN","Republic of Guinea","République de Guinée"],"area":245857,"borders":["CIV","GNB","LBR","MLI","SEN","SLE"],"callingCodes":["224"],"capital":"Conakry","currencies":["GNF"],"demonym":"Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GIN","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}}]},"ISO":{"alpha2":"GN","alpha3":"GIN"},"languages":["fr","ff"],"latlng":[11,-10],"nativeName":"Guinée","population":10628972,"provinces":["Beyla","Boffa","Boke","Conakry","Coyah","Dabola","Dalaba","Dinguiraye","Dubreka","Faranah","Forecariah","Fria","Gaoual","Gueckedou","Kankan","Kerouane","Kindia","Kissidougou","Koubia","Koundara","Kouroussa","Labe","Lelouma","Lola","Macenta","Mali","Mamou","Mandiana","Nzerekore","Pita","Siguiri","Telimele","Tougue","Yomou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gn"],"translations":{"de":"Guinea","es":"Guinea","fr":"Guinée","ja":"ギニア","it":"Guinea"},"wiki":"http://en.wikipedia.org/wiki/guinea"} \ No newline at end of file +{"name":"Guinea","altSpellings":["GN","Republic of Guinea","République de Guinée"],"area":245857,"borders":["CIV","GNB","LBR","MLI","SEN","SLE"],"callingCodes":["224"],"capital":"Conakry","capital_latlng":[9.51706,-13.699843],"currencies":["GNF"],"demonym":"Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GIN","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}}]},"ISO":{"alpha2":"GN","alpha3":"GIN"},"languages":["fr","ff"],"latlng":[11,-10],"nativeName":"Guinée","population":10628972,"provinces":["Beyla","Boffa","Boke","Conakry","Coyah","Dabola","Dalaba","Dinguiraye","Dubreka","Faranah","Forecariah","Fria","Gaoual","Gueckedou","Kankan","Kerouane","Kindia","Kissidougou","Koubia","Koundara","Kouroussa","Labe","Lelouma","Lola","Macenta","Mali","Mamou","Mandiana","Nzerekore","Pita","Siguiri","Telimele","Tougue","Yomou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gn"],"translations":{"de":"Guinea","es":"Guinea","fr":"Guinée","ja":"ギニア","it":"Guinea"},"wiki":"http://en.wikipedia.org/wiki/guinea"} \ No newline at end of file diff --git a/countryinfo/data/guinea_bissau.json b/countryinfo/data/guinea_bissau.json index 11d5a76..2790a0b 100644 --- a/countryinfo/data/guinea_bissau.json +++ b/countryinfo/data/guinea_bissau.json @@ -1 +1 @@ -{"name":"Guinea-Bissau","altSpellings":["GW","Republic of Guinea-Bissau","República da Guiné-Bissau"],"area":36125,"borders":["GIN","SEN"],"callingCodes":["245"],"capital":"Bissau","currencies":["XOF"],"demonym":"Guinea-Bissauan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GNB","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}}]},"ISO":{"alpha2":"GW","alpha3":"GNB"},"languages":["pt"],"latlng":[12,-15],"nativeName":"Guiné-Bissau","population":1746000,"provinces":["Bafata","Biombo","Bissau","Bolama-Bijagos","Cacheu","Gabu","Oio","Quinara","Tombali"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gw"],"translations":{"de":"Guinea-Bissau","es":"Guinea-Bisáu","fr":"Guinée-Bissau","ja":"ギニアビサウ","it":"Guinea-Bissau"},"wiki":"http://en.wikipedia.org/wiki/guinea_bissau"} \ No newline at end of file +{"name":"Guinea-Bissau","altSpellings":["GW","Republic of Guinea-Bissau","República da Guiné-Bissau"],"area":36125,"borders":["GIN","SEN"],"callingCodes":["245"],"capital":"Bissau","capital_latlng":[11.861324,-15.583055],"currencies":["XOF"],"demonym":"Guinea-Bissauan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GNB","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}}]},"ISO":{"alpha2":"GW","alpha3":"GNB"},"languages":["pt"],"latlng":[12,-15],"nativeName":"Guiné-Bissau","population":1746000,"provinces":["Bafata","Biombo","Bissau","Bolama-Bijagos","Cacheu","Gabu","Oio","Quinara","Tombali"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".gw"],"translations":{"de":"Guinea-Bissau","es":"Guinea-Bisáu","fr":"Guinée-Bissau","ja":"ギニアビサウ","it":"Guinea-Bissau"},"wiki":"http://en.wikipedia.org/wiki/guinea_bissau"} \ No newline at end of file diff --git a/countryinfo/data/guyana.json b/countryinfo/data/guyana.json index 6570c53..5dace47 100644 --- a/countryinfo/data/guyana.json +++ b/countryinfo/data/guyana.json @@ -1 +1 @@ -{"name":"Guyana","altSpellings":["GY","Co-operative Republic of Guyana"],"area":214969,"borders":["BRA","SUR","VEN"],"callingCodes":["592"],"capital":"Georgetown","currencies":["GYD"],"demonym":"Guyanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GUY","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]}}]},"ISO":{"alpha2":"GY","alpha3":"GUY"},"languages":["en"],"latlng":[5,-59],"nativeName":"Guyana","population":784894,"provinces":["Barima-Waini","Cuyuni-Mazaruni","Demerara-Mahaica","East Berbice-Corentyne","Essequibo Islands-West Demerara","Mahaica-Berbice","Pomeroon-Supenaam","Potaro-Siparuni","Upper Demerara-Berbice","Upper Takutu-Upper Essequibo"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".gy"],"translations":{"de":"Guyana","es":"Guyana","fr":"Guyane","ja":"ガイアナ","it":"Guyana"},"wiki":"http://en.wikipedia.org/wiki/guyana"} \ No newline at end of file +{"name":"Guyana","altSpellings":["GY","Co-operative Republic of Guyana"],"area":214969,"borders":["BRA","SUR","VEN"],"callingCodes":["592"],"capital":"Georgetown","capital_latlng":[6.802577,-58.162861],"currencies":["GYD"],"demonym":"Guyanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GUY","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]}}]},"ISO":{"alpha2":"GY","alpha3":"GUY"},"languages":["en"],"latlng":[5,-59],"nativeName":"Guyana","population":784894,"provinces":["Barima-Waini","Cuyuni-Mazaruni","Demerara-Mahaica","East Berbice-Corentyne","Essequibo Islands-West Demerara","Mahaica-Berbice","Pomeroon-Supenaam","Potaro-Siparuni","Upper Demerara-Berbice","Upper Takutu-Upper Essequibo"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".gy"],"translations":{"de":"Guyana","es":"Guyana","fr":"Guyane","ja":"ガイアナ","it":"Guyana"},"wiki":"http://en.wikipedia.org/wiki/guyana"} \ No newline at end of file diff --git a/countryinfo/data/haiti.json b/countryinfo/data/haiti.json index 8128c06..03912c3 100644 --- a/countryinfo/data/haiti.json +++ b/countryinfo/data/haiti.json @@ -1 +1 @@ -{"name":"Haiti","altSpellings":["HT","Republic of Haiti","République d'Haïti","Repiblik Ayiti"],"area":27750,"borders":["DOM"],"callingCodes":["509"],"capital":"Port-au-Prince","currencies":["HTG","USD"],"demonym":"Haitian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HTI","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]}}]},"ISO":{"alpha2":"HT","alpha3":"HTI"},"languages":["fr","ht"],"latlng":[19,-72.41666666],"nativeName":"Haïti","population":10745665,"provinces":["Artibonite","Centre","Grand'Anse","Nord","Nord-Est","Nord-Ouest","Ouest","Sud","Sud-Est"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".ht"],"translations":{"de":"Haiti","es":"Haiti","fr":"Haïti","ja":"ハイチ","it":"Haiti"},"wiki":"http://en.wikipedia.org/wiki/haiti"} \ No newline at end of file +{"name":"Haiti","altSpellings":["HT","Republic of Haiti","République d'Haïti","Repiblik Ayiti"],"area":27750,"borders":["DOM"],"callingCodes":["509"],"capital":"Port-au-Prince","capital_latlng":[18.547327,-72.339593],"currencies":["HTG","USD"],"demonym":"Haitian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HTI","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]}}]},"ISO":{"alpha2":"HT","alpha3":"HTI"},"languages":["fr","ht"],"latlng":[19,-72.41666666],"nativeName":"Haïti","population":10745665,"provinces":["Artibonite","Centre","Grand'Anse","Nord","Nord-Est","Nord-Ouest","Ouest","Sud","Sud-Est"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".ht"],"translations":{"de":"Haiti","es":"Haiti","fr":"Haïti","ja":"ハイチ","it":"Haiti"},"wiki":"http://en.wikipedia.org/wiki/haiti"} \ No newline at end of file diff --git a/countryinfo/data/honduras.json b/countryinfo/data/honduras.json index 48813d3..cca42fe 100644 --- a/countryinfo/data/honduras.json +++ b/countryinfo/data/honduras.json @@ -1 +1 @@ -{"name":"Honduras","altSpellings":["HN","Republic of Honduras","República de Honduras"],"area":112492,"borders":["GTM","SLV","NIC"],"callingCodes":["504"],"capital":"Tegucigalpa","currencies":["HNL"],"demonym":"Honduran","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HND","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]}}]},"ISO":{"alpha2":"HN","alpha3":"HND"},"languages":["es"],"latlng":[15,-86.5],"nativeName":"Honduras","population":8725111,"provinces":["Atlantida","Choluteca","Colon","Comayagua","Copan","Cortes","El Paraiso","Francisco Morazan","Gracias a Dios","Intibuca","Islas de la Bahia","La Paz","Lempira","Ocotepeque","Olancho","Santa Barbara","Valle","Yoro"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".hn"],"translations":{"de":"Honduras","es":"Honduras","fr":"Honduras","ja":"ホンジュラス","it":"Honduras"},"wiki":"http://en.wikipedia.org/wiki/honduras"} \ No newline at end of file +{"name":"Honduras","altSpellings":["HN","Republic of Honduras","República de Honduras"],"area":112492,"borders":["GTM","SLV","NIC"],"callingCodes":["504"],"capital":"Tegucigalpa","capital_latlng":[14.105686,-87.204676],"currencies":["HNL"],"demonym":"Honduran","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HND","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]}}]},"ISO":{"alpha2":"HN","alpha3":"HND"},"languages":["es"],"latlng":[15,-86.5],"nativeName":"Honduras","population":8725111,"provinces":["Atlantida","Choluteca","Colon","Comayagua","Copan","Cortes","El Paraiso","Francisco Morazan","Gracias a Dios","Intibuca","Islas de la Bahia","La Paz","Lempira","Ocotepeque","Olancho","Santa Barbara","Valle","Yoro"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".hn"],"translations":{"de":"Honduras","es":"Honduras","fr":"Honduras","ja":"ホンジュラス","it":"Honduras"},"wiki":"http://en.wikipedia.org/wiki/honduras"} \ No newline at end of file diff --git a/countryinfo/data/hong_kong.json b/countryinfo/data/hong_kong.json index 0b18a5f..f1da870 100644 --- a/countryinfo/data/hong_kong.json +++ b/countryinfo/data/hong_kong.json @@ -1 +1 @@ -{"name":"Hong Kong","altSpellings":["HK","香港"],"area":1104,"borders":["CHN"],"callingCodes":["852"],"capital":"City of Victoria","currencies":["HKD"],"demonym":"Chinese","flag":"","geoJSON":{},"ISO":{"alpha2":"HK","alpha3":"HKG"},"languages":["en","zh"],"latlng":[22.25,114.16666666],"nativeName":"香港","population":7234800,"provinces":["Hong Kong"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".hk"],"translations":{"de":"Hong Kong","es":"Hong Kong","fr":"Hong Kong","ja":"香港","it":"Hong Kong"},"wiki":"http://en.wikipedia.org/wiki/hong_kong"} \ No newline at end of file +{"name":"Hong Kong","altSpellings":["HK","香港"],"area":1104,"borders":["CHN"],"callingCodes":["852"],"capital":"City of Victoria","capital_latlng":[-36.59861,144.678005],"currencies":["HKD"],"demonym":"Chinese","flag":"","geoJSON":{},"ISO":{"alpha2":"HK","alpha3":"HKG"},"languages":["en","zh"],"latlng":[22.25,114.16666666],"nativeName":"香港","population":7234800,"provinces":["Hong Kong"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".hk"],"translations":{"de":"Hong Kong","es":"Hong Kong","fr":"Hong Kong","ja":"香港","it":"Hong Kong"},"wiki":"http://en.wikipedia.org/wiki/hong_kong"} \ No newline at end of file diff --git a/countryinfo/data/howland_island.json b/countryinfo/data/howland_island.json index dcce309..92e329d 100644 --- a/countryinfo/data/howland_island.json +++ b/countryinfo/data/howland_island.json @@ -1 +1 @@ -{"name":"Hungary","altSpellings":["HU"],"area":93028,"borders":["AUT","HRV","ROU","SRB","SVK","SVN","UKR"],"callingCodes":["36"],"capital":"Budapest","currencies":["HUF"],"demonym":"Hungarian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HUN","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]}}]},"ISO":{"alpha2":"HU","alpha3":"HUN"},"languages":["hu"],"latlng":[47,20],"nativeName":"Magyarország","population":9879000,"provinces":["Howland Island"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".hu"],"translations":{"de":"Ungarn","es":"Hungría","fr":"Hongrie","ja":"ハンガリー","it":"Ungheria"},"wiki":"http://en.wikipedia.org/wiki/howland_island"} \ No newline at end of file +{"name":"Hungary","altSpellings":["HU"],"area":93028,"borders":["AUT","HRV","ROU","SRB","SVK","SVN","UKR"],"callingCodes":["36"],"capital":"Budapest","capital_latlng":[47.498382,19.040471],"currencies":["HUF"],"demonym":"Hungarian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"HUN","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]}}]},"ISO":{"alpha2":"HU","alpha3":"HUN"},"languages":["hu"],"latlng":[47,20],"nativeName":"Magyarország","population":9879000,"provinces":["Howland Island"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".hu"],"translations":{"de":"Ungarn","es":"Hungría","fr":"Hongrie","ja":"ハンガリー","it":"Ungheria"},"wiki":"http://en.wikipedia.org/wiki/howland_island"} \ No newline at end of file diff --git a/countryinfo/data/iceland.json b/countryinfo/data/iceland.json index fa3d99b..d27cc8d 100644 --- a/countryinfo/data/iceland.json +++ b/countryinfo/data/iceland.json @@ -1 +1 @@ -{"name":"Iceland","altSpellings":["IS","Island","Republic of Iceland","Lýðveldið Ísland"],"area":103000,"borders":[],"callingCodes":["354"],"capital":"Reykjavik","currencies":["ISK"],"demonym":"Icelander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ISL","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]}}]},"ISO":{"alpha2":"IS","alpha3":"ISL"},"languages":["is"],"latlng":[65,-18],"nativeName":"Ísland","population":328170,"provinces":["Akranes","Akureyri","Arnessysla","Austur-Bardhastrandarsysla","Austur-Hunavatnssysla","Austur-Skaftafellssysla","Borgarfjardharsysla","Dalasysla","Eyjafjardharsysla","Gullbringusysla","Hafnarfjordhur","Husavik","Isafjordhur","Keflavik","Kjosarsysla","Kopavogur","Myrasysla","Neskaupstadhur","Nordhur-Isafjardharsysla","Nordhur-Mulasys-la","Nordhur-Thingeyjarsysla","Olafsfjordhur","Rangarvallasysla","Reykjavik","Saudharkrokur","Seydhisfjordhur","Siglufjordhur","Skagafjardharsysla","Snaefellsnes-og Hnappadalssysla","Strandasysla","Sudhur-Mulasysla","Sudhur-Thingeyjarsysla","Vesttmannaeyjar","Vestur-Bardhastrandarsysla","Vestur-Hunavatnssysla","Vestur-Isafjardharsysla","Vestur-Skaftafellssysla"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC"],"tld":[".is"],"translations":{"de":"Island","es":"Islandia","fr":"Islande","ja":"アイスランド","it":"Islanda"},"wiki":"http://en.wikipedia.org/wiki/iceland"} \ No newline at end of file +{"name":"Iceland","altSpellings":["IS","Island","Republic of Iceland","Lýðveldið Ísland"],"area":103000,"borders":[],"callingCodes":["354"],"capital":"Reykjavik","capital_latlng":[64.145981,-21.942237],"currencies":["ISK"],"demonym":"Icelander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ISL","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]}}]},"ISO":{"alpha2":"IS","alpha3":"ISL"},"languages":["is"],"latlng":[65,-18],"nativeName":"Ísland","population":328170,"provinces":["Akranes","Akureyri","Arnessysla","Austur-Bardhastrandarsysla","Austur-Hunavatnssysla","Austur-Skaftafellssysla","Borgarfjardharsysla","Dalasysla","Eyjafjardharsysla","Gullbringusysla","Hafnarfjordhur","Husavik","Isafjordhur","Keflavik","Kjosarsysla","Kopavogur","Myrasysla","Neskaupstadhur","Nordhur-Isafjardharsysla","Nordhur-Mulasys-la","Nordhur-Thingeyjarsysla","Olafsfjordhur","Rangarvallasysla","Reykjavik","Saudharkrokur","Seydhisfjordhur","Siglufjordhur","Skagafjardharsysla","Snaefellsnes-og Hnappadalssysla","Strandasysla","Sudhur-Mulasysla","Sudhur-Thingeyjarsysla","Vesttmannaeyjar","Vestur-Bardhastrandarsysla","Vestur-Hunavatnssysla","Vestur-Isafjardharsysla","Vestur-Skaftafellssysla"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC"],"tld":[".is"],"translations":{"de":"Island","es":"Islandia","fr":"Islande","ja":"アイスランド","it":"Islanda"},"wiki":"http://en.wikipedia.org/wiki/iceland"} \ No newline at end of file diff --git a/countryinfo/data/india.json b/countryinfo/data/india.json index ddc25f1..540c24f 100644 --- a/countryinfo/data/india.json +++ b/countryinfo/data/india.json @@ -1 +1 @@ -{"name":"India","altSpellings":["IN","Bhārat","Republic of India","Bharat Ganrajya"],"area":3287590,"borders":["AFG","BGD","BTN","MMR","CHN","NPL","PAK","LKA"],"callingCodes":["91"],"capital":"New Delhi","currencies":["INR"],"demonym":"Indian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IND","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]}}]},"ISO":{"alpha2":"IN","alpha3":"IND"},"languages":["hi","en"],"latlng":[20,77],"nativeName":"भारत","population":1263930000,"provinces":["Andaman and Nicobar Islands","Andhra Pradesh","Arunachal Pradesh","Assam","Bihar","Chandigarh","Chhattisgarh","Dadra and Nagar Haveli","Daman and Diu","Delhi","Goa","Gujarat","Haryana","Himachal Pradesh","Jammu and Kashmir","Jharkhand","Karnataka","Kerala","Lakshadweep","Madhya Pradesh","Maharashtra","Manipur","Meghalaya","Mizoram","Nagaland","Odisha","Puducherry","Punjab","Rajasthan","Sikkim","Tamil Nadu","Telangana","Tripura","Uttar Pradesh","Uttarakhand","West Bengal"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:30"],"tld":[".in"],"translations":{"de":"Indien","es":"India","fr":"Inde","ja":"インド","it":"India"},"wiki":"http://en.wikipedia.org/wiki/india"} \ No newline at end of file +{"name":"India","altSpellings":["IN","Bhārat","Republic of India","Bharat Ganrajya"],"area":3287590,"borders":["AFG","BGD","BTN","MMR","CHN","NPL","PAK","LKA"],"callingCodes":["91"],"capital":"New Delhi","capital_latlng":[28.614179,77.202266],"currencies":["INR"],"demonym":"Indian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IND","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]}}]},"ISO":{"alpha2":"IN","alpha3":"IND"},"languages":["hi","en"],"latlng":[20,77],"nativeName":"भारत","population":1263930000,"provinces":["Andaman and Nicobar Islands","Andhra Pradesh","Arunachal Pradesh","Assam","Bihar","Chandigarh","Chhattisgarh","Dadra and Nagar Haveli","Daman and Diu","Delhi","Goa","Gujarat","Haryana","Himachal Pradesh","Jammu and Kashmir","Jharkhand","Karnataka","Kerala","Lakshadweep","Madhya Pradesh","Maharashtra","Manipur","Meghalaya","Mizoram","Nagaland","Odisha","Puducherry","Punjab","Rajasthan","Sikkim","Tamil Nadu","Telangana","Tripura","Uttar Pradesh","Uttarakhand","West Bengal"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:30"],"tld":[".in"],"translations":{"de":"Indien","es":"India","fr":"Inde","ja":"インド","it":"India"},"wiki":"http://en.wikipedia.org/wiki/india"} \ No newline at end of file diff --git a/countryinfo/data/indonesia.json b/countryinfo/data/indonesia.json index c7ca518..413218c 100644 --- a/countryinfo/data/indonesia.json +++ b/countryinfo/data/indonesia.json @@ -1 +1 @@ -{"name":"Indonesia","altSpellings":["ID","Republic of Indonesia","Republik Indonesia"],"area":1904569,"borders":["TLS","MYS","PNG"],"callingCodes":["62"],"capital":"Jakarta","currencies":["IDR"],"demonym":"Indonesian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IDN","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]}}]},"ISO":{"alpha2":"ID","alpha3":"IDN"},"languages":["id"],"latlng":[-5,120],"nativeName":"Indonesia","population":252164800,"provinces":["Aceh","Bali","Banten","Bengkulu","Gorontalo","Jakarta","Jambi","Jawa Barat","Jawa Tengah","Jawa Timur","Kalimantan Barat","Kalimantan Selatan","Kalimantan Tengah","Kalimantan Timur","Kalimantan Utara","Kepulauan Bangka Belitung","Kepulauan Riau","Lampung","Maluku","Maluku Utara","Nusa Tenggara Barat","Nusa Tenggara Timur","Papua","Papua Barat","Riau","Sulawesi Barat","Sulawesi Selatan","Sulawesi Tengah","Sulawesi Utara","Sumatera Barat","Sumatera Selatan","Sumatera Utara","Yogyakarta"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00","UTC+08:00","UTC+09:00"],"tld":[".id"],"translations":{"de":"Indonesien","es":"Indonesia","fr":"Indonésie","ja":"インドネシア","it":"Indonesia"},"wiki":"http://en.wikipedia.org/wiki/indonesia"} +{"name":"Indonesia","altSpellings":["ID","Republic of Indonesia","Republik Indonesia"],"area":1904569,"borders":["TLS","MYS","PNG"],"callingCodes":["62"],"capital":"Jakarta","capital_latlng":[-6.175394,106.827183],"currencies":["IDR"],"demonym":"Indonesian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IDN","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]}}]},"ISO":{"alpha2":"ID","alpha3":"IDN"},"languages":["id"],"latlng":[-5,120],"nativeName":"Indonesia","population":252164800,"provinces":["Aceh","Bali","Banten","Bengkulu","Gorontalo","Jakarta","Jambi","Jawa Barat","Jawa Tengah","Jawa Timur","Kalimantan Barat","Kalimantan Selatan","Kalimantan Tengah","Kalimantan Timur","Kalimantan Utara","Kepulauan Bangka Belitung","Kepulauan Riau","Lampung","Maluku","Maluku Utara","Nusa Tenggara Barat","Nusa Tenggara Timur","Papua","Papua Barat","Riau","Sulawesi Barat","Sulawesi Selatan","Sulawesi Tengah","Sulawesi Utara","Sumatera Barat","Sumatera Selatan","Sumatera Utara","Yogyakarta"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00","UTC+08:00","UTC+09:00"],"tld":[".id"],"translations":{"de":"Indonesien","es":"Indonesia","fr":"Indonésie","ja":"インドネシア","it":"Indonesia"},"wiki":"http://en.wikipedia.org/wiki/indonesia"} \ No newline at end of file diff --git a/countryinfo/data/iran.json b/countryinfo/data/iran.json index 7e2f374..2b20373 100644 --- a/countryinfo/data/iran.json +++ b/countryinfo/data/iran.json @@ -1 +1 @@ -{"name":"Iran","altSpellings":["IR","Islamic Republic of Iran","Jomhuri-ye Eslāmi-ye Irān"],"area":1648195,"borders":["AFG","ARM","AZE","IRQ","PAK","TUR","TKM"],"callingCodes":["98"],"capital":"Tehran","currencies":["IRR"],"demonym":"Iranian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IRN","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]}}]},"ISO":{"alpha2":"IR","alpha3":"IRN"},"languages":["fa"],"latlng":[32,53],"nativeName":"Irān","population":77966400,"provinces":["Ardabil","Azarbayjan-e Gharbi","Azarbayjan-e Sharqi","Bushehr","Chahar Mahall va Bakhtiari","Esfahan","Fars","Gilan","Golestan","Hamadan","Hormozgan","Ilam","Kerman","Kermanshah","Khorasan","Khuzestan","Kohgiluyeh va Buyer Ahmad","Kordestan","Lorestan","Markazi","Mazandaran","Qazvin","Qom","Semnan","Sistan va Baluchestan","Tehran","Yazd","Zanjan"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+03:30"],"tld":[".ir"],"translations":{"de":"Iran","es":"Iran","fr":"Iran","ja":"イラン・イスラム共和国","it":null},"wiki":"http://en.wikipedia.org/wiki/iran"} \ No newline at end of file +{"name":"Iran","altSpellings":["IR","Islamic Republic of Iran","Jomhuri-ye Eslāmi-ye Irān"],"area":1648195,"borders":["AFG","ARM","AZE","IRQ","PAK","TUR","TKM"],"callingCodes":["98"],"capital":"Tehran","capital_latlng":[35.700618,51.401378],"currencies":["IRR"],"demonym":"Iranian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IRN","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]}}]},"ISO":{"alpha2":"IR","alpha3":"IRN"},"languages":["fa"],"latlng":[32,53],"nativeName":"Irān","population":77966400,"provinces":["Ardabil","Azarbayjan-e Gharbi","Azarbayjan-e Sharqi","Bushehr","Chahar Mahall va Bakhtiari","Esfahan","Fars","Gilan","Golestan","Hamadan","Hormozgan","Ilam","Kerman","Kermanshah","Khorasan","Khuzestan","Kohgiluyeh va Buyer Ahmad","Kordestan","Lorestan","Markazi","Mazandaran","Qazvin","Qom","Semnan","Sistan va Baluchestan","Tehran","Yazd","Zanjan"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+03:30"],"tld":[".ir"],"translations":{"de":"Iran","es":"Iran","fr":"Iran","ja":"イラン・イスラム共和国","it":null},"wiki":"http://en.wikipedia.org/wiki/iran"} \ No newline at end of file diff --git a/countryinfo/data/iraq.json b/countryinfo/data/iraq.json index f83fe89..4aa1e3a 100644 --- a/countryinfo/data/iraq.json +++ b/countryinfo/data/iraq.json @@ -1 +1 @@ -{"name":"Iraq","altSpellings":["IQ","Republic of Iraq","Jumhūriyyat al-‘Irāq"],"area":438317,"borders":["IRN","JOR","KWT","SAU","SYR","TUR"],"callingCodes":["964"],"capital":"Baghdad","currencies":["IQD"],"demonym":"Iraqi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IRQ","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]}}]},"ISO":{"alpha2":"IQ","alpha3":"IRQ"},"languages":["ar","ku"],"latlng":[33,44],"nativeName":"العراق","population":36004552,"provinces":["Al Anbar","Al Basrah","Al Muthanna","Al Qadisiyah","An Najaf","Arbil","As Sulaymaniyah","At Ta'mim","Babil","Baghdad","Dahuk","Dhi Qar","Diyala","Karbala'","Maysan","Ninawa","Salah ad Din","Wasit"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".iq"],"translations":{"de":"Irak","es":"Irak","fr":"Irak","ja":"イラク","it":"Iraq"},"wiki":"http://en.wikipedia.org/wiki/iraq"} \ No newline at end of file +{"name":"Iraq","altSpellings":["IQ","Republic of Iraq","Jumhūriyyat al-‘Irāq"],"area":438317,"borders":["IRN","JOR","KWT","SAU","SYR","TUR"],"callingCodes":["964"],"capital":"Baghdad","capital_latlng":[33.302431,44.378799],"currencies":["IQD"],"demonym":"Iraqi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IRQ","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]}}]},"ISO":{"alpha2":"IQ","alpha3":"IRQ"},"languages":["ar","ku"],"latlng":[33,44],"nativeName":"العراق","population":36004552,"provinces":["Al Anbar","Al Basrah","Al Muthanna","Al Qadisiyah","An Najaf","Arbil","As Sulaymaniyah","At Ta'mim","Babil","Baghdad","Dahuk","Dhi Qar","Diyala","Karbala'","Maysan","Ninawa","Salah ad Din","Wasit"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".iq"],"translations":{"de":"Irak","es":"Irak","fr":"Irak","ja":"イラク","it":"Iraq"},"wiki":"http://en.wikipedia.org/wiki/iraq"} \ No newline at end of file diff --git a/countryinfo/data/ireland.json b/countryinfo/data/ireland.json index 30a31de..2b506e2 100644 --- a/countryinfo/data/ireland.json +++ b/countryinfo/data/ireland.json @@ -1,62 +1 @@ -{ - "name": "Ireland", - "altSpellings": ["IE", "Éire", "Republic of Ireland", "Poblacht na hÉireann"], - "area": 70273, - "borders": ["GBR"], - "callingCodes": ["353"], - "capital": "Dublin", - "currencies": ["EUR"], - "demonym": "Irish", - "flag": "", - "geoJSON": { - "type": "FeatureCollection", - "features": [{ - "type": "Feature", - "id": "IRL", - "properties": { - "name": "Ireland" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-6.197885, 53.867565], - [-6.032985, 53.153164], - [-6.788857, 52.260118], - [-8.561617, 51.669301], - [-9.977086, 51.820455], - [-9.166283, 52.864629], - [-9.688525, 53.881363], - [-8.327987, 54.664519], - [-7.572168, 55.131622], - [-7.366031, 54.595841], - [-7.572168, 54.059956], - [-6.95373, 54.073702], - [-6.197885, 53.867565] - ] - ] - } - }] - }, - "ISO": { - "alpha2": "IE", - "alpha3": "IRL" - }, - "languages": ["ga", "en"], - "latlng": [53, -8], - "nativeName": "Éire", - "population": 6378000, - "provinces": ["Carlow", "Cavan", "Clare", "Cork", "Donegal", "Dublin", "Galway", "Kerry", "Kildare", "Kilkenny", "Laois", "Leitrim", "Limerick", "Longford", "Louth", "Mayo", "Meath", "Monaghan", "Offaly", "Roscommon", "Sligo", "Tipperary", "Waterford", "Westmeath", "Wexford", "Wicklow"], - "region": "Europe", - "subregion": "Northern Europe", - "timezones": ["UTC"], - "tld": [".ie"], - "translations": { - "de": "Irland", - "es": "Irlanda", - "fr": "Irlande", - "ja": "アイルランド", - "it": "Irlanda" - }, - "wiki": "http://en.wikipedia.org/wiki/ireland" -} +{"name":"Ireland","altSpellings":["IE","Éire","Republic of Ireland","Poblacht na hÉireann"],"area":70273,"borders":["GBR"],"callingCodes":["353"],"capital":"Dublin","capital_latlng":[53.349764,-6.260273],"currencies":["EUR"],"demonym":"Irish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"IRL","properties":{"name":"Ireland"},"geometry":{"type":"Polygon","coordinates":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]}}]},"ISO":{"alpha2":"IE","alpha3":"IRL"},"languages":["ga","en"],"latlng":[53,-8],"nativeName":"Éire","population":6378000,"provinces":["Carlow","Cavan","Clare","Cork","Donegal","Dublin","Galway","Kerry","Kildare","Kilkenny","Laois","Leitrim","Limerick","Longford","Louth","Mayo","Meath","Monaghan","Offaly","Roscommon","Sligo","Tipperary","Waterford","Westmeath","Wexford","Wicklow"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC"],"tld":[".ie"],"translations":{"de":"Irland","es":"Irlanda","fr":"Irlande","ja":"アイルランド","it":"Irlanda"},"wiki":"http://en.wikipedia.org/wiki/ireland"} \ No newline at end of file diff --git a/countryinfo/data/israel.json b/countryinfo/data/israel.json index b505df9..8903be1 100644 --- a/countryinfo/data/israel.json +++ b/countryinfo/data/israel.json @@ -1 +1 @@ -{"name":"Israel","altSpellings":["IL","State of Israel","Medīnat Yisrā'el"],"area":20770,"borders":["EGY","JOR","LBN","SYR"],"callingCodes":["972"],"capital":"Jerusalem","currencies":["ILS"],"demonym":"Israeli","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ISR","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]}}]},"ISO":{"alpha2":"IL","alpha3":"ISR"},"languages":["he","ar"],"latlng":[31.5,34.75],"nativeName":"יִשְׂרָאֵל","population":8268400,"provinces":["Central","Haifa","Jerusalem","Northern","Southern","Tel Aviv"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".il"],"translations":{"de":"Israel","es":"Israel","fr":"Israël","ja":"イスラエル","it":"Israele"},"wiki":"http://en.wikipedia.org/wiki/israel"} \ No newline at end of file +{"name":"Israel","altSpellings":["IL","State of Israel","Medīnat Yisrā'el"],"area":20770,"borders":["EGY","JOR","LBN","SYR"],"callingCodes":["972"],"capital":"Jerusalem","capital_latlng":[31.778345,35.225079],"currencies":["ILS"],"demonym":"Israeli","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ISR","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]}}]},"ISO":{"alpha2":"IL","alpha3":"ISR"},"languages":["he","ar"],"latlng":[31.5,34.75],"nativeName":"יִשְׂרָאֵל","population":8268400,"provinces":["Central","Haifa","Jerusalem","Northern","Southern","Tel Aviv"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".il"],"translations":{"de":"Israel","es":"Israel","fr":"Israël","ja":"イスラエル","it":"Israele"},"wiki":"http://en.wikipedia.org/wiki/israel"} \ No newline at end of file diff --git a/countryinfo/data/italy.json b/countryinfo/data/italy.json index 48c5076..4974ab5 100644 --- a/countryinfo/data/italy.json +++ b/countryinfo/data/italy.json @@ -1 +1 @@ -{"name":"Italy","altSpellings":["IT","Italian Republic","Repubblica italiana"],"area":301336,"borders":["AUT","FRA","SMR","SVN","CHE","VAT"],"callingCodes":["39"],"capital":"Rome","currencies":["EUR"],"demonym":"Italian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ITA","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]}}]},"ISO":{"alpha2":"IT","alpha3":"ITA"},"languages":["it"],"latlng":[42.83333333,12.83333333],"nativeName":"Italia","population":60769102,"provinces":["Abruzzo","Basilicata","Calabria","Campania","Emilia-Romagna","Friuli-Venezia Giulia","Lazio","Liguria","Lombardia","Marche","Molise","Piemonte","Puglia","Sardegna","Sicilia","Toscana","Trentino-Alto Adige","Umbria","Valle d'Aosta","Veneto"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".it"],"translations":{"de":"Italien","es":"Italia","fr":"Italie","ja":"イタリア","it":"Italia"},"wiki":"http://en.wikipedia.org/wiki/italy"} \ No newline at end of file +{"name":"Italy","altSpellings":["IT","Italian Republic","Repubblica italiana"],"area":301336,"borders":["AUT","FRA","SMR","SVN","CHE","VAT"],"callingCodes":["39"],"capital":"Rome","capital_latlng":[41.89332,12.482932],"currencies":["EUR"],"demonym":"Italian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ITA","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]}}]},"ISO":{"alpha2":"IT","alpha3":"ITA"},"languages":["it"],"latlng":[42.83333333,12.83333333],"nativeName":"Italia","population":60769102,"provinces":["Abruzzo","Basilicata","Calabria","Campania","Emilia-Romagna","Friuli-Venezia Giulia","Lazio","Liguria","Lombardia","Marche","Molise","Piemonte","Puglia","Sardegna","Sicilia","Toscana","Trentino-Alto Adige","Umbria","Valle d'Aosta","Veneto"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".it"],"translations":{"de":"Italien","es":"Italia","fr":"Italie","ja":"イタリア","it":"Italia"},"wiki":"http://en.wikipedia.org/wiki/italy"} \ No newline at end of file diff --git a/countryinfo/data/jamaica.json b/countryinfo/data/jamaica.json index cd142ea..66f5f39 100644 --- a/countryinfo/data/jamaica.json +++ b/countryinfo/data/jamaica.json @@ -1 +1 @@ -{"name":"Jamaica","altSpellings":["JM"],"area":10991,"borders":[],"callingCodes":["1876"],"capital":"Kingston","currencies":["JMD"],"demonym":"Jamaican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JAM","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]}}]},"ISO":{"alpha2":"JM","alpha3":"JAM"},"languages":["en"],"latlng":[18.25,-77.5],"nativeName":"Jamaica","population":2717991,"provinces":["Clarendon","Hanover","Kingston","Manchester","Portland","Saint Andrew","Saint Ann","Saint Catherine","Saint Elizabeth","Saint James","Saint Mary","Saint Thomas","Trelawny","Westmoreland"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".jm"],"translations":{"de":"Jamaika","es":"Jamaica","fr":"Jamaïque","ja":"ジャマイカ","it":"Giamaica"},"wiki":"http://en.wikipedia.org/wiki/jamaica"} \ No newline at end of file +{"name":"Jamaica","altSpellings":["JM"],"area":10991,"borders":[],"callingCodes":["1876"],"capital":"Kingston","capital_latlng":[17.971215,-76.792813],"currencies":["JMD"],"demonym":"Jamaican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JAM","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]}}]},"ISO":{"alpha2":"JM","alpha3":"JAM"},"languages":["en"],"latlng":[18.25,-77.5],"nativeName":"Jamaica","population":2717991,"provinces":["Clarendon","Hanover","Kingston","Manchester","Portland","Saint Andrew","Saint Ann","Saint Catherine","Saint Elizabeth","Saint James","Saint Mary","Saint Thomas","Trelawny","Westmoreland"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−05:00"],"tld":[".jm"],"translations":{"de":"Jamaika","es":"Jamaica","fr":"Jamaïque","ja":"ジャマイカ","it":"Giamaica"},"wiki":"http://en.wikipedia.org/wiki/jamaica"} \ No newline at end of file diff --git a/countryinfo/data/japan.json b/countryinfo/data/japan.json index f6887fb..09465f3 100644 --- a/countryinfo/data/japan.json +++ b/countryinfo/data/japan.json @@ -1 +1 @@ -{"name":"Japan","altSpellings":["JP","Nippon","Nihon"],"area":377930,"borders":[],"callingCodes":["81"],"capital":"Tokyo","currencies":["JPY"],"demonym":"Japanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JPN","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]}}]},"ISO":{"alpha2":"JP","alpha3":"JPN"},"languages":["ja"],"latlng":[36,138],"nativeName":"日本","population":127080000,"provinces":["Aichi","Akita","Aomori","Chiba","Ehime","Fukui","Fukuoka","Fukushima","Gifu","Gumma","Hiroshima","Hokkaido","Hyogo","Ibaraki","Ishikawa","Iwate","Kagawa","Kagoshima","Kanagawa","Kochi","Kumamoto","Kyoto","Mie","Miyagi","Miyazaki","Nagano","Nagasaki","Nara","Niigata","Oita","Okayama","Okinawa","Osaka","Saga","Saitama","Shiga","Shimane","Shizuoka","Tochigi","Tokushima","Tokyo","Tottori","Toyama","Wakayama","Yamagata","Yamaguchi","Yamanashi"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".jp"],"translations":{"de":"Japan","es":"Japón","fr":"Japon","ja":"日本","it":"Giappone"},"wiki":"http://en.wikipedia.org/wiki/japan"} \ No newline at end of file +{"name":"Japan","altSpellings":["JP","Nippon","Nihon"],"area":377930,"borders":[],"callingCodes":["81"],"capital":"Tokyo","capital_latlng":[35.682839,139.759455],"currencies":["JPY"],"demonym":"Japanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JPN","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]}}]},"ISO":{"alpha2":"JP","alpha3":"JPN"},"languages":["ja"],"latlng":[36,138],"nativeName":"日本","population":127080000,"provinces":["Aichi","Akita","Aomori","Chiba","Ehime","Fukui","Fukuoka","Fukushima","Gifu","Gumma","Hiroshima","Hokkaido","Hyogo","Ibaraki","Ishikawa","Iwate","Kagawa","Kagoshima","Kanagawa","Kochi","Kumamoto","Kyoto","Mie","Miyagi","Miyazaki","Nagano","Nagasaki","Nara","Niigata","Oita","Okayama","Okinawa","Osaka","Saga","Saitama","Shiga","Shimane","Shizuoka","Tochigi","Tokushima","Tokyo","Tottori","Toyama","Wakayama","Yamagata","Yamaguchi","Yamanashi"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".jp"],"translations":{"de":"Japan","es":"Japón","fr":"Japon","ja":"日本","it":"Giappone"},"wiki":"http://en.wikipedia.org/wiki/japan"} \ No newline at end of file diff --git a/countryinfo/data/jersey.json b/countryinfo/data/jersey.json index 755516e..fcfb60e 100644 --- a/countryinfo/data/jersey.json +++ b/countryinfo/data/jersey.json @@ -1 +1 @@ -{"name":"Jersey","altSpellings":["JE","Bailiwick of Jersey","Bailliage de Jersey","Bailliage dé Jèrri"],"area":116,"borders":[],"callingCodes":["44"],"capital":"Saint Helier","currencies":["GBP"],"demonym":"Channel Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"JE","alpha3":"JEY"},"languages":["en","fr"],"latlng":[49.25,-2.16666666],"nativeName":"Jersey","population":99000,"provinces":["Jersey"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".je"],"translations":{"de":"Jersey","es":"Jersey","fr":"Jersey","ja":"ジャージー","it":"Isola di Jersey"},"wiki":"http://en.wikipedia.org/wiki/jersey"} \ No newline at end of file +{"name":"Jersey","altSpellings":["JE","Bailiwick of Jersey","Bailliage de Jersey","Bailliage dé Jèrri"],"area":116,"borders":[],"callingCodes":["44"],"capital":"Saint Helier","capital_latlng":[47.384387,4.683325],"currencies":["GBP"],"demonym":"Channel Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"JE","alpha3":"JEY"},"languages":["en","fr"],"latlng":[49.25,-2.16666666],"nativeName":"Jersey","population":99000,"provinces":["Jersey"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".je"],"translations":{"de":"Jersey","es":"Jersey","fr":"Jersey","ja":"ジャージー","it":"Isola di Jersey"},"wiki":"http://en.wikipedia.org/wiki/jersey"} \ No newline at end of file diff --git a/countryinfo/data/jordan.json b/countryinfo/data/jordan.json index 5dd7b9a..999d996 100644 --- a/countryinfo/data/jordan.json +++ b/countryinfo/data/jordan.json @@ -1 +1 @@ -{"name":"Jordan","altSpellings":["JO","Hashemite Kingdom of Jordan","al-Mamlakah al-Urdunīyah al-Hāshimīyah"],"area":89342,"borders":["IRQ","ISR","SAU","SYR"],"callingCodes":["962"],"capital":"Amman","currencies":["JOD"],"demonym":"Jordanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JOR","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]}}]},"ISO":{"alpha2":"JO","alpha3":"JOR"},"languages":["ar"],"latlng":[31,36],"nativeName":"الأردن","population":6666960,"provinces":["'Amman","Ajlun","Al 'Aqabah","Al Balqa'","Al Karak","Al Mafraq","At Tafilah","Az Zarqa'","Irbid","Jarash","Ma'an","Madaba"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".jo"],"translations":{"de":"Jordanien","es":"Jordania","fr":"Jordanie","ja":"ヨルダン","it":"Giordania"},"wiki":"http://en.wikipedia.org/wiki/jordan"} \ No newline at end of file +{"name":"Jordan","altSpellings":["JO","Hashemite Kingdom of Jordan","al-Mamlakah al-Urdunīyah al-Hāshimīyah"],"area":89342,"borders":["IRQ","ISR","SAU","SYR"],"callingCodes":["962"],"capital":"Amman","capital_latlng":[31.951569,35.923962],"currencies":["JOD"],"demonym":"Jordanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"JOR","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]}}]},"ISO":{"alpha2":"JO","alpha3":"JOR"},"languages":["ar"],"latlng":[31,36],"nativeName":"الأردن","population":6666960,"provinces":["'Amman","Ajlun","Al 'Aqabah","Al Balqa'","Al Karak","Al Mafraq","At Tafilah","Az Zarqa'","Irbid","Jarash","Ma'an","Madaba"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".jo"],"translations":{"de":"Jordanien","es":"Jordania","fr":"Jordanie","ja":"ヨルダン","it":"Giordania"},"wiki":"http://en.wikipedia.org/wiki/jordan"} \ No newline at end of file diff --git a/countryinfo/data/kazakhstan.json b/countryinfo/data/kazakhstan.json index 686ff17..5abfabd 100644 --- a/countryinfo/data/kazakhstan.json +++ b/countryinfo/data/kazakhstan.json @@ -1 +1 @@ -{"name":"Kazakhstan","altSpellings":["KZ","Qazaqstan","Казахстан","Republic of Kazakhstan","Қазақстан Республикасы","Qazaqstan Respublïkası","Республика Казахстан","Respublika Kazakhstan"],"area":2724900,"borders":["CHN","KGZ","RUS","TKM","UZB"],"callingCodes":["76","77"],"capital":"Astana","currencies":["KZT"],"demonym":"Kazakhstani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KAZ","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]}}]},"ISO":{"alpha2":"KZ","alpha3":"KAZ"},"languages":["kk","ru"],"latlng":[48,68],"nativeName":"Қазақстан","population":17377800,"provinces":["Almaty","Aqmola","Aqtobe","Astana","Atyrau","Batys Qazaqstan","Bayqongyr","Mangghystau","Ongtustik Qazaqstan","Pavlodar","Qaraghandy","Qostanay","Qyzylorda","Shyghys Qazaqstan","Soltustik Qazaqstan","Zhambyl"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00","UTC+06:00"],"tld":[".kz",".қаз"],"translations":{"de":"Kasachstan","es":"Kazajistán","fr":"Kazakhstan","ja":"カザフスタン","it":"Kazakistan"},"wiki":"http://en.wikipedia.org/wiki/kazakhstan"} \ No newline at end of file +{"name":"Kazakhstan","altSpellings":["KZ","Qazaqstan","Казахстан","Republic of Kazakhstan","Қазақстан Республикасы","Qazaqstan Respublïkası","Республика Казахстан","Respublika Kazakhstan"],"area":2724900,"borders":["CHN","KGZ","RUS","TKM","UZB"],"callingCodes":["76","77"],"capital":"Astana","capital_latlng":[51.12822,71.430668],"currencies":["KZT"],"demonym":"Kazakhstani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KAZ","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]}}]},"ISO":{"alpha2":"KZ","alpha3":"KAZ"},"languages":["kk","ru"],"latlng":[48,68],"nativeName":"Қазақстан","population":17377800,"provinces":["Almaty","Aqmola","Aqtobe","Astana","Atyrau","Batys Qazaqstan","Bayqongyr","Mangghystau","Ongtustik Qazaqstan","Pavlodar","Qaraghandy","Qostanay","Qyzylorda","Shyghys Qazaqstan","Soltustik Qazaqstan","Zhambyl"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00","UTC+06:00"],"tld":[".kz",".қаз"],"translations":{"de":"Kasachstan","es":"Kazajistán","fr":"Kazakhstan","ja":"カザフスタン","it":"Kazakistan"},"wiki":"http://en.wikipedia.org/wiki/kazakhstan"} \ No newline at end of file diff --git a/countryinfo/data/kenya.json b/countryinfo/data/kenya.json index 2054f59..40759f5 100644 --- a/countryinfo/data/kenya.json +++ b/countryinfo/data/kenya.json @@ -1 +1 @@ -{"name":"Kenya","altSpellings":["KE","Republic of Kenya","Jamhuri ya Kenya"],"area":580367,"borders":["ETH","SOM","SSD","TZA","UGA"],"callingCodes":["254"],"capital":"Nairobi","currencies":["KES"],"demonym":"Kenyan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KEN","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]}}]},"ISO":{"alpha2":"KE","alpha3":"KEN"},"languages":["en","sw"],"latlng":[1,38],"nativeName":"Kenya","population":41800000,"provinces":["Central","Coast","Eastern","Nairobi Area","North Eastern","Nyanza","Rift Valley","Western"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".ke"],"translations":{"de":"Kenia","es":"Kenia","fr":"Kenya","ja":"ケニア","it":"Kenya"},"wiki":"http://en.wikipedia.org/wiki/kenya"} \ No newline at end of file +{"name":"Kenya","altSpellings":["KE","Republic of Kenya","Jamhuri ya Kenya"],"area":580367,"borders":["ETH","SOM","SSD","TZA","UGA"],"callingCodes":["254"],"capital":"Nairobi","capital_latlng":[-1.283253,36.817245],"currencies":["KES"],"demonym":"Kenyan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KEN","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]}}]},"ISO":{"alpha2":"KE","alpha3":"KEN"},"languages":["en","sw"],"latlng":[1,38],"nativeName":"Kenya","population":41800000,"provinces":["Central","Coast","Eastern","Nairobi Area","North Eastern","Nyanza","Rift Valley","Western"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".ke"],"translations":{"de":"Kenia","es":"Kenia","fr":"Kenya","ja":"ケニア","it":"Kenya"},"wiki":"http://en.wikipedia.org/wiki/kenya"} \ No newline at end of file diff --git a/countryinfo/data/kiribati.json b/countryinfo/data/kiribati.json index 2b4cadd..8fe876a 100644 --- a/countryinfo/data/kiribati.json +++ b/countryinfo/data/kiribati.json @@ -1,82 +1 @@ -{ - "name": "Kiribati", - "altSpellings": [ - "KI", - "Republic of Kiribati", - "Ribaberiki Kiribati" - ], - "area": 811, - "borders": [], - "callingCodes": [ - "686" - ], - "capital": "South Tarawa", - "currencies": [ - "AUD" - ], - "demonym": "I-Kiribati", - "flag": "", - "geoJSON": {}, - "ISO": { - "alpha2": "KI", - "alpha3": "KIR" - }, - "languages": [ - "en" - ], - "latlng": [ - 1.41666666, - 173 - ], - "nativeName": "Kiribati", - "population": 106461, - "provinces": [ - "Abaiang", - "Abemama", - "Aranuka", - "Arorae", - "Banaba", - "Beru", - "Butaritari", - "Central Gilberts", - "Gilbert Islands", - "Kanton", - "Kiritimati", - "Kuria", - "Line Islands", - "Line Islands", - "Maiana", - "Makin", - "Marakei", - "Nikunau", - "Nonouti", - "Northern Gilberts", - "Onotoa", - "Phoenix Islands", - "Southern Gilberts", - "Tabiteuea", - "Tabuaeran", - "Tamana", - "Tarawa", - "Tarawa", - "Teraina" - ], - "region": "Oceania", - "subregion": "Micronesia", - "timezones": [ - "UTC+12:00", - "UTC+13:00", - "UTC+14:00" - ], - "tld": [ - ".ki" - ], - "translations": { - "de": "Kiribati", - "es": "Kiribati", - "fr": "Kiribati", - "ja": "キリバス", - "it": "Kiribati" - }, - "wiki": "http://en.wikipedia.org/wiki/kiribati" -} +{"name":"Kiribati","altSpellings":["KI","Republic of Kiribati","Ribaberiki Kiribati"],"area":811,"borders":[],"callingCodes":["686"],"capital":"South Tarawa","capital_latlng":[1.349078,173.038651],"currencies":["AUD"],"demonym":"I-Kiribati","flag":"","geoJSON":{},"ISO":{"alpha2":"KI","alpha3":"KIR"},"languages":["en"],"latlng":[1.41666666,173],"nativeName":"Kiribati","population":106461,"provinces":["Abaiang","Abemama","Aranuka","Arorae","Banaba","Beru","Butaritari","Central Gilberts","Gilbert Islands","Kanton","Kiritimati","Kuria","Line Islands","Line Islands","Maiana","Makin","Marakei","Nikunau","Nonouti","Northern Gilberts","Onotoa","Phoenix Islands","Southern Gilberts","Tabiteuea","Tabuaeran","Tamana","Tarawa","Tarawa","Teraina"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+12:00","UTC+13:00","UTC+14:00"],"tld":[".ki"],"translations":{"de":"Kiribati","es":"Kiribati","fr":"Kiribati","ja":"キリバス","it":"Kiribati"},"wiki":"http://en.wikipedia.org/wiki/kiribati"} \ No newline at end of file diff --git a/countryinfo/data/korea_north.json b/countryinfo/data/korea_north.json index c7d208c..085fb27 100644 --- a/countryinfo/data/korea_north.json +++ b/countryinfo/data/korea_north.json @@ -1 +1 @@ -{"name":"North Korea","altSpellings":["KP","Democratic People's Republic of Korea","조선민주주의인민공화국","Chosŏn Minjujuŭi Inmin Konghwaguk"],"area":120538,"borders":["CHN","KOR","RUS"],"callingCodes":["850"],"capital":"Pyongyang","currencies":["KPW"],"demonym":"North Korean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRK","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]}}]},"ISO":{"alpha2":"KP","alpha3":"PRK"},"languages":["ko"],"latlng":[40,127],"nativeName":"북한","population":25027000,"provinces":["Chagang-do (Chagang Province)","Hamgyong-bukto (North Hamgyong Province)","Hamgyong-namdo (South Hamgyong Province)","Hwanghae-bukto (North Hwanghae Province)","Hwanghae-namdo (South Hwanghae Province)","Kaesong-si (Kaesong City)","Kangwon-do (Kangwon Province)","Namp'o-si (Namp'o City)","P'yongan-bukto (North P'yongan Province)","P'yongan-namdo (South P'yongan Province)","P'yongyang-si (P'yongyang City)","Yanggang-do (Yanggang Province)"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".kp"],"translations":{"de":"Nordkorea","es":"Corea del Norte","fr":"Corée du Nord","ja":"朝鮮民主主義人民共和国","it":"Corea del Nord"},"wiki":"http://en.wikipedia.org/wiki/korea_north"} \ No newline at end of file +{"name":"North Korea","altSpellings":["KP","Democratic People's Republic of Korea","조선민주주의인민공화국","Chosŏn Minjujuŭi Inmin Konghwaguk"],"area":120538,"borders":["CHN","KOR","RUS"],"callingCodes":["850"],"capital":"Pyongyang","capital_latlng":[39.019474,125.753388],"currencies":["KPW"],"demonym":"North Korean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRK","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]}}]},"ISO":{"alpha2":"KP","alpha3":"PRK"},"languages":["ko"],"latlng":[40,127],"nativeName":"북한","population":25027000,"provinces":["Chagang-do (Chagang Province)","Hamgyong-bukto (North Hamgyong Province)","Hamgyong-namdo (South Hamgyong Province)","Hwanghae-bukto (North Hwanghae Province)","Hwanghae-namdo (South Hwanghae Province)","Kaesong-si (Kaesong City)","Kangwon-do (Kangwon Province)","Namp'o-si (Namp'o City)","P'yongan-bukto (North P'yongan Province)","P'yongan-namdo (South P'yongan Province)","P'yongyang-si (P'yongyang City)","Yanggang-do (Yanggang Province)"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".kp"],"translations":{"de":"Nordkorea","es":"Corea del Norte","fr":"Corée du Nord","ja":"朝鮮民主主義人民共和国","it":"Corea del Nord"},"wiki":"http://en.wikipedia.org/wiki/korea_north"} \ No newline at end of file diff --git a/countryinfo/data/korea_south.json b/countryinfo/data/korea_south.json index 68911f2..cdf87e5 100644 --- a/countryinfo/data/korea_south.json +++ b/countryinfo/data/korea_south.json @@ -1 +1 @@ -{"name":"South Korea","altSpellings":["KR","Republic of Korea"],"area":100210,"borders":["PRK"],"callingCodes":["82"],"capital":"Seoul","currencies":["KRW"],"demonym":"South Korean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KOR","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]}}]},"ISO":{"alpha2":"KR","alpha3":"KOR"},"languages":["ko"],"latlng":[37,127.5],"nativeName":"대한민국","population":50423955,"provinces":["Ch'ungch'ong-bukto","Ch'ungch'ong-namdo","Cheju-do","Cholla-bukto","Cholla-namdo","Inch'on-gwangyoksi","Kangwon-do","Kwangju-gwangyoksi","Kyonggi-do","Kyongsang-bukto","Kyongsang-namdo","Pusan-gwangyoksi","Soul-t'ukpyolsi","Taegu-gwangyoksi","Taejon-gwangyoksi","Ulsan-gwangyoksi"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".kr"],"translations":{"de":"Südkorea","es":"Corea del Sur","fr":"Corée du Sud","ja":"大韓民国","it":"Corea del Sud"},"wiki":"http://en.wikipedia.org/wiki/korea_south"} \ No newline at end of file +{"name":"South Korea","altSpellings":["KR","Republic of Korea"],"area":100210,"borders":["PRK"],"callingCodes":["82"],"capital":"Seoul","capital_latlng":[37.566679,126.978291],"currencies":["KRW"],"demonym":"South Korean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KOR","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]}}]},"ISO":{"alpha2":"KR","alpha3":"KOR"},"languages":["ko"],"latlng":[37,127.5],"nativeName":"대한민국","population":50423955,"provinces":["Ch'ungch'ong-bukto","Ch'ungch'ong-namdo","Cheju-do","Cholla-bukto","Cholla-namdo","Inch'on-gwangyoksi","Kangwon-do","Kwangju-gwangyoksi","Kyonggi-do","Kyongsang-bukto","Kyongsang-namdo","Pusan-gwangyoksi","Soul-t'ukpyolsi","Taegu-gwangyoksi","Taejon-gwangyoksi","Ulsan-gwangyoksi"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+09:00"],"tld":[".kr"],"translations":{"de":"Südkorea","es":"Corea del Sur","fr":"Corée du Sud","ja":"大韓民国","it":"Corea del Sud"},"wiki":"http://en.wikipedia.org/wiki/korea_south"} \ No newline at end of file diff --git a/countryinfo/data/kuwait.json b/countryinfo/data/kuwait.json index 20a541e..6183106 100644 --- a/countryinfo/data/kuwait.json +++ b/countryinfo/data/kuwait.json @@ -1 +1 @@ -{"name":"Kuwait","altSpellings":["KW","State of Kuwait","Dawlat al-Kuwait"],"area":17818,"borders":["IRN","SAU"],"callingCodes":["965"],"capital":"Kuwait City","currencies":["KWD"],"demonym":"Kuwaiti","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KWT","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]}}]},"ISO":{"alpha2":"KW","alpha3":"KWT"},"languages":["ar"],"latlng":[29.5,45.75],"nativeName":"الكويت","population":3268431,"provinces":["Al 'Asimah","Al Ahmadi","Al Farwaniyah","Al Jahra'","Hawalli"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".kw"],"translations":{"de":"Kuwait","es":"Kuwait","fr":"Koweït","ja":"クウェート","it":"Kuwait"},"wiki":"http://en.wikipedia.org/wiki/kuwait"} \ No newline at end of file +{"name":"Kuwait","altSpellings":["KW","State of Kuwait","Dawlat al-Kuwait"],"area":17818,"borders":["IRN","SAU"],"callingCodes":["965"],"capital":"Kuwait City","capital_latlng":[29.379709,47.973563],"currencies":["KWD"],"demonym":"Kuwaiti","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KWT","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]}}]},"ISO":{"alpha2":"KW","alpha3":"KWT"},"languages":["ar"],"latlng":[29.5,45.75],"nativeName":"الكويت","population":3268431,"provinces":["Al 'Asimah","Al Ahmadi","Al Farwaniyah","Al Jahra'","Hawalli"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".kw"],"translations":{"de":"Kuwait","es":"Kuwait","fr":"Koweït","ja":"クウェート","it":"Kuwait"},"wiki":"http://en.wikipedia.org/wiki/kuwait"} \ No newline at end of file diff --git a/countryinfo/data/kyrgyzstan.json b/countryinfo/data/kyrgyzstan.json index 248a6e6..0ea1dfb 100644 --- a/countryinfo/data/kyrgyzstan.json +++ b/countryinfo/data/kyrgyzstan.json @@ -1 +1 @@ -{"name":"Kyrgyzstan","altSpellings":["KG","Киргизия","Kyrgyz Republic","Кыргыз Республикасы","Kyrgyz Respublikasy"],"area":199951,"borders":["CHN","KAZ","TJK","UZB"],"callingCodes":["996"],"capital":"Bishkek","currencies":["KGS"],"demonym":"Kirghiz","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KGZ","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]}}]},"ISO":{"alpha2":"KG","alpha3":"KGZ"},"languages":["ky","ru"],"latlng":[41,75],"nativeName":"Кыргызстан","population":5776570,"provinces":["Batken Oblasty","Bishkek Shaary","Chuy Oblasty (Bishkek)","Jalal-Abad Oblasty","Naryn Oblasty","Osh Oblasty","Talas Oblasty","Ysyk-Kol Oblasty (Karakol)"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+06:00"],"tld":[".kg"],"translations":{"de":"Kirgisistan","es":"Kirguizistán","fr":"Kirghizistan","ja":"キルギス","it":"Kirghizistan"},"wiki":"http://en.wikipedia.org/wiki/kyrgyzstan"} \ No newline at end of file +{"name":"Kyrgyzstan","altSpellings":["KG","Киргизия","Kyrgyz Republic","Кыргыз Республикасы","Kyrgyz Respublikasy"],"area":199951,"borders":["CHN","KAZ","TJK","UZB"],"callingCodes":["996"],"capital":"Bishkek","capital_latlng":[42.876562,74.607008],"currencies":["KGS"],"demonym":"Kirghiz","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"KGZ","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]}}]},"ISO":{"alpha2":"KG","alpha3":"KGZ"},"languages":["ky","ru"],"latlng":[41,75],"nativeName":"Кыргызстан","population":5776570,"provinces":["Batken Oblasty","Bishkek Shaary","Chuy Oblasty (Bishkek)","Jalal-Abad Oblasty","Naryn Oblasty","Osh Oblasty","Talas Oblasty","Ysyk-Kol Oblasty (Karakol)"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+06:00"],"tld":[".kg"],"translations":{"de":"Kirgisistan","es":"Kirguizistán","fr":"Kirghizistan","ja":"キルギス","it":"Kirghizistan"},"wiki":"http://en.wikipedia.org/wiki/kyrgyzstan"} \ No newline at end of file diff --git a/countryinfo/data/laos.json b/countryinfo/data/laos.json index fe5d7bd..33a302c 100644 --- a/countryinfo/data/laos.json +++ b/countryinfo/data/laos.json @@ -1 +1 @@ -{"name":"Laos","altSpellings":["LA","Lao","Lao People's Democratic Republic","Sathalanalat Paxathipatai Paxaxon Lao"],"area":236800,"borders":["MMR","KHM","CHN","THA","VNM"],"callingCodes":["856"],"capital":"Vientiane","currencies":["LAK"],"demonym":"Laotian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LAO","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]}}]},"ISO":{"alpha2":"LA","alpha3":"LAO"},"languages":["lo"],"latlng":[18,105],"nativeName":"ສປປລາວ","population":6693300,"provinces":["Attapu","Bokeo","Bolikhamxai","Champasak","Houaphan","Khammouan","Louangnamtha","Louangphabang","Oudomxai","Phongsali","Salavan","Savannakhet","Viangchan","Viangchan","Xaignabouli","Xaisomboun","Xekong","Xiangkhoang"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".la"],"translations":{"de":"Laos","es":"Laos","fr":"Laos","ja":"ラオス人民民主共和国","it":"Laos"},"wiki":"http://en.wikipedia.org/wiki/laos"} \ No newline at end of file +{"name":"Laos","altSpellings":["LA","Lao","Lao People's Democratic Republic","Sathalanalat Paxathipatai Paxaxon Lao"],"area":236800,"borders":["MMR","KHM","CHN","THA","VNM"],"callingCodes":["856"],"capital":"Vientiane","capital_latlng":[17.964099,102.613371],"currencies":["LAK"],"demonym":"Laotian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LAO","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]}}]},"ISO":{"alpha2":"LA","alpha3":"LAO"},"languages":["lo"],"latlng":[18,105],"nativeName":"ສປປລາວ","population":6693300,"provinces":["Attapu","Bokeo","Bolikhamxai","Champasak","Houaphan","Khammouan","Louangnamtha","Louangphabang","Oudomxai","Phongsali","Salavan","Savannakhet","Viangchan","Viangchan","Xaignabouli","Xaisomboun","Xekong","Xiangkhoang"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".la"],"translations":{"de":"Laos","es":"Laos","fr":"Laos","ja":"ラオス人民民主共和国","it":"Laos"},"wiki":"http://en.wikipedia.org/wiki/laos"} \ No newline at end of file diff --git a/countryinfo/data/latvia.json b/countryinfo/data/latvia.json index effc9d8..e28411a 100644 --- a/countryinfo/data/latvia.json +++ b/countryinfo/data/latvia.json @@ -1 +1 @@ -{"name":"Latvia","altSpellings":["LV","Republic of Latvia","Latvijas Republika"],"area":64559,"borders":["BLR","EST","LTU","RUS"],"callingCodes":["371"],"capital":"Riga","currencies":["EUR"],"demonym":"Latvian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LVA","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]}}]},"ISO":{"alpha2":"LV","alpha3":"LVA"},"languages":["lv"],"latlng":[57,25],"nativeName":"Latvija","population":1991800,"provinces":["Aizkraukles Rajons","Aluksnes Rajons","Balvu Rajons","Bauskas Rajons","Cesu Rajons","Daugavpils","Daugavpils Rajons","Dobeles Rajons","Gulbenes Rajons","Jekabpils Rajons","Jelgava","Jelgavas Rajons","Jurmala","Kraslavas Rajons","Kuldigas Rajons","Leipaja","Liepajas Rajons","Limbazu Rajons","Ludzas Rajons","Madonas Rajons","Ogres Rajons","Preilu Rajons","Rezekne","Rezeknes Rajons","Riga","Rigas Rajons","Saldus Rajons","Talsu Rajons","Tukuma Rajons","Valkas Rajons","Valmieras Rajons","Ventspils","Ventspils Rajons"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".lv"],"translations":{"de":"Lettland","es":"Letonia","fr":"Lettonie","ja":"ラトビア","it":"Lettonia"},"wiki":"http://en.wikipedia.org/wiki/latvia"} \ No newline at end of file +{"name":"Latvia","altSpellings":["LV","Republic of Latvia","Latvijas Republika"],"area":64559,"borders":["BLR","EST","LTU","RUS"],"callingCodes":["371"],"capital":"Riga","capital_latlng":[56.949398,24.105185],"currencies":["EUR"],"demonym":"Latvian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LVA","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]}}]},"ISO":{"alpha2":"LV","alpha3":"LVA"},"languages":["lv"],"latlng":[57,25],"nativeName":"Latvija","population":1991800,"provinces":["Aizkraukles Rajons","Aluksnes Rajons","Balvu Rajons","Bauskas Rajons","Cesu Rajons","Daugavpils","Daugavpils Rajons","Dobeles Rajons","Gulbenes Rajons","Jekabpils Rajons","Jelgava","Jelgavas Rajons","Jurmala","Kraslavas Rajons","Kuldigas Rajons","Leipaja","Liepajas Rajons","Limbazu Rajons","Ludzas Rajons","Madonas Rajons","Ogres Rajons","Preilu Rajons","Rezekne","Rezeknes Rajons","Riga","Rigas Rajons","Saldus Rajons","Talsu Rajons","Tukuma Rajons","Valkas Rajons","Valmieras Rajons","Ventspils","Ventspils Rajons"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".lv"],"translations":{"de":"Lettland","es":"Letonia","fr":"Lettonie","ja":"ラトビア","it":"Lettonia"},"wiki":"http://en.wikipedia.org/wiki/latvia"} \ No newline at end of file diff --git a/countryinfo/data/lebanon.json b/countryinfo/data/lebanon.json index f7841b6..954fa46 100644 --- a/countryinfo/data/lebanon.json +++ b/countryinfo/data/lebanon.json @@ -1 +1 @@ -{"name":"Lebanon","altSpellings":["LB","Lebanese Republic","Al-Jumhūrīyah Al-Libnānīyah"],"area":10452,"borders":["ISR","SYR"],"callingCodes":["961"],"capital":"Beirut","currencies":["LBP"],"demonym":"Lebanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBN","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]}}]},"ISO":{"alpha2":"LB","alpha3":"LBN"},"languages":["ar","fr"],"latlng":[33.83333333,35.83333333],"nativeName":"لبنان","population":4104000,"provinces":["Beyrouth","Ech Chimal","Ej Jnoub","El Bekaa","Jabal Loubnane"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".lb"],"translations":{"de":"Libanon","es":"Líbano","fr":"Liban","ja":"レバノン","it":"Libano"},"wiki":"http://en.wikipedia.org/wiki/lebanon"} \ No newline at end of file +{"name":"Lebanon","altSpellings":["LB","Lebanese Republic","Al-Jumhūrīyah Al-Libnānīyah"],"area":10452,"borders":["ISR","SYR"],"callingCodes":["961"],"capital":"Beirut","capital_latlng":[33.89592,35.47843],"currencies":["LBP"],"demonym":"Lebanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBN","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]}}]},"ISO":{"alpha2":"LB","alpha3":"LBN"},"languages":["ar","fr"],"latlng":[33.83333333,35.83333333],"nativeName":"لبنان","population":4104000,"provinces":["Beyrouth","Ech Chimal","Ej Jnoub","El Bekaa","Jabal Loubnane"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".lb"],"translations":{"de":"Libanon","es":"Líbano","fr":"Liban","ja":"レバノン","it":"Libano"},"wiki":"http://en.wikipedia.org/wiki/lebanon"} \ No newline at end of file diff --git a/countryinfo/data/lesotho.json b/countryinfo/data/lesotho.json index 49acfe5..52b8c84 100644 --- a/countryinfo/data/lesotho.json +++ b/countryinfo/data/lesotho.json @@ -1 +1 @@ -{"name":"Lesotho","altSpellings":["LS","Kingdom of Lesotho","Muso oa Lesotho"],"area":30355,"borders":["ZAF"],"callingCodes":["266"],"capital":"Maseru","currencies":["LSL","ZAR"],"demonym":"Mosotho","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LSO","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]}}]},"ISO":{"alpha2":"LS","alpha3":"LSO"},"languages":["en","st"],"latlng":[-29.5,28.5],"nativeName":"Lesotho","population":2098000,"provinces":["Berea","Butha-Buthe","Leribe","Mafeteng","Maseru","Mohales Hoek","Mokhotlong","Qacha's Nek","Quthing","Thaba-Tseka"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".ls"],"translations":{"de":"Lesotho","es":"Lesotho","fr":"Lesotho","ja":"レソト","it":"Lesotho"},"wiki":"http://en.wikipedia.org/wiki/lesotho"} \ No newline at end of file +{"name":"Lesotho","altSpellings":["LS","Kingdom of Lesotho","Muso oa Lesotho"],"area":30355,"borders":["ZAF"],"callingCodes":["266"],"capital":"Maseru","capital_latlng":[-29.310054,27.478222],"currencies":["LSL","ZAR"],"demonym":"Mosotho","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LSO","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]}}]},"ISO":{"alpha2":"LS","alpha3":"LSO"},"languages":["en","st"],"latlng":[-29.5,28.5],"nativeName":"Lesotho","population":2098000,"provinces":["Berea","Butha-Buthe","Leribe","Mafeteng","Maseru","Mohales Hoek","Mokhotlong","Qacha's Nek","Quthing","Thaba-Tseka"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".ls"],"translations":{"de":"Lesotho","es":"Lesotho","fr":"Lesotho","ja":"レソト","it":"Lesotho"},"wiki":"http://en.wikipedia.org/wiki/lesotho"} \ No newline at end of file diff --git a/countryinfo/data/liberia.json b/countryinfo/data/liberia.json index f20da7c..5274564 100644 --- a/countryinfo/data/liberia.json +++ b/countryinfo/data/liberia.json @@ -1 +1 @@ -{"name":"Liberia","altSpellings":["LR","Republic of Liberia"],"area":111369,"borders":["GIN","CIV","SLE"],"callingCodes":["231"],"capital":"Monrovia","currencies":["LRD"],"demonym":"Liberian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBR","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]}}]},"ISO":{"alpha2":"LR","alpha3":"LBR"},"languages":["en"],"latlng":[6.5,-9.5],"nativeName":"Liberia","population":4397000,"provinces":["Bomi","Bong","Grand Bassa","Grand Cape Mount","Grand Gedeh","Grand Kru","Lofa","Margibi","Maryland","Montserrado","Nimba","River Cess","Sinoe"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".lr"],"translations":{"de":"Liberia","es":"Liberia","fr":"Liberia","ja":"リベリア","it":"Liberia"},"wiki":"http://en.wikipedia.org/wiki/liberia"} \ No newline at end of file +{"name":"Liberia","altSpellings":["LR","Republic of Liberia"],"area":111369,"borders":["GIN","CIV","SLE"],"callingCodes":["231"],"capital":"Monrovia","capital_latlng":[6.328034,-10.797788],"currencies":["LRD"],"demonym":"Liberian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBR","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]}}]},"ISO":{"alpha2":"LR","alpha3":"LBR"},"languages":["en"],"latlng":[6.5,-9.5],"nativeName":"Liberia","population":4397000,"provinces":["Bomi","Bong","Grand Bassa","Grand Cape Mount","Grand Gedeh","Grand Kru","Lofa","Margibi","Maryland","Montserrado","Nimba","River Cess","Sinoe"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".lr"],"translations":{"de":"Liberia","es":"Liberia","fr":"Liberia","ja":"リベリア","it":"Liberia"},"wiki":"http://en.wikipedia.org/wiki/liberia"} \ No newline at end of file diff --git a/countryinfo/data/libya.json b/countryinfo/data/libya.json index 26a98a7..5208ac7 100644 --- a/countryinfo/data/libya.json +++ b/countryinfo/data/libya.json @@ -1 +1 @@ -{"name":"Libya","altSpellings":["LY","State of Libya","Dawlat Libya"],"area":1759540,"borders":["DZA","TCD","EGY","NER","SDN","TUN"],"callingCodes":["218"],"capital":"Tripoli","currencies":["LYD"],"demonym":"Libyan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBY","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]}}]},"ISO":{"alpha2":"LY","alpha3":"LBY"},"languages":["ar"],"latlng":[25,17],"nativeName":"‏ليبيا","population":6253000,"provinces":["Ajdabiya","Al 'Aziziyah","Al Fatih","Al Jabal al Akhdar","Al Jufrah","Al Khums","Al Kufrah","An Nuqat al Khams","Ash Shati'","Awbari","Az Zawiyah","Banghazi","Darnah","Ghadamis","Gharyan","Misratah","Murzuq","Sabha","Sawfajjin","Surt","Tarabulus","Tarhunah","Tubruq","Yafran","Zlitan"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".ly"],"translations":{"de":"Libyen","es":"Libia","fr":"Libye","ja":"リビア","it":"Libia"},"wiki":"http://en.wikipedia.org/wiki/libya"} \ No newline at end of file +{"name":"Libya","altSpellings":["LY","State of Libya","Dawlat Libya"],"area":1759540,"borders":["DZA","TCD","EGY","NER","SDN","TUN"],"callingCodes":["218"],"capital":"Tripoli","capital_latlng":[32.896672,13.177792],"currencies":["LYD"],"demonym":"Libyan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LBY","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]}}]},"ISO":{"alpha2":"LY","alpha3":"LBY"},"languages":["ar"],"latlng":[25,17],"nativeName":"‏ليبيا","population":6253000,"provinces":["Ajdabiya","Al 'Aziziyah","Al Fatih","Al Jabal al Akhdar","Al Jufrah","Al Khums","Al Kufrah","An Nuqat al Khams","Ash Shati'","Awbari","Az Zawiyah","Banghazi","Darnah","Ghadamis","Gharyan","Misratah","Murzuq","Sabha","Sawfajjin","Surt","Tarabulus","Tarhunah","Tubruq","Yafran","Zlitan"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".ly"],"translations":{"de":"Libyen","es":"Libia","fr":"Libye","ja":"リビア","it":"Libia"},"wiki":"http://en.wikipedia.org/wiki/libya"} \ No newline at end of file diff --git a/countryinfo/data/liechtenstein.json b/countryinfo/data/liechtenstein.json index 6e5e1c2..239b936 100644 --- a/countryinfo/data/liechtenstein.json +++ b/countryinfo/data/liechtenstein.json @@ -1 +1 @@ -{"name":"Liechtenstein","altSpellings":["LI","Principality of Liechtenstein","Fürstentum Liechtenstein"],"area":160,"borders":["AUT","CHE"],"callingCodes":["423"],"capital":"Vaduz","currencies":["CHF"],"demonym":"Liechtensteiner","flag":"","geoJSON":{},"ISO":{"alpha2":"LI","alpha3":"LIE"},"languages":["de"],"latlng":[47.26666666,9.53333333],"nativeName":"Liechtenstein","population":37132,"provinces":["Balzers","Eschen","Gamprin","Mauren","Planken","Ruggell","Schaan","Schellenberg","Triesen","Triesenberg","Vaduz"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".li"],"translations":{"de":"Liechtenstein","es":"Liechtenstein","fr":"Liechtenstein","ja":"リヒテンシュタイン","it":"Liechtenstein"},"wiki":"http://en.wikipedia.org/wiki/liechtenstein"} \ No newline at end of file +{"name":"Liechtenstein","altSpellings":["LI","Principality of Liechtenstein","Fürstentum Liechtenstein"],"area":160,"borders":["AUT","CHE"],"callingCodes":["423"],"capital":"Vaduz","capital_latlng":[47.139286,9.522796],"currencies":["CHF"],"demonym":"Liechtensteiner","flag":"","geoJSON":{},"ISO":{"alpha2":"LI","alpha3":"LIE"},"languages":["de"],"latlng":[47.26666666,9.53333333],"nativeName":"Liechtenstein","population":37132,"provinces":["Balzers","Eschen","Gamprin","Mauren","Planken","Ruggell","Schaan","Schellenberg","Triesen","Triesenberg","Vaduz"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".li"],"translations":{"de":"Liechtenstein","es":"Liechtenstein","fr":"Liechtenstein","ja":"リヒテンシュタイン","it":"Liechtenstein"},"wiki":"http://en.wikipedia.org/wiki/liechtenstein"} \ No newline at end of file diff --git a/countryinfo/data/lithuania.json b/countryinfo/data/lithuania.json index 42c7ba2..68d73db 100644 --- a/countryinfo/data/lithuania.json +++ b/countryinfo/data/lithuania.json @@ -1 +1 @@ -{"name":"Lithuania","altSpellings":["LT","Republic of Lithuania","Lietuvos Respublika"],"area":65300,"borders":["BLR","LVA","POL","RUS"],"callingCodes":["370"],"capital":"Vilnius","currencies":["EUR"],"demonym":"Lithuanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LTU","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]}}]},"ISO":{"alpha2":"LT","alpha3":"LTU"},"languages":["lt"],"latlng":[56,24],"nativeName":"Lietuva","population":2927310,"provinces":["Akmenes Rajonas","Alytaus Rajonas","Alytus","Anyksciu Rajonas","Birstonas","Birzu Rajonas","Druskininkai","Ignalinos Rajonas","Jonavos Rajonas","Joniskio Rajonas","Jurbarko Rajonas","Kaisiadoriu Rajonas","Kaunas","Kauno Rajonas","Kedainiu Rajonas","Kelmes Rajonas","Klaipeda","Klaipedos Rajonas","Kretingos Rajonas","Kupiskio Rajonas","Lazdiju Rajonas","Marijampole","Marijampoles Rajonas","Mazeikiu Rajonas","Moletu Rajonas","Neringa Pakruojo Rajonas","Palanga","Panevezio Rajonas","Panevezys","Pasvalio Rajonas","Plunges Rajonas","Prienu Rajonas","Radviliskio Rajonas","Raseiniu Rajonas","Rokiskio Rajonas","Sakiu Rajonas","Salcininku Rajonas","Siauliai","Siauliu Rajonas","Silales Rajonas","Silutes Rajonas","Sirvintu Rajonas","Skuodo Rajonas","Svencioniu Rajonas","Taurages Rajonas","Telsiu Rajonas","Traku Rajonas","Ukmerges Rajonas","Utenos Rajonas","Varenos Rajonas","Vilkaviskio Rajonas","Vilniaus Rajonas","Vilnius","Zarasu Rajonas"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".lt"],"translations":{"de":"Litauen","es":"Lituania","fr":"Lituanie","ja":"リトアニア","it":"Lituania"},"wiki":"http://en.wikipedia.org/wiki/lithuania"} \ No newline at end of file +{"name":"Lithuania","altSpellings":["LT","Republic of Lithuania","Lietuvos Respublika"],"area":65300,"borders":["BLR","LVA","POL","RUS"],"callingCodes":["370"],"capital":"Vilnius","capital_latlng":[54.687046,25.282911],"currencies":["EUR"],"demonym":"Lithuanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LTU","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]}}]},"ISO":{"alpha2":"LT","alpha3":"LTU"},"languages":["lt"],"latlng":[56,24],"nativeName":"Lietuva","population":2927310,"provinces":["Akmenes Rajonas","Alytaus Rajonas","Alytus","Anyksciu Rajonas","Birstonas","Birzu Rajonas","Druskininkai","Ignalinos Rajonas","Jonavos Rajonas","Joniskio Rajonas","Jurbarko Rajonas","Kaisiadoriu Rajonas","Kaunas","Kauno Rajonas","Kedainiu Rajonas","Kelmes Rajonas","Klaipeda","Klaipedos Rajonas","Kretingos Rajonas","Kupiskio Rajonas","Lazdiju Rajonas","Marijampole","Marijampoles Rajonas","Mazeikiu Rajonas","Moletu Rajonas","Neringa Pakruojo Rajonas","Palanga","Panevezio Rajonas","Panevezys","Pasvalio Rajonas","Plunges Rajonas","Prienu Rajonas","Radviliskio Rajonas","Raseiniu Rajonas","Rokiskio Rajonas","Sakiu Rajonas","Salcininku Rajonas","Siauliai","Siauliu Rajonas","Silales Rajonas","Silutes Rajonas","Sirvintu Rajonas","Skuodo Rajonas","Svencioniu Rajonas","Taurages Rajonas","Telsiu Rajonas","Traku Rajonas","Ukmerges Rajonas","Utenos Rajonas","Varenos Rajonas","Vilkaviskio Rajonas","Vilniaus Rajonas","Vilnius","Zarasu Rajonas"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+02:00"],"tld":[".lt"],"translations":{"de":"Litauen","es":"Lituania","fr":"Lituanie","ja":"リトアニア","it":"Lituania"},"wiki":"http://en.wikipedia.org/wiki/lithuania"} \ No newline at end of file diff --git a/countryinfo/data/luxembourg.json b/countryinfo/data/luxembourg.json index 46d65d9..2f42746 100644 --- a/countryinfo/data/luxembourg.json +++ b/countryinfo/data/luxembourg.json @@ -1 +1 @@ -{"name":"Luxembourg","altSpellings":["LU","Grand Duchy of Luxembourg","Grand-Duché de Luxembourg","Großherzogtum Luxemburg","Groussherzogtum Lëtzebuerg"],"area":2586,"borders":["BEL","FRA","DEU"],"callingCodes":["352"],"capital":"Luxembourg","currencies":["EUR"],"demonym":"Luxembourger","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LUX","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]}}]},"ISO":{"alpha2":"LU","alpha3":"LUX"},"languages":["fr","de","lb"],"latlng":[49.75,6.16666666],"nativeName":"Luxembourg","population":549700,"provinces":["Diekirch","Grevenmacher","Luxembourg"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".lu"],"translations":{"de":"Luxemburg","es":"Luxemburgo","fr":"Luxembourg","ja":"ルクセンブルク","it":"Lussemburgo"},"wiki":"http://en.wikipedia.org/wiki/luxembourg"} \ No newline at end of file +{"name":"Luxembourg","altSpellings":["LU","Grand Duchy of Luxembourg","Grand-Duché de Luxembourg","Großherzogtum Luxemburg","Groussherzogtum Lëtzebuerg"],"area":2586,"borders":["BEL","FRA","DEU"],"callingCodes":["352"],"capital":"Luxembourg","capital_latlng":[49.815868,6.129675],"currencies":["EUR"],"demonym":"Luxembourger","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LUX","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]}}]},"ISO":{"alpha2":"LU","alpha3":"LUX"},"languages":["fr","de","lb"],"latlng":[49.75,6.16666666],"nativeName":"Luxembourg","population":549700,"provinces":["Diekirch","Grevenmacher","Luxembourg"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".lu"],"translations":{"de":"Luxemburg","es":"Luxemburgo","fr":"Luxembourg","ja":"ルクセンブルク","it":"Lussemburgo"},"wiki":"http://en.wikipedia.org/wiki/luxembourg"} \ No newline at end of file diff --git a/countryinfo/data/macedonia_former_yugoslav_republic_of.json b/countryinfo/data/macedonia_former_yugoslav_republic_of.json index 016483f..8b1b51c 100644 --- a/countryinfo/data/macedonia_former_yugoslav_republic_of.json +++ b/countryinfo/data/macedonia_former_yugoslav_republic_of.json @@ -1 +1 @@ -{"name":"Republic of Macedonia","altSpellings":["MK","Republic of Macedonia","Република Македонија"],"area":25713,"borders":["ALB","BGR","GRC","KOS","SRB"],"callingCodes":["389"],"capital":"Skopje","currencies":["MKD"],"demonym":"Macedonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MKD","properties":{"name":"Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]}}]},"ISO":{"alpha2":"MK","alpha3":"MKD"},"languages":["mk"],"latlng":[41.83333333,22],"nativeName":"Македонија","population":2058539,"provinces":["Aracinovo","Bac","Belcista","Berovo","Bistrica","Bitola","Blatec","Bogdanci","Bogomila","Bogovinje","Bosilovo","Brvenica","Cair (Skopje)","Capari","Caska","Cegrane","Centar (Skopje)","Centar Zupa","Cesinovo","Cucer-Sandevo","Debar","Delcevo","Delogozdi","Demir Hisar","Demir Kapija","Dobrusevo","Dolna Banjica","Dolneni","Dorce Petrov (Skopje)","Drugovo","Dzepciste","Gazi Baba (Skopje)","Gevgelija","Gostivar","Gradsko","Ilinden","Izvor","Jegunovce","Kamenjane","Karbinci","Karpos (Skopje)","Kavadarci","Kicevo","Kisela Voda (Skopje)","Klecevce","Kocani","Konce","Kondovo","Konopiste","Kosel","Kratovo","Kriva Palanka","Krivogastani","Krusevo","Kuklis","Kukurecani","Kumanovo","Labunista","Lipkovo","Lozovo","Lukovo","Makedonska Kamenica","Makedonski Brod","Mavrovi Anovi","Meseista","Miravci","Mogila","Murtino","Negotino","Negotino-Poloska","Novaci","Novo Selo","Oblesevo","Ohrid","Orasac","Orizari","Oslomej","Pehcevo","Petrovec","Plasnia","Podares","Prilep","Probistip","Radovis","Rankovce","Resen","Rosoman","Rostusa","Samokov","Saraj","Sipkovica","Sopiste","Sopotnika","Srbinovo","Star Dojran","Staravina","Staro Nagoricane","Stip","Struga","Strumica","Studenicani","Suto Orizari (Skopje)","Sveti Nikole","Tearce","Tetovo","Topolcani","Valandovo","Vasilevo","Veles","Velesta","Vevcani","Vinica","Vitoliste","Vranestica","Vrapciste","Vratnica","Vrutok","Zajas","Zelenikovo","Zileno","Zitose","Zletovo","Zrnovci"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".mk"],"translations":{"de":"Mazedonien","es":"Macedonia","fr":"Macédoine","ja":"マケドニア旧ユーゴスラビア共和国","it":"Macedonia"},"wiki":"http://en.wikipedia.org/wiki/macedonia_former_yugoslav_republic_of"} \ No newline at end of file +{"name":"Republic of Macedonia","altSpellings":["MK","Republic of Macedonia","Република Македонија"],"area":25713,"borders":["ALB","BGR","GRC","KOS","SRB"],"callingCodes":["389"],"capital":"Skopje","capital_latlng":[41.996092,21.43165],"currencies":["MKD"],"demonym":"Macedonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MKD","properties":{"name":"Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]}}]},"ISO":{"alpha2":"MK","alpha3":"MKD"},"languages":["mk"],"latlng":[41.83333333,22],"nativeName":"Македонија","population":2058539,"provinces":["Aracinovo","Bac","Belcista","Berovo","Bistrica","Bitola","Blatec","Bogdanci","Bogomila","Bogovinje","Bosilovo","Brvenica","Cair (Skopje)","Capari","Caska","Cegrane","Centar (Skopje)","Centar Zupa","Cesinovo","Cucer-Sandevo","Debar","Delcevo","Delogozdi","Demir Hisar","Demir Kapija","Dobrusevo","Dolna Banjica","Dolneni","Dorce Petrov (Skopje)","Drugovo","Dzepciste","Gazi Baba (Skopje)","Gevgelija","Gostivar","Gradsko","Ilinden","Izvor","Jegunovce","Kamenjane","Karbinci","Karpos (Skopje)","Kavadarci","Kicevo","Kisela Voda (Skopje)","Klecevce","Kocani","Konce","Kondovo","Konopiste","Kosel","Kratovo","Kriva Palanka","Krivogastani","Krusevo","Kuklis","Kukurecani","Kumanovo","Labunista","Lipkovo","Lozovo","Lukovo","Makedonska Kamenica","Makedonski Brod","Mavrovi Anovi","Meseista","Miravci","Mogila","Murtino","Negotino","Negotino-Poloska","Novaci","Novo Selo","Oblesevo","Ohrid","Orasac","Orizari","Oslomej","Pehcevo","Petrovec","Plasnia","Podares","Prilep","Probistip","Radovis","Rankovce","Resen","Rosoman","Rostusa","Samokov","Saraj","Sipkovica","Sopiste","Sopotnika","Srbinovo","Star Dojran","Staravina","Staro Nagoricane","Stip","Struga","Strumica","Studenicani","Suto Orizari (Skopje)","Sveti Nikole","Tearce","Tetovo","Topolcani","Valandovo","Vasilevo","Veles","Velesta","Vevcani","Vinica","Vitoliste","Vranestica","Vrapciste","Vratnica","Vrutok","Zajas","Zelenikovo","Zileno","Zitose","Zletovo","Zrnovci"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".mk"],"translations":{"de":"Mazedonien","es":"Macedonia","fr":"Macédoine","ja":"マケドニア旧ユーゴスラビア共和国","it":"Macedonia"},"wiki":"http://en.wikipedia.org/wiki/macedonia_former_yugoslav_republic_of"} \ No newline at end of file diff --git a/countryinfo/data/madagascar.json b/countryinfo/data/madagascar.json index aeea52e..a065e64 100644 --- a/countryinfo/data/madagascar.json +++ b/countryinfo/data/madagascar.json @@ -1 +1 @@ -{"name":"Madagascar","altSpellings":["MG","Republic of Madagascar","Repoblikan'i Madagasikara","République de Madagascar"],"area":587041,"borders":[],"callingCodes":["261"],"capital":"Antananarivo","currencies":["MGA"],"demonym":"Malagasy","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MDG","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]}}]},"ISO":{"alpha2":"MG","alpha3":"MDG"},"languages":["fr","mg"],"latlng":[-20,47],"nativeName":"Madagasikara","population":21842167,"provinces":["Antananarivo","Antsiranana","Fianarantsoa","Mahajanga","Toamasina","Toliara"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".mg"],"translations":{"de":"Madagaskar","es":"Madagascar","fr":"Madagascar","ja":"マダガスカル","it":"Madagascar"},"wiki":"http://en.wikipedia.org/wiki/madagascar"} \ No newline at end of file +{"name":"Madagascar","altSpellings":["MG","Republic of Madagascar","Repoblikan'i Madagasikara","République de Madagascar"],"area":587041,"borders":[],"callingCodes":["261"],"capital":"Antananarivo","capital_latlng":[-18.910012,47.525581],"currencies":["MGA"],"demonym":"Malagasy","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MDG","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]}}]},"ISO":{"alpha2":"MG","alpha3":"MDG"},"languages":["fr","mg"],"latlng":[-20,47],"nativeName":"Madagasikara","population":21842167,"provinces":["Antananarivo","Antsiranana","Fianarantsoa","Mahajanga","Toamasina","Toliara"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".mg"],"translations":{"de":"Madagaskar","es":"Madagascar","fr":"Madagascar","ja":"マダガスカル","it":"Madagascar"},"wiki":"http://en.wikipedia.org/wiki/madagascar"} \ No newline at end of file diff --git a/countryinfo/data/malawi.json b/countryinfo/data/malawi.json index adbb40e..6bb71a5 100644 --- a/countryinfo/data/malawi.json +++ b/countryinfo/data/malawi.json @@ -1 +1 @@ -{"name":"Malawi","altSpellings":["MW","Republic of Malawi"],"area":118484,"borders":["MOZ","TZA","ZMB"],"callingCodes":["265"],"capital":"Lilongwe","currencies":["MWK"],"demonym":"Malawian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MWI","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]}}]},"ISO":{"alpha2":"MW","alpha3":"MWI"},"languages":["en","ny"],"latlng":[-13.5,34],"nativeName":"Malawi","population":15805239,"provinces":["Balaka","Blantyre","Chikwawa","Chiradzulu","Chitipa","Dedza","Dowa","Karonga","Kasungu","Likoma","Lilongwe","Machinga (Kasupe)","Mangochi","Mchinji","Mulanje","Mwanza","Mzimba","Nkhata Bay","Nkhotakota","Nsanje","Ntcheu","Ntchisi","Phalombe","Rumphi","Salima","Thyolo","Zomba"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".mw"],"translations":{"de":"Malawi","es":"Malawi","fr":"Malawi","ja":"マラウイ","it":"Malawi"},"wiki":"http://en.wikipedia.org/wiki/malawi"} \ No newline at end of file +{"name":"Malawi","altSpellings":["MW","Republic of Malawi"],"area":118484,"borders":["MOZ","TZA","ZMB"],"callingCodes":["265"],"capital":"Lilongwe","capital_latlng":[-13.987511,33.768144],"currencies":["MWK"],"demonym":"Malawian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MWI","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]}}]},"ISO":{"alpha2":"MW","alpha3":"MWI"},"languages":["en","ny"],"latlng":[-13.5,34],"nativeName":"Malawi","population":15805239,"provinces":["Balaka","Blantyre","Chikwawa","Chiradzulu","Chitipa","Dedza","Dowa","Karonga","Kasungu","Likoma","Lilongwe","Machinga (Kasupe)","Mangochi","Mchinji","Mulanje","Mwanza","Mzimba","Nkhata Bay","Nkhotakota","Nsanje","Ntcheu","Ntchisi","Phalombe","Rumphi","Salima","Thyolo","Zomba"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".mw"],"translations":{"de":"Malawi","es":"Malawi","fr":"Malawi","ja":"マラウイ","it":"Malawi"},"wiki":"http://en.wikipedia.org/wiki/malawi"} \ No newline at end of file diff --git a/countryinfo/data/malaysia.json b/countryinfo/data/malaysia.json index d707638..926ed54 100644 --- a/countryinfo/data/malaysia.json +++ b/countryinfo/data/malaysia.json @@ -1 +1 @@ -{"name":"Malaysia","altSpellings":["MY"],"area":330803,"borders":["BRN","IDN","THA"],"callingCodes":["60"],"capital":"Kuala Lumpur","currencies":["MYR"],"demonym":"Malaysian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MYS","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]}}]},"ISO":{"alpha2":"MY","alpha3":"MYS"},"languages":[],"latlng":[2.5,112.5],"nativeName":"Malaysia","population":30430500,"provinces":["Johor","Kedah","Kelantan","Labuan","Melaka","Negeri Sembilan","Pahang","Perak","Perlis","Pulau Pinang","Sabah","Sarawak","Selangor","Terengganu","Wilayah Persekutuan"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".my"],"translations":{"de":"Malaysia","es":"Malasia","fr":"Malaisie","ja":"マレーシア","it":"Malesia"},"wiki":"http://en.wikipedia.org/wiki/malaysia"} \ No newline at end of file +{"name":"Malaysia","altSpellings":["MY"],"area":330803,"borders":["BRN","IDN","THA"],"callingCodes":["60"],"capital":"Kuala Lumpur","capital_latlng":[3.151696,101.694237],"currencies":["MYR"],"demonym":"Malaysian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MYS","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]}}]},"ISO":{"alpha2":"MY","alpha3":"MYS"},"languages":[],"latlng":[2.5,112.5],"nativeName":"Malaysia","population":30430500,"provinces":["Johor","Kedah","Kelantan","Labuan","Melaka","Negeri Sembilan","Pahang","Perak","Perlis","Pulau Pinang","Sabah","Sarawak","Selangor","Terengganu","Wilayah Persekutuan"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".my"],"translations":{"de":"Malaysia","es":"Malasia","fr":"Malaisie","ja":"マレーシア","it":"Malesia"},"wiki":"http://en.wikipedia.org/wiki/malaysia"} \ No newline at end of file diff --git a/countryinfo/data/maldives.json b/countryinfo/data/maldives.json index 83c0c5f..ee9ce41 100644 --- a/countryinfo/data/maldives.json +++ b/countryinfo/data/maldives.json @@ -1 +1 @@ -{"name":"Maldives","altSpellings":["MV","Maldive Islands","Republic of the Maldives","Dhivehi Raajjeyge Jumhooriyya"],"area":300,"borders":[],"callingCodes":["960"],"capital":"Malé","currencies":["MVR"],"demonym":"Maldivan","flag":"","geoJSON":{},"ISO":{"alpha2":"MV","alpha3":"MDV"},"languages":["dv"],"latlng":[3.25,73],"nativeName":"Maldives","population":341256,"provinces":["Alifu","Baa","Dhaalu","Faafu","Gaafu Alifu","Gaafu Dhaalu","Gnaviyani","Haa Alifu","Haa Dhaalu","Kaafu","Laamu","Lhaviyani","Maale","Meemu","Noonu","Raa","Seenu","Shaviyani","Thaa","Vaavu"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:00"],"tld":[".mv"],"translations":{"de":"Malediven","es":"Maldivas","fr":"Maldives","ja":"モルディブ","it":"Maldive"},"wiki":"http://en.wikipedia.org/wiki/maldives"} \ No newline at end of file +{"name":"Maldives","altSpellings":["MV","Maldive Islands","Republic of the Maldives","Dhivehi Raajjeyge Jumhooriyya"],"area":300,"borders":[],"callingCodes":["960"],"capital":"Malé","capital_latlng":[16.370036,-2.290024],"currencies":["MVR"],"demonym":"Maldivan","flag":"","geoJSON":{},"ISO":{"alpha2":"MV","alpha3":"MDV"},"languages":["dv"],"latlng":[3.25,73],"nativeName":"Maldives","population":341256,"provinces":["Alifu","Baa","Dhaalu","Faafu","Gaafu Alifu","Gaafu Dhaalu","Gnaviyani","Haa Alifu","Haa Dhaalu","Kaafu","Laamu","Lhaviyani","Maale","Meemu","Noonu","Raa","Seenu","Shaviyani","Thaa","Vaavu"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:00"],"tld":[".mv"],"translations":{"de":"Malediven","es":"Maldivas","fr":"Maldives","ja":"モルディブ","it":"Maldive"},"wiki":"http://en.wikipedia.org/wiki/maldives"} \ No newline at end of file diff --git a/countryinfo/data/mali.json b/countryinfo/data/mali.json index 3b0df44..68331ab 100644 --- a/countryinfo/data/mali.json +++ b/countryinfo/data/mali.json @@ -1 +1 @@ -{"name":"Mali","altSpellings":["ML","Republic of Mali","République du Mali"],"area":1240192,"borders":["DZA","BFA","GIN","CIV","MRT","NER","SEN"],"callingCodes":["223"],"capital":"Bamako","currencies":["XOF"],"demonym":"Malian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MLI","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]}}]},"ISO":{"alpha2":"ML","alpha3":"MLI"},"languages":["fr"],"latlng":[17,-4],"nativeName":"Mali","population":15768000,"provinces":["Gao","Kayes","Kidal","Koulikoro","Mopti","Segou","Sikasso","Tombouctou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".ml"],"translations":{"de":"Mali","es":"Mali","fr":"Mali","ja":"マリ","it":"Mali"},"wiki":"http://en.wikipedia.org/wiki/mali"} \ No newline at end of file +{"name":"Mali","altSpellings":["ML","Republic of Mali","République du Mali"],"area":1240192,"borders":["DZA","BFA","GIN","CIV","MRT","NER","SEN"],"callingCodes":["223"],"capital":"Bamako","capital_latlng":[12.605033,-7.986514],"currencies":["XOF"],"demonym":"Malian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MLI","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]}}]},"ISO":{"alpha2":"ML","alpha3":"MLI"},"languages":["fr"],"latlng":[17,-4],"nativeName":"Mali","population":15768000,"provinces":["Gao","Kayes","Kidal","Koulikoro","Mopti","Segou","Sikasso","Tombouctou"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".ml"],"translations":{"de":"Mali","es":"Mali","fr":"Mali","ja":"マリ","it":"Mali"},"wiki":"http://en.wikipedia.org/wiki/mali"} \ No newline at end of file diff --git a/countryinfo/data/malta.json b/countryinfo/data/malta.json index 70dc47a..1796a2e 100644 --- a/countryinfo/data/malta.json +++ b/countryinfo/data/malta.json @@ -1 +1 @@ -{"name":"Malta","altSpellings":["MT","Republic of Malta","Repubblika ta' Malta"],"area":316,"borders":[],"callingCodes":["356"],"capital":"Valletta","currencies":["EUR"],"demonym":"Maltese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MLT","properties":{"name":"Malta"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.566171,35.852721],[14.532684,35.820191],[14.436463,35.821664],[14.352334,35.872281],[14.3513,35.978399],[14.448348,35.957444],[14.537025,35.886285],[14.566171,35.852721]]],[[[14.313473,36.027569],[14.253632,36.012143],[14.194204,36.042245],[14.180354,36.060383],[14.263243,36.075809],[14.303758,36.062295],[14.320914,36.03625],[14.313473,36.027569]]]]}}]},"ISO":{"alpha2":"MT","alpha3":"MLT"},"languages":["mt","en"],"latlng":[35.83333333,14.58333333],"nativeName":"Malta","population":416055,"provinces":["Valletta"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".mt"],"translations":{"de":"Malta","es":"Malta","fr":"Malte","ja":"マルタ","it":"Malta"},"wiki":"http://en.wikipedia.org/wiki/malta"} \ No newline at end of file +{"name":"Malta","altSpellings":["MT","Republic of Malta","Repubblika ta' Malta"],"area":316,"borders":[],"callingCodes":["356"],"capital":"Valletta","capital_latlng":[35.898982,14.513676],"currencies":["EUR"],"demonym":"Maltese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MLT","properties":{"name":"Malta"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.566171,35.852721],[14.532684,35.820191],[14.436463,35.821664],[14.352334,35.872281],[14.3513,35.978399],[14.448348,35.957444],[14.537025,35.886285],[14.566171,35.852721]]],[[[14.313473,36.027569],[14.253632,36.012143],[14.194204,36.042245],[14.180354,36.060383],[14.263243,36.075809],[14.303758,36.062295],[14.320914,36.03625],[14.313473,36.027569]]]]}}]},"ISO":{"alpha2":"MT","alpha3":"MLT"},"languages":["mt","en"],"latlng":[35.83333333,14.58333333],"nativeName":"Malta","population":416055,"provinces":["Valletta"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".mt"],"translations":{"de":"Malta","es":"Malta","fr":"Malte","ja":"マルタ","it":"Malta"},"wiki":"http://en.wikipedia.org/wiki/malta"} \ No newline at end of file diff --git a/countryinfo/data/man_isle_of.json b/countryinfo/data/man_isle_of.json index 4608164..ea30239 100644 --- a/countryinfo/data/man_isle_of.json +++ b/countryinfo/data/man_isle_of.json @@ -1 +1 @@ -{"name":"Isle of Man","altSpellings":["IM","Ellan Vannin","Mann","Mannin"],"area":572,"borders":[],"callingCodes":["44"],"capital":"Douglas","currencies":["GBP"],"demonym":"Manx","flag":"","geoJSON":{},"ISO":{"alpha2":"IM","alpha3":"IMN"},"languages":["en","gv"],"latlng":[54.25,-4.5],"nativeName":"Isle of Man","population":84497,"provinces":["Man,Isle of"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".im"],"translations":{"de":"Insel Man","es":"Isla de Man","fr":"Île de Man","ja":"マン島","it":"Isola di Man"},"wiki":"http://en.wikipedia.org/wiki/man_isle_of"} \ No newline at end of file +{"name":"Isle of Man","altSpellings":["IM","Ellan Vannin","Mann","Mannin"],"area":572,"borders":[],"callingCodes":["44"],"capital":"Douglas","capital_latlng":[39.762842,-88.217052],"currencies":["GBP"],"demonym":"Manx","flag":"","geoJSON":{},"ISO":{"alpha2":"IM","alpha3":"IMN"},"languages":["en","gv"],"latlng":[54.25,-4.5],"nativeName":"Isle of Man","population":84497,"provinces":["Man,Isle of"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".im"],"translations":{"de":"Insel Man","es":"Isla de Man","fr":"Île de Man","ja":"マン島","it":"Isola di Man"},"wiki":"http://en.wikipedia.org/wiki/man_isle_of"} \ No newline at end of file diff --git a/countryinfo/data/marshall_islands.json b/countryinfo/data/marshall_islands.json index 099ea68..331617a 100644 --- a/countryinfo/data/marshall_islands.json +++ b/countryinfo/data/marshall_islands.json @@ -1 +1 @@ -{"name":"Marshall Islands","altSpellings":["MH","Republic of the Marshall Islands","Aolepān Aorōkin M̧ajeļ"],"area":181,"borders":[],"callingCodes":["692"],"capital":"Majuro","currencies":["USD"],"demonym":"Marshallese","flag":"","geoJSON":{},"ISO":{"alpha2":"MH","alpha3":"MHL"},"languages":["en","mh"],"latlng":[9,168],"nativeName":"M̧ajeļ","population":56086,"provinces":["Ailinginae","Ailinglaplap","Ailuk","Arno","Aur","Bikar","Bikini","Bokak","Ebon","Enewetak","Erikub","Jabat","Jaluit","Jemo","Kili","Kwajalein","Lae","Lib","Likiep","Majuro","Maloelap","Mejit","Mili","Namorik","Namu","Rongelap","Rongrik","Toke","Ujae","Ujelang","Utirik","Wotho","Wotje"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+12:00"],"tld":[".mh"],"translations":{"de":"Marshallinseln","es":"Islas Marshall","fr":"Îles Marshall","ja":"マーシャル諸島","it":"Isole Marshall"},"wiki":"http://en.wikipedia.org/wiki/marshall_islands"} \ No newline at end of file +{"name":"Marshall Islands","altSpellings":["MH","Republic of the Marshall Islands","Aolepān Aorōkin M̧ajeļ"],"area":181,"borders":[],"callingCodes":["692"],"capital":"Majuro","capital_latlng":[7.090992,171.381635],"currencies":["USD"],"demonym":"Marshallese","flag":"","geoJSON":{},"ISO":{"alpha2":"MH","alpha3":"MHL"},"languages":["en","mh"],"latlng":[9,168],"nativeName":"M̧ajeļ","population":56086,"provinces":["Ailinginae","Ailinglaplap","Ailuk","Arno","Aur","Bikar","Bikini","Bokak","Ebon","Enewetak","Erikub","Jabat","Jaluit","Jemo","Kili","Kwajalein","Lae","Lib","Likiep","Majuro","Maloelap","Mejit","Mili","Namorik","Namu","Rongelap","Rongrik","Toke","Ujae","Ujelang","Utirik","Wotho","Wotje"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+12:00"],"tld":[".mh"],"translations":{"de":"Marshallinseln","es":"Islas Marshall","fr":"Îles Marshall","ja":"マーシャル諸島","it":"Isole Marshall"},"wiki":"http://en.wikipedia.org/wiki/marshall_islands"} \ No newline at end of file diff --git a/countryinfo/data/martinique.json b/countryinfo/data/martinique.json index 34df4a9..ca555ee 100644 --- a/countryinfo/data/martinique.json +++ b/countryinfo/data/martinique.json @@ -1 +1 @@ -{"name":"Martinique","altSpellings":["MQ"],"area":null,"borders":[],"callingCodes":["596"],"capital":"Fort-de-France","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"MQ","alpha3":"MTQ"},"languages":["fr"],"latlng":[14.666667,-61],"nativeName":"Martinique","population":386486,"provinces":["Martinique"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".mq"],"translations":{"de":"Martinique","es":"Martinica","fr":"Martinique","ja":"マルティニーク","it":"Martinica"},"wiki":"http://en.wikipedia.org/wiki/martinique"} \ No newline at end of file +{"name":"Martinique","altSpellings":["MQ"],"area":null,"borders":[],"callingCodes":["596"],"capital":"Fort-de-France","capital_latlng":[14.602796,-61.067672],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"MQ","alpha3":"MTQ"},"languages":["fr"],"latlng":[14.666667,-61],"nativeName":"Martinique","population":386486,"provinces":["Martinique"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".mq"],"translations":{"de":"Martinique","es":"Martinica","fr":"Martinique","ja":"マルティニーク","it":"Martinica"},"wiki":"http://en.wikipedia.org/wiki/martinique"} \ No newline at end of file diff --git a/countryinfo/data/mauritania.json b/countryinfo/data/mauritania.json index bc384c8..7a6b519 100644 --- a/countryinfo/data/mauritania.json +++ b/countryinfo/data/mauritania.json @@ -1 +1 @@ -{"name":"Mauritania","altSpellings":["MR","Islamic Republic of Mauritania","al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah"],"area":1030700,"borders":["DZA","MLI","SEN","ESH"],"callingCodes":["222"],"capital":"Nouakchott","currencies":["MRO"],"demonym":"Mauritanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MRT","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]}}]},"ISO":{"alpha2":"MR","alpha3":"MRT"},"languages":["ar"],"latlng":[20,-12],"nativeName":"موريتانيا","population":3545620,"provinces":["Adrar","Assaba","Brakna","Dakhlet Nouadhibou","Gorgol","Guidimaka","Hodh Ech Chargui","Hodh El Gharbi","Inchiri","Nouakchott","Tagant","Tiris Zemmour","Trarza"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".mr"],"translations":{"de":"Mauretanien","es":"Mauritania","fr":"Mauritanie","ja":"モーリタニア","it":"Mauritania"},"wiki":"http://en.wikipedia.org/wiki/mauritania"} \ No newline at end of file +{"name":"Mauritania","altSpellings":["MR","Islamic Republic of Mauritania","al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah"],"area":1030700,"borders":["DZA","MLI","SEN","ESH"],"callingCodes":["222"],"capital":"Nouakchott","capital_latlng":[18.079238,-15.978007],"currencies":["MRO"],"demonym":"Mauritanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MRT","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]}}]},"ISO":{"alpha2":"MR","alpha3":"MRT"},"languages":["ar"],"latlng":[20,-12],"nativeName":"موريتانيا","population":3545620,"provinces":["Adrar","Assaba","Brakna","Dakhlet Nouadhibou","Gorgol","Guidimaka","Hodh Ech Chargui","Hodh El Gharbi","Inchiri","Nouakchott","Tagant","Tiris Zemmour","Trarza"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".mr"],"translations":{"de":"Mauretanien","es":"Mauritania","fr":"Mauritanie","ja":"モーリタニア","it":"Mauritania"},"wiki":"http://en.wikipedia.org/wiki/mauritania"} \ No newline at end of file diff --git a/countryinfo/data/mauritius.json b/countryinfo/data/mauritius.json index 025707c..2568109 100644 --- a/countryinfo/data/mauritius.json +++ b/countryinfo/data/mauritius.json @@ -1 +1 @@ -{"name":"Mauritius","altSpellings":["MU","Republic of Mauritius","République de Maurice"],"area":2040,"borders":[],"callingCodes":["230"],"capital":"Port Louis","currencies":["MUR"],"demonym":"Mauritian","flag":"","geoJSON":{},"ISO":{"alpha2":"MU","alpha3":"MUS"},"languages":["en"],"latlng":[-20.28333333,57.55],"nativeName":"Maurice","population":1261208,"provinces":["Agalega Islands","Black River","Cargados Carajos Shoals","Flacq","Grand Port","Moka","Pamplemousses","Plaines Wilhems","Port Louis","Riviere du Rempart","Rodrigues","Savanne"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+04:00"],"tld":[".mu"],"translations":{"de":"Mauritius","es":"Mauricio","fr":"Île Maurice","ja":"モーリシャス","it":"Mauritius"},"wiki":"http://en.wikipedia.org/wiki/mauritius"} \ No newline at end of file +{"name":"Mauritius","altSpellings":["MU","Republic of Mauritius","République de Maurice"],"area":2040,"borders":[],"callingCodes":["230"],"capital":"Port Louis","capital_latlng":[-20.163728,57.504533],"currencies":["MUR"],"demonym":"Mauritian","flag":"","geoJSON":{},"ISO":{"alpha2":"MU","alpha3":"MUS"},"languages":["en"],"latlng":[-20.28333333,57.55],"nativeName":"Maurice","population":1261208,"provinces":["Agalega Islands","Black River","Cargados Carajos Shoals","Flacq","Grand Port","Moka","Pamplemousses","Plaines Wilhems","Port Louis","Riviere du Rempart","Rodrigues","Savanne"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+04:00"],"tld":[".mu"],"translations":{"de":"Mauritius","es":"Mauricio","fr":"Île Maurice","ja":"モーリシャス","it":"Mauritius"},"wiki":"http://en.wikipedia.org/wiki/mauritius"} \ No newline at end of file diff --git a/countryinfo/data/mayotte.json b/countryinfo/data/mayotte.json index ad765bd..428be83 100644 --- a/countryinfo/data/mayotte.json +++ b/countryinfo/data/mayotte.json @@ -1 +1 @@ -{"name":"Mayotte","altSpellings":["YT","Department of Mayotte","Département de Mayotte"],"area":null,"borders":[],"callingCodes":["262"],"capital":"Mamoudzou","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"YT","alpha3":"MYT"},"languages":["fr"],"latlng":[-12.83333333,45.16666666],"nativeName":"Mayotte","population":212645,"provinces":["Mayotte"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".yt"],"translations":{"de":"Mayotte","es":"Mayotte","fr":"Mayotte","ja":"マヨット","it":"Mayotte"},"wiki":"http://en.wikipedia.org/wiki/mayotte"} \ No newline at end of file +{"name":"Mayotte","altSpellings":["YT","Department of Mayotte","Département de Mayotte"],"area":null,"borders":[],"callingCodes":["262"],"capital":"Mamoudzou","capital_latlng":[-12.780586,45.227991],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"YT","alpha3":"MYT"},"languages":["fr"],"latlng":[-12.83333333,45.16666666],"nativeName":"Mayotte","population":212645,"provinces":["Mayotte"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".yt"],"translations":{"de":"Mayotte","es":"Mayotte","fr":"Mayotte","ja":"マヨット","it":"Mayotte"},"wiki":"http://en.wikipedia.org/wiki/mayotte"} \ No newline at end of file diff --git a/countryinfo/data/mexico.json b/countryinfo/data/mexico.json index 04ae9c6..0721c52 100644 --- a/countryinfo/data/mexico.json +++ b/countryinfo/data/mexico.json @@ -1 +1 @@ -{"name":"Mexico","altSpellings":["MX","Mexicanos","United Mexican States","Estados Unidos Mexicanos"],"area":1964375,"borders":["BLZ","GTM","USA"],"callingCodes":["52"],"capital":"Mexico City","currencies":["MXN"],"demonym":"Mexican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MEX","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]}}]},"ISO":{"alpha2":"MX","alpha3":"MEX"},"languages":["es"],"latlng":[23,-102],"nativeName":"México","population":119713203,"provinces":["Aguascalientes","Baja California","Baja California Sur","Campeche","Chiapas","Chihuahua","Coahuila de Zaragoza","Colima","Distrito Federal","Durango","Guanajuato","Guerrero","Hidalgo","Jalisco","Mexico","Michoacan de Ocampo","Morelos","Nayarit","Nuevo Leon","Oaxaca","Puebla","Queretaro de Arteaga","Quintana Roo","San Luis Potosi","Sinaloa","Sonora","Tabasco","Tamaulipas","Tlaxcala","Veracruz-Llave","Yucatan","Zacatecas"],"region":"Americas","subregion":"Central America","timezones":["UTC−08:00","UTC−07:00","UTC−06:00"],"tld":[".mx"],"translations":{"de":"Mexiko","es":"México","fr":"Mexique","ja":"メキシコ","it":"Messico"},"wiki":"http://en.wikipedia.org/wiki/mexico"} \ No newline at end of file +{"name":"Mexico","altSpellings":["MX","Mexicanos","United Mexican States","Estados Unidos Mexicanos"],"area":1964375,"borders":["BLZ","GTM","USA"],"callingCodes":["52"],"capital":"Mexico City","capital_latlng":[19.43263,-99.133178],"currencies":["MXN"],"demonym":"Mexican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MEX","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]}}]},"ISO":{"alpha2":"MX","alpha3":"MEX"},"languages":["es"],"latlng":[23,-102],"nativeName":"México","population":119713203,"provinces":["Aguascalientes","Baja California","Baja California Sur","Campeche","Chiapas","Chihuahua","Coahuila de Zaragoza","Colima","Distrito Federal","Durango","Guanajuato","Guerrero","Hidalgo","Jalisco","Mexico","Michoacan de Ocampo","Morelos","Nayarit","Nuevo Leon","Oaxaca","Puebla","Queretaro de Arteaga","Quintana Roo","San Luis Potosi","Sinaloa","Sonora","Tabasco","Tamaulipas","Tlaxcala","Veracruz-Llave","Yucatan","Zacatecas"],"region":"Americas","subregion":"Central America","timezones":["UTC−08:00","UTC−07:00","UTC−06:00"],"tld":[".mx"],"translations":{"de":"Mexiko","es":"México","fr":"Mexique","ja":"メキシコ","it":"Messico"},"wiki":"http://en.wikipedia.org/wiki/mexico"} \ No newline at end of file diff --git a/countryinfo/data/micronesia_federated_states_of.json b/countryinfo/data/micronesia_federated_states_of.json index 6ea158e..f71e3e8 100644 --- a/countryinfo/data/micronesia_federated_states_of.json +++ b/countryinfo/data/micronesia_federated_states_of.json @@ -1 +1 @@ -{"name":"Federated States of Micronesia","altSpellings":["FM","Federated States of Micronesia"],"area":702,"borders":[],"callingCodes":["691"],"capital":"Palikir","currencies":["USD"],"demonym":"Micronesian","flag":"","geoJSON":{},"ISO":{"alpha2":"FM","alpha3":"FSM"},"languages":["en"],"latlng":[6.91666666,158.25],"nativeName":"Micronesia","population":101351,"provinces":["Chuuk (Truk)","Kosrae","Pohnpei","Yap"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+10:00","UTC+11"],"tld":[".fm"],"translations":{"de":"Mikronesien","es":"Micronesia","fr":"Micronésie","ja":"ミクロネシア連邦","it":"Micronesia"},"wiki":"http://en.wikipedia.org/wiki/micronesia_federated_states_of"} \ No newline at end of file +{"name":"Federated States of Micronesia","altSpellings":["FM","Federated States of Micronesia"],"area":702,"borders":[],"callingCodes":["691"],"capital":"Palikir","capital_latlng":[6.920744,158.162714],"currencies":["USD"],"demonym":"Micronesian","flag":"","geoJSON":{},"ISO":{"alpha2":"FM","alpha3":"FSM"},"languages":["en"],"latlng":[6.91666666,158.25],"nativeName":"Micronesia","population":101351,"provinces":["Chuuk (Truk)","Kosrae","Pohnpei","Yap"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+10:00","UTC+11"],"tld":[".fm"],"translations":{"de":"Mikronesien","es":"Micronesia","fr":"Micronésie","ja":"ミクロネシア連邦","it":"Micronesia"},"wiki":"http://en.wikipedia.org/wiki/micronesia_federated_states_of"} \ No newline at end of file diff --git a/countryinfo/data/moldova.json b/countryinfo/data/moldova.json index 0e18698..f93764b 100644 --- a/countryinfo/data/moldova.json +++ b/countryinfo/data/moldova.json @@ -1 +1 @@ -{"name":"Moldova","altSpellings":["MD","Republic of Moldova","Republica Moldova"],"area":33846,"borders":["ROU","UKR"],"callingCodes":["373"],"capital":"Chișinău","currencies":["MDL"],"demonym":"Moldovan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MDA","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]}}]},"ISO":{"alpha2":"MD","alpha3":"MDA"},"languages":["ro"],"latlng":[47,29],"nativeName":"Moldova","population":3557600,"provinces":["Balti","Cahul","Chisinau","Chisinau","Dubasari","Edinet","Gagauzia","Lapusna","Orhei","Soroca","Tighina","Ungheni"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".md"],"translations":{"de":"Moldawie","es":"Moldavia","fr":"Moldavie","ja":"モルドバ共和国","it":"Moldavia"},"wiki":"http://en.wikipedia.org/wiki/moldova"} \ No newline at end of file +{"name":"Moldova","altSpellings":["MD","Republic of Moldova","Republica Moldova"],"area":33846,"borders":["ROU","UKR"],"callingCodes":["373"],"capital":"Chișinău","capital_latlng":[47.024471,28.832253],"currencies":["MDL"],"demonym":"Moldovan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MDA","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]}}]},"ISO":{"alpha2":"MD","alpha3":"MDA"},"languages":["ro"],"latlng":[47,29],"nativeName":"Moldova","population":3557600,"provinces":["Balti","Cahul","Chisinau","Chisinau","Dubasari","Edinet","Gagauzia","Lapusna","Orhei","Soroca","Tighina","Ungheni"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".md"],"translations":{"de":"Moldawie","es":"Moldavia","fr":"Moldavie","ja":"モルドバ共和国","it":"Moldavia"},"wiki":"http://en.wikipedia.org/wiki/moldova"} \ No newline at end of file diff --git a/countryinfo/data/monaco.json b/countryinfo/data/monaco.json index 6901fde..854e5b9 100644 --- a/countryinfo/data/monaco.json +++ b/countryinfo/data/monaco.json @@ -1 +1 @@ -{"name":"Monaco","altSpellings":["MC","Principality of Monaco","Principauté de Monaco"],"area":2.02,"borders":["FRA"],"callingCodes":["377"],"capital":"Monaco","currencies":["EUR"],"demonym":"Monegasque","flag":"","geoJSON":{},"ISO":{"alpha2":"MC","alpha3":"MCO"},"languages":["fr"],"latlng":[43.73333333,7.4],"nativeName":"Monaco","population":36950,"provinces":["Fontvieille","La Condamine","Monaco-Ville","Monte-Carlo"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".mc"],"translations":{"de":"Monaco","es":"Mónaco","fr":"Monaco","ja":"モナコ","it":"Principato di Monaco"},"wiki":"http://en.wikipedia.org/wiki/monaco"} \ No newline at end of file +{"name":"Monaco","altSpellings":["MC","Principality of Monaco","Principauté de Monaco"],"area":2.02,"borders":["FRA"],"callingCodes":["377"],"capital":"Monaco","capital_latlng":[43.732349,7.427683],"currencies":["EUR"],"demonym":"Monegasque","flag":"","geoJSON":{},"ISO":{"alpha2":"MC","alpha3":"MCO"},"languages":["fr"],"latlng":[43.73333333,7.4],"nativeName":"Monaco","population":36950,"provinces":["Fontvieille","La Condamine","Monaco-Ville","Monte-Carlo"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".mc"],"translations":{"de":"Monaco","es":"Mónaco","fr":"Monaco","ja":"モナコ","it":"Principato di Monaco"},"wiki":"http://en.wikipedia.org/wiki/monaco"} \ No newline at end of file diff --git a/countryinfo/data/mongolia.json b/countryinfo/data/mongolia.json index 136a986..0a51f4c 100644 --- a/countryinfo/data/mongolia.json +++ b/countryinfo/data/mongolia.json @@ -1 +1 @@ -{"name":"Mongolia","altSpellings":["MN"],"area":1564110,"borders":["CHN","RUS"],"callingCodes":["976"],"capital":"Ulan Bator","currencies":["MNT"],"demonym":"Mongolian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MNG","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]}}]},"ISO":{"alpha2":"MN","alpha3":"MNG"},"languages":["mn"],"latlng":[46,105],"nativeName":"Монгол улс","population":2987733,"provinces":["Arhangay","Bayan-Olgiy","Bayanhongor","Bulgan","Darhan","Dornod","Dornogovi","Dundgovi","Dzavhan","Erdenet","Govi-Altay","Hentiy","Hovd","Hovsgol","Omnogovi","Ovorhangay","Selenge","Suhbaatar","Tov","Ulaanbaatar","Uvs"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+07:00","UTC+08:00"],"tld":[".mn"],"translations":{"de":"Mongolei","es":"Mongolia","fr":"Mongolie","ja":"モンゴル","it":"Mongolia"},"wiki":"http://en.wikipedia.org/wiki/mongolia"} \ No newline at end of file +{"name":"Mongolia","altSpellings":["MN"],"area":1564110,"borders":["CHN","RUS"],"callingCodes":["976"],"capital":"Ulan Bator","capital_latlng":[47.918468,106.917702],"currencies":["MNT"],"demonym":"Mongolian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MNG","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]}}]},"ISO":{"alpha2":"MN","alpha3":"MNG"},"languages":["mn"],"latlng":[46,105],"nativeName":"Монгол улс","population":2987733,"provinces":["Arhangay","Bayan-Olgiy","Bayanhongor","Bulgan","Darhan","Dornod","Dornogovi","Dundgovi","Dzavhan","Erdenet","Govi-Altay","Hentiy","Hovd","Hovsgol","Omnogovi","Ovorhangay","Selenge","Suhbaatar","Tov","Ulaanbaatar","Uvs"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+07:00","UTC+08:00"],"tld":[".mn"],"translations":{"de":"Mongolei","es":"Mongolia","fr":"Mongolie","ja":"モンゴル","it":"Mongolia"},"wiki":"http://en.wikipedia.org/wiki/mongolia"} \ No newline at end of file diff --git a/countryinfo/data/montserrat.json b/countryinfo/data/montserrat.json index 66a2725..345003a 100644 --- a/countryinfo/data/montserrat.json +++ b/countryinfo/data/montserrat.json @@ -1 +1 @@ -{"name":"Montserrat","altSpellings":["MS"],"area":102,"borders":[],"callingCodes":["1664"],"capital":"Plymouth","currencies":["XCD"],"demonym":"Montserratian","flag":"","geoJSON":{},"ISO":{"alpha2":"MS","alpha3":"MSR"},"languages":["en"],"latlng":[16.75,-62.2],"nativeName":"Montserrat","population":4922,"provinces":["Saint Anthony","Saint Georges","Saint Peter's"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ms"],"translations":{"de":"Montserrat","es":"Montserrat","fr":"Montserrat","ja":"モントセラト","it":"Montserrat"},"wiki":"http://en.wikipedia.org/wiki/montserrat"} \ No newline at end of file +{"name":"Montserrat","altSpellings":["MS"],"area":102,"borders":[],"callingCodes":["1664"],"capital":"Plymouth","capital_latlng":[50.371266,-4.142566],"currencies":["XCD"],"demonym":"Montserratian","flag":"","geoJSON":{},"ISO":{"alpha2":"MS","alpha3":"MSR"},"languages":["en"],"latlng":[16.75,-62.2],"nativeName":"Montserrat","population":4922,"provinces":["Saint Anthony","Saint Georges","Saint Peter's"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".ms"],"translations":{"de":"Montserrat","es":"Montserrat","fr":"Montserrat","ja":"モントセラト","it":"Montserrat"},"wiki":"http://en.wikipedia.org/wiki/montserrat"} \ No newline at end of file diff --git a/countryinfo/data/morocco.json b/countryinfo/data/morocco.json index 1640d26..ec4915a 100644 --- a/countryinfo/data/morocco.json +++ b/countryinfo/data/morocco.json @@ -1 +1 @@ -{"name":"Morocco","altSpellings":["MA","Kingdom of Morocco","Al-Mamlakah al-Maġribiyah"],"area":446550,"borders":["DZA","ESH","ESP"],"callingCodes":["212"],"capital":"Rabat","currencies":["MAD"],"demonym":"Moroccan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MAR","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]}}]},"ISO":{"alpha2":"MA","alpha3":"MAR"},"languages":["ar"],"latlng":[32,-5],"nativeName":"المغرب","population":33465000,"provinces":["Agadir","Al Hoceima","Azilal","Ben Slimane","Beni Mellal","Boulemane","Casablanca","Chaouen","El Jadida","El Kelaa des Srarhna","Er Rachidia","Essaouira","Fes","Figuig","Guelmim","Ifrane","Kenitra","Khemisset","Khenifra","Khouribga","Laayoune","Larache","Marrakech","Meknes","Nador","Ouarzazate","Oujda","Rabat-Sale","Safi","Settat","Sidi Kacem","Tan-Tan","Tanger","Taounate","Taroudannt","Tata","Taza","Tetouan","Tiznit"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC"],"tld":[".ma"],"translations":{"de":"Marokko","es":"Marruecos","fr":"Maroc","ja":"モロッコ","it":"Marocco"},"wiki":"http://en.wikipedia.org/wiki/morocco"} \ No newline at end of file +{"name":"Morocco","altSpellings":["MA","Kingdom of Morocco","Al-Mamlakah al-Maġribiyah"],"area":446550,"borders":["DZA","ESH","ESP"],"callingCodes":["212"],"capital":"Rabat","capital_latlng":[34.022405,-6.834543],"currencies":["MAD"],"demonym":"Moroccan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MAR","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]}}]},"ISO":{"alpha2":"MA","alpha3":"MAR"},"languages":["ar"],"latlng":[32,-5],"nativeName":"المغرب","population":33465000,"provinces":["Agadir","Al Hoceima","Azilal","Ben Slimane","Beni Mellal","Boulemane","Casablanca","Chaouen","El Jadida","El Kelaa des Srarhna","Er Rachidia","Essaouira","Fes","Figuig","Guelmim","Ifrane","Kenitra","Khemisset","Khenifra","Khouribga","Laayoune","Larache","Marrakech","Meknes","Nador","Ouarzazate","Oujda","Rabat-Sale","Safi","Settat","Sidi Kacem","Tan-Tan","Tanger","Taounate","Taroudannt","Tata","Taza","Tetouan","Tiznit"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC"],"tld":[".ma"],"translations":{"de":"Marokko","es":"Marruecos","fr":"Maroc","ja":"モロッコ","it":"Marocco"},"wiki":"http://en.wikipedia.org/wiki/morocco"} \ No newline at end of file diff --git a/countryinfo/data/mozambique.json b/countryinfo/data/mozambique.json index 84148af..edb4775 100644 --- a/countryinfo/data/mozambique.json +++ b/countryinfo/data/mozambique.json @@ -1 +1 @@ -{"name":"Mozambique","altSpellings":["MZ","Republic of Mozambique","República de Moçambique"],"area":801590,"borders":["MWI","ZAF","SWZ","TZA","ZMB","ZWE"],"callingCodes":["258"],"capital":"Maputo","currencies":["MZN"],"demonym":"Mozambican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MOZ","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]}}]},"ISO":{"alpha2":"MZ","alpha3":"MOZ"},"languages":["pt"],"latlng":[-18.25,35],"nativeName":"Moçambique","population":25041922,"provinces":["Cabo Delgado","Gaza","Inhambane","Manica","Maputo","Nampula","Niassa","Sofala","Tete","Zambezia"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".mz"],"translations":{"de":"Mosambik","es":"Mozambique","fr":"Mozambique","ja":"モザンビーク","it":"Mozambico"},"wiki":"http://en.wikipedia.org/wiki/mozambique"} \ No newline at end of file +{"name":"Mozambique","altSpellings":["MZ","Republic of Mozambique","República de Moçambique"],"area":801590,"borders":["MWI","ZAF","SWZ","TZA","ZMB","ZWE"],"callingCodes":["258"],"capital":"Maputo","capital_latlng":[-25.966213,32.56745],"currencies":["MZN"],"demonym":"Mozambican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"MOZ","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]}}]},"ISO":{"alpha2":"MZ","alpha3":"MOZ"},"languages":["pt"],"latlng":[-18.25,35],"nativeName":"Moçambique","population":25041922,"provinces":["Cabo Delgado","Gaza","Inhambane","Manica","Maputo","Nampula","Niassa","Sofala","Tete","Zambezia"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".mz"],"translations":{"de":"Mosambik","es":"Mozambique","fr":"Mozambique","ja":"モザンビーク","it":"Mozambico"},"wiki":"http://en.wikipedia.org/wiki/mozambique"} \ No newline at end of file diff --git a/countryinfo/data/namibia.json b/countryinfo/data/namibia.json index da5d9b4..a685aea 100644 --- a/countryinfo/data/namibia.json +++ b/countryinfo/data/namibia.json @@ -1 +1 @@ -{"name":"Namibia","altSpellings":["NA","Namibië","Republic of Namibia"],"area":825615,"borders":["AGO","BWA","ZAF","ZMB"],"callingCodes":["264"],"capital":"Windhoek","currencies":["NAD","ZAR"],"demonym":"Namibian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NAM","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]}}]},"ISO":{"alpha2":"NA","alpha3":"NAM"},"languages":["en","af"],"latlng":[-22,17],"nativeName":"Namibia","population":2113077,"provinces":["Caprivi","Erongo","Hardap","Karas","Khomas","Kunene","Ohangwena","Okavango","Omaheke","Omusati","Oshana","Oshikoto","Otjozondjupa"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+01:00"],"tld":[".na"],"translations":{"de":"Namibia","es":"Namibia","fr":"Namibie","ja":"ナミビア","it":"Namibia"},"wiki":"http://en.wikipedia.org/wiki/namibia"} \ No newline at end of file +{"name":"Namibia","altSpellings":["NA","Namibië","Republic of Namibia"],"area":825615,"borders":["AGO","BWA","ZAF","ZMB"],"callingCodes":["264"],"capital":"Windhoek","capital_latlng":[-22.574392,17.079069],"currencies":["NAD","ZAR"],"demonym":"Namibian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NAM","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]}}]},"ISO":{"alpha2":"NA","alpha3":"NAM"},"languages":["en","af"],"latlng":[-22,17],"nativeName":"Namibia","population":2113077,"provinces":["Caprivi","Erongo","Hardap","Karas","Khomas","Kunene","Ohangwena","Okavango","Omaheke","Omusati","Oshana","Oshikoto","Otjozondjupa"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+01:00"],"tld":[".na"],"translations":{"de":"Namibia","es":"Namibia","fr":"Namibie","ja":"ナミビア","it":"Namibia"},"wiki":"http://en.wikipedia.org/wiki/namibia"} \ No newline at end of file diff --git a/countryinfo/data/nauru.json b/countryinfo/data/nauru.json index 18048c9..a3e4cdf 100644 --- a/countryinfo/data/nauru.json +++ b/countryinfo/data/nauru.json @@ -1 +1 @@ -{"name":"Nauru","altSpellings":["NR","Naoero","Pleasant Island","Republic of Nauru","Ripublik Naoero"],"area":21,"borders":[],"callingCodes":["674"],"capital":"Yaren","currencies":["AUD"],"demonym":"Nauruan","flag":"","geoJSON":{},"ISO":{"alpha2":"NR","alpha3":"NRU"},"languages":["en","na"],"latlng":[-0.53333333,166.91666666],"nativeName":"Nauru","population":10084,"provinces":["Aiwo","Anabar","Anetan","Anibare","Baiti","Boe","Buada","Denigomodu","Ewa","Ijuw","Meneng","Nibok","Uaboe","Yaren"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+12:00"],"tld":[".nr"],"translations":{"de":"Nauru","es":"Nauru","fr":"Nauru","ja":"ナウル","it":"Nauru"},"wiki":"http://en.wikipedia.org/wiki/nauru"} \ No newline at end of file +{"name":"Nauru","altSpellings":["NR","Naoero","Pleasant Island","Republic of Nauru","Ripublik Naoero"],"area":21,"borders":[],"callingCodes":["674"],"capital":"Yaren","capital_latlng":[-0.547101,166.9164],"currencies":["AUD"],"demonym":"Nauruan","flag":"","geoJSON":{},"ISO":{"alpha2":"NR","alpha3":"NRU"},"languages":["en","na"],"latlng":[-0.53333333,166.91666666],"nativeName":"Nauru","population":10084,"provinces":["Aiwo","Anabar","Anetan","Anibare","Baiti","Boe","Buada","Denigomodu","Ewa","Ijuw","Meneng","Nibok","Uaboe","Yaren"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+12:00"],"tld":[".nr"],"translations":{"de":"Nauru","es":"Nauru","fr":"Nauru","ja":"ナウル","it":"Nauru"},"wiki":"http://en.wikipedia.org/wiki/nauru"} \ No newline at end of file diff --git a/countryinfo/data/nepal.json b/countryinfo/data/nepal.json index dd3c4db..cab91f0 100644 --- a/countryinfo/data/nepal.json +++ b/countryinfo/data/nepal.json @@ -1 +1 @@ -{"name":"Nepal","altSpellings":["NP","Federal Democratic Republic of Nepal","Loktāntrik Ganatantra Nepāl"],"area":147181,"borders":["CHN","IND"],"callingCodes":["977"],"capital":"Kathmandu","currencies":["NPR"],"demonym":"Nepalese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NPL","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]}}]},"ISO":{"alpha2":"NP","alpha3":"NPL"},"languages":["ne"],"latlng":[28,84],"nativeName":"नेपाल","population":27646053,"provinces":["Bagmati","Bheri","Dhawalagiri","Gandaki","Janakpur","Karnali","Kosi","Lumbini","Mahakali","Mechi","Narayani","Rapti","Sagarmatha","Seti"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:45"],"tld":[".np"],"translations":{"de":"Népal","es":"Nepal","fr":"Népal","ja":"ネパール","it":"Nepal"},"wiki":"http://en.wikipedia.org/wiki/nepal"} \ No newline at end of file +{"name":"Nepal","altSpellings":["NP","Federal Democratic Republic of Nepal","Loktāntrik Ganatantra Nepāl"],"area":147181,"borders":["CHN","IND"],"callingCodes":["977"],"capital":"Kathmandu","capital_latlng":[27.708317,85.320582],"currencies":["NPR"],"demonym":"Nepalese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NPL","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]}}]},"ISO":{"alpha2":"NP","alpha3":"NPL"},"languages":["ne"],"latlng":[28,84],"nativeName":"नेपाल","population":27646053,"provinces":["Bagmati","Bheri","Dhawalagiri","Gandaki","Janakpur","Karnali","Kosi","Lumbini","Mahakali","Mechi","Narayani","Rapti","Sagarmatha","Seti"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:45"],"tld":[".np"],"translations":{"de":"Népal","es":"Nepal","fr":"Népal","ja":"ネパール","it":"Nepal"},"wiki":"http://en.wikipedia.org/wiki/nepal"} \ No newline at end of file diff --git a/countryinfo/data/netherlands.json b/countryinfo/data/netherlands.json index b00ddd4..acfb6e1 100644 --- a/countryinfo/data/netherlands.json +++ b/countryinfo/data/netherlands.json @@ -1 +1 @@ -{"name":"Netherlands","altSpellings":["NL","Holland","Nederland"],"area":41850,"borders":["BEL","DEU"],"callingCodes":["31"],"capital":"Amsterdam","currencies":["EUR"],"demonym":"Dutch","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NLD","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]}}]},"ISO":{"alpha2":"NL","alpha3":"NLD"},"languages":["nl"],"latlng":[52.5,5.75],"nativeName":"Nederland","population":16881000,"provinces":["Drenthe","Flevoland","Friesland","Gelderland","Groningen","Limburg","Noord-Brabant","Noord-Holland","Overijssel","Utrecht","Zeeland","Zuid-Holland"],"region":"Europe","subregion":"Western Europe","timezones":null,"tld":[".nl"],"translations":{"de":"Niederlande","es":"Países Bajos","fr":"Pays-Bas","ja":"オランダ","it":"Paesi Bassi"},"wiki":"http://en.wikipedia.org/wiki/netherlands"} \ No newline at end of file +{"name":"Netherlands","altSpellings":["NL","Holland","Nederland"],"area":41850,"borders":["BEL","DEU"],"callingCodes":["31"],"capital":"Amsterdam","capital_latlng":[52.37276,4.893604],"currencies":["EUR"],"demonym":"Dutch","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NLD","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]}}]},"ISO":{"alpha2":"NL","alpha3":"NLD"},"languages":["nl"],"latlng":[52.5,5.75],"nativeName":"Nederland","population":16881000,"provinces":["Drenthe","Flevoland","Friesland","Gelderland","Groningen","Limburg","Noord-Brabant","Noord-Holland","Overijssel","Utrecht","Zeeland","Zuid-Holland"],"region":"Europe","subregion":"Western Europe","timezones":null,"tld":[".nl"],"translations":{"de":"Niederlande","es":"Países Bajos","fr":"Pays-Bas","ja":"オランダ","it":"Paesi Bassi"},"wiki":"http://en.wikipedia.org/wiki/netherlands"} \ No newline at end of file diff --git a/countryinfo/data/new_caledonia.json b/countryinfo/data/new_caledonia.json index 1df6091..9fbb376 100644 --- a/countryinfo/data/new_caledonia.json +++ b/countryinfo/data/new_caledonia.json @@ -1 +1 @@ -{"name":"New Caledonia","altSpellings":["NC"],"area":18575,"borders":[],"callingCodes":["687"],"capital":"Nouméa","currencies":["XPF"],"demonym":"New Caledonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NCL","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]}}]},"ISO":{"alpha2":"NC","alpha3":"NCL"},"languages":["fr"],"latlng":[-21.5,165.5],"nativeName":"Nouvelle-Calédonie","population":268767,"provinces":["Iles Loyaute","Nord","Sud"],"region":"Oceania","subregion":"Melanesia","timezones":null,"tld":[".nc"],"translations":{"de":"Neukaledonien","es":"Nueva Caledonia","fr":"Nouvelle-Calédonie","ja":"ニューカレドニア","it":"Nuova Caledonia"},"wiki":"http://en.wikipedia.org/wiki/new_caledonia"} \ No newline at end of file +{"name":"New Caledonia","altSpellings":["NC"],"area":18575,"borders":[],"callingCodes":["687"],"capital":"Nouméa","capital_latlng":[-22.274526,166.442419],"currencies":["XPF"],"demonym":"New Caledonian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NCL","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]}}]},"ISO":{"alpha2":"NC","alpha3":"NCL"},"languages":["fr"],"latlng":[-21.5,165.5],"nativeName":"Nouvelle-Calédonie","population":268767,"provinces":["Iles Loyaute","Nord","Sud"],"region":"Oceania","subregion":"Melanesia","timezones":null,"tld":[".nc"],"translations":{"de":"Neukaledonien","es":"Nueva Caledonia","fr":"Nouvelle-Calédonie","ja":"ニューカレドニア","it":"Nuova Caledonia"},"wiki":"http://en.wikipedia.org/wiki/new_caledonia"} \ No newline at end of file diff --git a/countryinfo/data/new_zealand.json b/countryinfo/data/new_zealand.json index c13d2be..33b8e59 100644 --- a/countryinfo/data/new_zealand.json +++ b/countryinfo/data/new_zealand.json @@ -1 +1 @@ -{"name":"New Zealand","altSpellings":["NZ","Aotearoa"],"area":270467,"borders":[],"callingCodes":["64"],"capital":"Wellington","currencies":["NZD"],"demonym":"New Zealander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NZL","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]}}]},"ISO":{"alpha2":"NZ","alpha3":"NZL"},"languages":["en","mi"],"latlng":[-41,174],"nativeName":"New Zealand","population":4547900,"provinces":["Akaroa","Amuri","Ashburton","Bay of Islands","Bruce","Buller","Chatham Islands","Cheviot","Clifton","Clutha","Cook","Dannevirke","Egmont","Eketahuna","Ellesmere","Eltham","Eyre","Featherston","Franklin","Golden Bay","Great Barrier Island","Grey","Hauraki Plains","Hawera","Hawke's Bay","Heathcote","Hikurangi","Hobson","Hokianga","Horowhenua","Hurunui","Hutt","Inangahua","Inglewood","Kaikoura","Kairanga","Kiwitea","Lake","Mackenzie","Malvern","Manaia","Manawatu","Mangonui","Maniototo","Marlborough","Masterton","Matamata","Mount Herbert","Ohinemuri","Opotiki","Oroua","Otamatea","Otorohanga","Oxford","Pahiatua","Paparua","Patea","Piako","Pohangina","Raglan","Rangiora","Rangitikei","Rodney","Rotorua","Runanga","Saint Kilda","Silverpeaks","Southland","Stewart Island","Stratford","Strathallan","Taranaki","Taumarunui","Taupo","Tauranga","Thames-Coromandel","Tuapeka","Vincent","Waiapu","Waiheke","Waihemo","Waikato","Waikohu","Waimairi","Waimarino","Waimate","Waimate West","Waimea","Waipa","Waipawa","Waipukurau","Wairarapa South","Wairewa","Wairoa","Waitaki","Waitomo","Waitotara","Wallace","Wanganui","Waverley","Westland","Whakatane","Whangarei","Whangaroa","Woodville"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":["UTC−11:00","UTC−10:00","UTC+12:00","UTC+12:45","UTC+13:00"],"tld":[".nz"],"translations":{"de":"Neuseeland","es":"Nueva Zelanda","fr":"Nouvelle-Zélande","ja":"ニュージーランド","it":"Nuova Zelanda"},"wiki":"http://en.wikipedia.org/wiki/new_zealand"} \ No newline at end of file +{"name":"New Zealand","altSpellings":["NZ","Aotearoa"],"area":270467,"borders":[],"callingCodes":["64"],"capital":"Wellington","capital_latlng":[-41.288795,174.777211],"currencies":["NZD"],"demonym":"New Zealander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NZL","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]}}]},"ISO":{"alpha2":"NZ","alpha3":"NZL"},"languages":["en","mi"],"latlng":[-41,174],"nativeName":"New Zealand","population":4547900,"provinces":["Akaroa","Amuri","Ashburton","Bay of Islands","Bruce","Buller","Chatham Islands","Cheviot","Clifton","Clutha","Cook","Dannevirke","Egmont","Eketahuna","Ellesmere","Eltham","Eyre","Featherston","Franklin","Golden Bay","Great Barrier Island","Grey","Hauraki Plains","Hawera","Hawke's Bay","Heathcote","Hikurangi","Hobson","Hokianga","Horowhenua","Hurunui","Hutt","Inangahua","Inglewood","Kaikoura","Kairanga","Kiwitea","Lake","Mackenzie","Malvern","Manaia","Manawatu","Mangonui","Maniototo","Marlborough","Masterton","Matamata","Mount Herbert","Ohinemuri","Opotiki","Oroua","Otamatea","Otorohanga","Oxford","Pahiatua","Paparua","Patea","Piako","Pohangina","Raglan","Rangiora","Rangitikei","Rodney","Rotorua","Runanga","Saint Kilda","Silverpeaks","Southland","Stewart Island","Stratford","Strathallan","Taranaki","Taumarunui","Taupo","Tauranga","Thames-Coromandel","Tuapeka","Vincent","Waiapu","Waiheke","Waihemo","Waikato","Waikohu","Waimairi","Waimarino","Waimate","Waimate West","Waimea","Waipa","Waipawa","Waipukurau","Wairarapa South","Wairewa","Wairoa","Waitaki","Waitomo","Waitotara","Wallace","Wanganui","Waverley","Westland","Whakatane","Whangarei","Whangaroa","Woodville"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":["UTC−11:00","UTC−10:00","UTC+12:00","UTC+12:45","UTC+13:00"],"tld":[".nz"],"translations":{"de":"Neuseeland","es":"Nueva Zelanda","fr":"Nouvelle-Zélande","ja":"ニュージーランド","it":"Nuova Zelanda"},"wiki":"http://en.wikipedia.org/wiki/new_zealand"} \ No newline at end of file diff --git a/countryinfo/data/nicaragua.json b/countryinfo/data/nicaragua.json index 413c58c..d3d06dd 100644 --- a/countryinfo/data/nicaragua.json +++ b/countryinfo/data/nicaragua.json @@ -1 +1 @@ -{"name":"Nicaragua","altSpellings":["NI","Republic of Nicaragua","República de Nicaragua"],"area":130373,"borders":["CRI","HND"],"callingCodes":["505"],"capital":"Managua","currencies":["NIO"],"demonym":"Nicaraguan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NIC","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]}}]},"ISO":{"alpha2":"NI","alpha3":"NIC"},"languages":["es"],"latlng":[13,-85],"nativeName":"Nicaragua","population":6134270,"provinces":["Atlantico Norte","Atlantico Sur","Boaco","Carazo","Chinandega","Chontales","Esteli","Granada","Jinotega","Leon","Madriz","Managua","Masaya","Matagalpa","Nueva Segovia","Rio San Juan","Rivas"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".ni"],"translations":{"de":"Nicaragua","es":"Nicaragua","fr":"Nicaragua","ja":"ニカラグア","it":"Nicaragua"},"wiki":"http://en.wikipedia.org/wiki/nicaragua"} \ No newline at end of file +{"name":"Nicaragua","altSpellings":["NI","Republic of Nicaragua","República de Nicaragua"],"area":130373,"borders":["CRI","HND"],"callingCodes":["505"],"capital":"Managua","capital_latlng":[12.145991,-86.274666],"currencies":["NIO"],"demonym":"Nicaraguan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NIC","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]}}]},"ISO":{"alpha2":"NI","alpha3":"NIC"},"languages":["es"],"latlng":[13,-85],"nativeName":"Nicaragua","population":6134270,"provinces":["Atlantico Norte","Atlantico Sur","Boaco","Carazo","Chinandega","Chontales","Esteli","Granada","Jinotega","Leon","Madriz","Managua","Masaya","Matagalpa","Nueva Segovia","Rio San Juan","Rivas"],"region":"Americas","subregion":"Central America","timezones":["UTC−06:00"],"tld":[".ni"],"translations":{"de":"Nicaragua","es":"Nicaragua","fr":"Nicaragua","ja":"ニカラグア","it":"Nicaragua"},"wiki":"http://en.wikipedia.org/wiki/nicaragua"} \ No newline at end of file diff --git a/countryinfo/data/niger.json b/countryinfo/data/niger.json index e5ada10..291be5f 100644 --- a/countryinfo/data/niger.json +++ b/countryinfo/data/niger.json @@ -1 +1 @@ -{"name":"Niger","altSpellings":["NE","Nijar","Republic of Niger","République du Niger"],"area":1267000,"borders":["DZA","BEN","BFA","TCD","LBY","MLI","NGA"],"callingCodes":["227"],"capital":"Niamey","currencies":["XOF"],"demonym":"Nigerien","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NER","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]}}]},"ISO":{"alpha2":"NE","alpha3":"NER"},"languages":["fr"],"latlng":[16,8],"nativeName":"Niger","population":17138707,"provinces":["Agadez","Diffa","Dosso","Maradi","Niamey","Tahoua","Tillaberi","Zinder"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".ne"],"translations":{"de":"Niger","es":"Níger","fr":"Niger","ja":"ニジェール","it":"Niger"},"wiki":"http://en.wikipedia.org/wiki/niger"} \ No newline at end of file +{"name":"Niger","altSpellings":["NE","Nijar","Republic of Niger","République du Niger"],"area":1267000,"borders":["DZA","BEN","BFA","TCD","LBY","MLI","NGA"],"callingCodes":["227"],"capital":"Niamey","capital_latlng":[13.524834,2.109823],"currencies":["XOF"],"demonym":"Nigerien","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NER","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]}}]},"ISO":{"alpha2":"NE","alpha3":"NER"},"languages":["fr"],"latlng":[16,8],"nativeName":"Niger","population":17138707,"provinces":["Agadez","Diffa","Dosso","Maradi","Niamey","Tahoua","Tillaberi","Zinder"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".ne"],"translations":{"de":"Niger","es":"Níger","fr":"Niger","ja":"ニジェール","it":"Niger"},"wiki":"http://en.wikipedia.org/wiki/niger"} \ No newline at end of file diff --git a/countryinfo/data/nigeria.json b/countryinfo/data/nigeria.json index 200ae10..4cd0eee 100644 --- a/countryinfo/data/nigeria.json +++ b/countryinfo/data/nigeria.json @@ -1 +1 @@ -{"name":"Nigeria","altSpellings":["NG","Nijeriya","Naíjíríà","Federal Republic of Nigeria"],"area":923768,"borders":["BEN","CMR","TCD","NER"],"callingCodes":["234"],"capital":"Abuja","currencies":["NGN"],"demonym":"Nigerian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NGA","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]}}]},"ISO":{"alpha2":"NG","alpha3":"NGA"},"languages":["en"],"latlng":[10,8],"nativeName":"Nigeria","population":178517000,"provinces":["Abia","Abuja Federal Capital Territory","Adamawa","Akwa Ibom","Anambra","Bauchi","Bayelsa","Benue","Borno","Cross River","Delta","Ebonyi","Edo","Ekiti","Enugu","Gombe","Imo","Jigawa","Kaduna","Kano","Katsina","Kebbi","Kogi","Kwara","Lagos","Nassarawa","Niger","Ogun","Ondo","Osun","Oyo","Plateau","Rivers","Sokoto","Taraba","Yobe","Zamfara"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".ng"],"translations":{"de":"Nigeria","es":"Nigeria","fr":"Nigéria","ja":"ナイジェリア","it":"Nigeria"},"wiki":"http://en.wikipedia.org/wiki/nigeria"} \ No newline at end of file +{"name":"Nigeria","altSpellings":["NG","Nijeriya","Naíjíríà","Federal Republic of Nigeria"],"area":923768,"borders":["BEN","CMR","TCD","NER"],"callingCodes":["234"],"capital":"Abuja","capital_latlng":[9.06433,7.489297],"currencies":["NGN"],"demonym":"Nigerian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NGA","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]}}]},"ISO":{"alpha2":"NG","alpha3":"NGA"},"languages":["en"],"latlng":[10,8],"nativeName":"Nigeria","population":178517000,"provinces":["Abia","Abuja Federal Capital Territory","Adamawa","Akwa Ibom","Anambra","Bauchi","Bayelsa","Benue","Borno","Cross River","Delta","Ebonyi","Edo","Ekiti","Enugu","Gombe","Imo","Jigawa","Kaduna","Kano","Katsina","Kebbi","Kogi","Kwara","Lagos","Nassarawa","Niger","Ogun","Ondo","Osun","Oyo","Plateau","Rivers","Sokoto","Taraba","Yobe","Zamfara"],"region":"Africa","subregion":"Western Africa","timezones":["UTC+01:00"],"tld":[".ng"],"translations":{"de":"Nigeria","es":"Nigeria","fr":"Nigéria","ja":"ナイジェリア","it":"Nigeria"},"wiki":"http://en.wikipedia.org/wiki/nigeria"} \ No newline at end of file diff --git a/countryinfo/data/niue.json b/countryinfo/data/niue.json index 3d53bd1..7d6b432 100644 --- a/countryinfo/data/niue.json +++ b/countryinfo/data/niue.json @@ -1 +1 @@ -{"name":"Niue","altSpellings":["NU"],"area":260,"borders":[],"callingCodes":["683"],"capital":"Alofi","currencies":["NZD"],"demonym":"Niuean","flag":"","geoJSON":{},"ISO":{"alpha2":"NU","alpha3":"NIU"},"languages":["en"],"latlng":[-19.03333333,-169.86666666],"nativeName":"Niuē","population":1613,"provinces":["Niue"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".nu"],"translations":{"de":"Niue","es":"Niue","fr":"Niue","ja":"ニウエ","it":"Niue"},"wiki":"http://en.wikipedia.org/wiki/niue"} \ No newline at end of file +{"name":"Niue","altSpellings":["NU"],"area":260,"borders":[],"callingCodes":["683"],"capital":"Alofi","capital_latlng":[-19.053416,-169.919199],"currencies":["NZD"],"demonym":"Niuean","flag":"","geoJSON":{},"ISO":{"alpha2":"NU","alpha3":"NIU"},"languages":["en"],"latlng":[-19.03333333,-169.86666666],"nativeName":"Niuē","population":1613,"provinces":["Niue"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".nu"],"translations":{"de":"Niue","es":"Niue","fr":"Niue","ja":"ニウエ","it":"Niue"},"wiki":"http://en.wikipedia.org/wiki/niue"} \ No newline at end of file diff --git a/countryinfo/data/norfolk_island.json b/countryinfo/data/norfolk_island.json index 89c57da..05160dd 100644 --- a/countryinfo/data/norfolk_island.json +++ b/countryinfo/data/norfolk_island.json @@ -1 +1 @@ -{"name":"Norfolk Island","altSpellings":["NF","Territory of Norfolk Island","Teratri of Norf'k Ailen"],"area":36,"borders":[],"callingCodes":["672"],"capital":"Kingston","currencies":["AUD"],"demonym":"Norfolk Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"NF","alpha3":"NFK"},"languages":["en"],"latlng":[-29.03333333,167.95],"nativeName":"Norfolk Island","population":2302,"provinces":["Norfolk Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".nf"],"translations":{"de":"Norfolkinsel","es":"Isla de Norfolk","fr":"Île de Norfolk","ja":"ノーフォーク島","it":"Isola Norfolk"},"wiki":"http://en.wikipedia.org/wiki/norfolk_island"} \ No newline at end of file +{"name":"Norfolk Island","altSpellings":["NF","Territory of Norfolk Island","Teratri of Norf'k Ailen"],"area":36,"borders":[],"callingCodes":["672"],"capital":"Kingston","capital_latlng":[17.971215,-76.792813],"currencies":["AUD"],"demonym":"Norfolk Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"NF","alpha3":"NFK"},"languages":["en"],"latlng":[-29.03333333,167.95],"nativeName":"Norfolk Island","population":2302,"provinces":["Norfolk Island"],"region":"Oceania","subregion":"Australia and New Zealand","timezones":null,"tld":[".nf"],"translations":{"de":"Norfolkinsel","es":"Isla de Norfolk","fr":"Île de Norfolk","ja":"ノーフォーク島","it":"Isola Norfolk"},"wiki":"http://en.wikipedia.org/wiki/norfolk_island"} \ No newline at end of file diff --git a/countryinfo/data/northern_mariana_islands.json b/countryinfo/data/northern_mariana_islands.json index 215a19c..bc328ca 100644 --- a/countryinfo/data/northern_mariana_islands.json +++ b/countryinfo/data/northern_mariana_islands.json @@ -1 +1 @@ -{"name":"Northern Mariana Islands","altSpellings":["MP","Commonwealth of the Northern Mariana Islands","Sankattan Siha Na Islas Mariånas"],"area":464,"borders":[],"callingCodes":["1670"],"capital":"Saipan","currencies":["USD"],"demonym":"American","flag":"","geoJSON":{},"ISO":{"alpha2":"MP","alpha3":"MNP"},"languages":["en","ch"],"latlng":[15.2,145.75],"nativeName":"Northern Mariana Islands","population":53883,"provinces":["Northern Islands","Rota","Saipan","Tinian"],"region":"Oceania","subregion":"Micronesia","timezones":null,"tld":[".mp"],"translations":{"de":"Nördliche Marianen","es":"Islas Marianas del Norte","fr":"Îles Mariannes du Nord","ja":"北マリアナ諸島","it":"Isole Marianne Settentrionali"},"wiki":"http://en.wikipedia.org/wiki/northern_mariana_islands"} \ No newline at end of file +{"name":"Northern Mariana Islands","altSpellings":["MP","Commonwealth of the Northern Mariana Islands","Sankattan Siha Na Islas Mariånas"],"area":464,"borders":[],"callingCodes":["1670"],"capital":"Saipan","capital_latlng":[15.190983,145.746853],"currencies":["USD"],"demonym":"American","flag":"","geoJSON":{},"ISO":{"alpha2":"MP","alpha3":"MNP"},"languages":["en","ch"],"latlng":[15.2,145.75],"nativeName":"Northern Mariana Islands","population":53883,"provinces":["Northern Islands","Rota","Saipan","Tinian"],"region":"Oceania","subregion":"Micronesia","timezones":null,"tld":[".mp"],"translations":{"de":"Nördliche Marianen","es":"Islas Marianas del Norte","fr":"Îles Mariannes du Nord","ja":"北マリアナ諸島","it":"Isole Marianne Settentrionali"},"wiki":"http://en.wikipedia.org/wiki/northern_mariana_islands"} \ No newline at end of file diff --git a/countryinfo/data/norway.json b/countryinfo/data/norway.json index a95cd06..96c035d 100644 --- a/countryinfo/data/norway.json +++ b/countryinfo/data/norway.json @@ -1 +1 @@ -{"name":"Norway","altSpellings":["NO","Norge","Noreg","Kingdom of Norway","Kongeriket Norge","Kongeriket Noreg"],"area":323802,"borders":["FIN","SWE","RUS"],"callingCodes":["47"],"capital":"Oslo","currencies":["NOK"],"demonym":"Norwegian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NOR","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]}}]},"ISO":{"alpha2":"NO","alpha3":"NOR"},"languages":["no","nb","nn"],"latlng":[62,10],"nativeName":"Norge","population":5156450,"provinces":["Akershus","Aust-Agder","Buskerud","Finnmark","Hedmark","Hordaland","More og Romsdal","Nord-Trondelag","Nordland","Oppland","Oslo","Ostfold","Rogaland","Sogn og Fjordane","Sor-Trondelag","Telemark","Troms","Vest-Agder","Vestfold"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+01:00"],"tld":[".no"],"translations":{"de":"Norwegen","es":"Noruega","fr":"Norvège","ja":"ノルウェー","it":"Norvegia"},"wiki":"http://en.wikipedia.org/wiki/norway"} \ No newline at end of file +{"name":"Norway","altSpellings":["NO","Norge","Noreg","Kingdom of Norway","Kongeriket Norge","Kongeriket Noreg"],"area":323802,"borders":["FIN","SWE","RUS"],"callingCodes":["47"],"capital":"Oslo","capital_latlng":[59.91333,10.73897],"currencies":["NOK"],"demonym":"Norwegian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"NOR","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]}}]},"ISO":{"alpha2":"NO","alpha3":"NOR"},"languages":["no","nb","nn"],"latlng":[62,10],"nativeName":"Norge","population":5156450,"provinces":["Akershus","Aust-Agder","Buskerud","Finnmark","Hedmark","Hordaland","More og Romsdal","Nord-Trondelag","Nordland","Oppland","Oslo","Ostfold","Rogaland","Sogn og Fjordane","Sor-Trondelag","Telemark","Troms","Vest-Agder","Vestfold"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+01:00"],"tld":[".no"],"translations":{"de":"Norwegen","es":"Noruega","fr":"Norvège","ja":"ノルウェー","it":"Norvegia"},"wiki":"http://en.wikipedia.org/wiki/norway"} \ No newline at end of file diff --git a/countryinfo/data/oman.json b/countryinfo/data/oman.json index e2976ab..82781e5 100644 --- a/countryinfo/data/oman.json +++ b/countryinfo/data/oman.json @@ -1 +1 @@ -{"name":"Oman","altSpellings":["OM","Sultanate of Oman","Salṭanat ʻUmān"],"area":309500,"borders":["SAU","ARE","YEM"],"callingCodes":["968"],"capital":"Muscat","currencies":["OMR"],"demonym":"Omani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"OMN","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]}}]},"ISO":{"alpha2":"OM","alpha3":"OMN"},"languages":["ar"],"latlng":[21,57],"nativeName":"عمان","population":4089076,"provinces":["Ad Dakhiliyah","Al Batinah","Al Wusta","Ash Sharqiyah","Az Zahirah","Masqat","Musandam","Zufar"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".om"],"translations":{"de":"Oman","es":"Omán","fr":"Oman","ja":"オマーン","it":"oman"},"wiki":"http://en.wikipedia.org/wiki/oman"} \ No newline at end of file +{"name":"Oman","altSpellings":["OM","Sultanate of Oman","Salṭanat ʻUmān"],"area":309500,"borders":["SAU","ARE","YEM"],"callingCodes":["968"],"capital":"Muscat","capital_latlng":[23.599786,58.54513],"currencies":["OMR"],"demonym":"Omani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"OMN","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]}}]},"ISO":{"alpha2":"OM","alpha3":"OMN"},"languages":["ar"],"latlng":[21,57],"nativeName":"عمان","population":4089076,"provinces":["Ad Dakhiliyah","Al Batinah","Al Wusta","Ash Sharqiyah","Az Zahirah","Masqat","Musandam","Zufar"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04:00"],"tld":[".om"],"translations":{"de":"Oman","es":"Omán","fr":"Oman","ja":"オマーン","it":"oman"},"wiki":"http://en.wikipedia.org/wiki/oman"} \ No newline at end of file diff --git a/countryinfo/data/pakistan.json b/countryinfo/data/pakistan.json index b7dbb2a..03062b8 100644 --- a/countryinfo/data/pakistan.json +++ b/countryinfo/data/pakistan.json @@ -1 +1 @@ -{"name":"Pakistan","altSpellings":["PK","Pākistān","Islamic Republic of Pakistan","Islāmī Jumhūriya'eh Pākistān"],"area":881912,"borders":["AFG","CHN","IND","IRN"],"callingCodes":["92"],"capital":"Islamabad","currencies":["PKR"],"demonym":"Pakistani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PAK","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]}}]},"ISO":{"alpha2":"PK","alpha3":"PAK"},"languages":["en","ur"],"latlng":[30,70],"nativeName":"Pakistan","population":188410000,"provinces":["Balochistan","Federally Administered Tribal Areas","Islamabad Capital Territory","Khyber Pakhtunkhwa","Punjab","Sindh"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:00"],"tld":[".pk"],"translations":{"de":"Pakistan","es":"Pakistán","fr":"Pakistan","ja":"パキスタン","it":"Pakistan"},"wiki":"http://en.wikipedia.org/wiki/pakistan"} +{"name":"Pakistan","altSpellings":["PK","Pākistān","Islamic Republic of Pakistan","Islāmī Jumhūriya'eh Pākistān"],"area":881912,"borders":["AFG","CHN","IND","IRN"],"callingCodes":["92"],"capital":"Islamabad","capital_latlng":[33.693812,73.065151],"currencies":["PKR"],"demonym":"Pakistani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PAK","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]}}]},"ISO":{"alpha2":"PK","alpha3":"PAK"},"languages":["en","ur"],"latlng":[30,70],"nativeName":"Pakistan","population":188410000,"provinces":["Balochistan","Federally Administered Tribal Areas","Islamabad Capital Territory","Khyber Pakhtunkhwa","Punjab","Sindh"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:00"],"tld":[".pk"],"translations":{"de":"Pakistan","es":"Pakistán","fr":"Pakistan","ja":"パキスタン","it":"Pakistan"},"wiki":"http://en.wikipedia.org/wiki/pakistan"} \ No newline at end of file diff --git a/countryinfo/data/palau.json b/countryinfo/data/palau.json index 65504cd..ad74cd0 100644 --- a/countryinfo/data/palau.json +++ b/countryinfo/data/palau.json @@ -1 +1 @@ -{"name":"Palau","altSpellings":["PW","Republic of Palau","Beluu er a Belau"],"area":459,"borders":[],"callingCodes":["680"],"capital":"Ngerulmud","currencies":["USD"],"demonym":"Palauan","flag":"","geoJSON":{},"ISO":{"alpha2":"PW","alpha3":"PLW"},"languages":["en"],"latlng":[7.5,134.5],"nativeName":"Palau","population":20901,"provinces":["Aimeliik","Airai","Angaur","Hatobohei","Kayangel","Koror","Melekeok","Ngaraard","Ngarchelong","Ngardmau","Ngatpang","Ngchesar","Ngeremlengui","Ngiwal","Palau Island","Peleliu","Sonsoral","Tobi"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+09:00"],"tld":[".pw"],"translations":{"de":"Palau","es":"Palau","fr":"Palaos","ja":"パラオ","it":"Palau"},"wiki":"http://en.wikipedia.org/wiki/palau"} \ No newline at end of file +{"name":"Palau","altSpellings":["PW","Republic of Palau","Beluu er a Belau"],"area":459,"borders":[],"callingCodes":["680"],"capital":"Ngerulmud","capital_latlng":[7.500619,134.624301],"currencies":["USD"],"demonym":"Palauan","flag":"","geoJSON":{},"ISO":{"alpha2":"PW","alpha3":"PLW"},"languages":["en"],"latlng":[7.5,134.5],"nativeName":"Palau","population":20901,"provinces":["Aimeliik","Airai","Angaur","Hatobohei","Kayangel","Koror","Melekeok","Ngaraard","Ngarchelong","Ngardmau","Ngatpang","Ngchesar","Ngeremlengui","Ngiwal","Palau Island","Peleliu","Sonsoral","Tobi"],"region":"Oceania","subregion":"Micronesia","timezones":["UTC+09:00"],"tld":[".pw"],"translations":{"de":"Palau","es":"Palau","fr":"Palaos","ja":"パラオ","it":"Palau"},"wiki":"http://en.wikipedia.org/wiki/palau"} \ No newline at end of file diff --git a/countryinfo/data/panama.json b/countryinfo/data/panama.json index 4bfc473..3426423 100644 --- a/countryinfo/data/panama.json +++ b/countryinfo/data/panama.json @@ -1 +1 @@ -{"name":"Panama","altSpellings":["PA","Republic of Panama","República de Panamá"],"area":75417,"borders":["COL","CRI"],"callingCodes":["507"],"capital":"Panama City","currencies":["PAB","USD"],"demonym":"Panamanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PAN","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]}}]},"ISO":{"alpha2":"PA","alpha3":"PAN"},"languages":["es"],"latlng":[9,-80],"nativeName":"Panamá","population":3713312,"provinces":["Bocas del Toro","Chiriqui","Cocle","Colon","Darien","Herrera","Los Santos","Panama","San Blas","Veraguas"],"region":"Americas","subregion":"Central America","timezones":["UTC−05:00"],"tld":[".pa"],"translations":{"de":"Panama","es":"Panamá","fr":"Panama","ja":"パナマ","it":"Panama"},"wiki":"http://en.wikipedia.org/wiki/panama"} \ No newline at end of file +{"name":"Panama","altSpellings":["PA","Republic of Panama","República de Panamá"],"area":75417,"borders":["COL","CRI"],"callingCodes":["507"],"capital":"Panama City","capital_latlng":[8.971449,-79.53418],"currencies":["PAB","USD"],"demonym":"Panamanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PAN","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]}}]},"ISO":{"alpha2":"PA","alpha3":"PAN"},"languages":["es"],"latlng":[9,-80],"nativeName":"Panamá","population":3713312,"provinces":["Bocas del Toro","Chiriqui","Cocle","Colon","Darien","Herrera","Los Santos","Panama","San Blas","Veraguas"],"region":"Americas","subregion":"Central America","timezones":["UTC−05:00"],"tld":[".pa"],"translations":{"de":"Panama","es":"Panamá","fr":"Panama","ja":"パナマ","it":"Panama"},"wiki":"http://en.wikipedia.org/wiki/panama"} \ No newline at end of file diff --git a/countryinfo/data/papua_new_guinea.json b/countryinfo/data/papua_new_guinea.json index f16262c..0d1d2b2 100644 --- a/countryinfo/data/papua_new_guinea.json +++ b/countryinfo/data/papua_new_guinea.json @@ -1 +1 @@ -{"name":"Papua New Guinea","altSpellings":["PG","Independent State of Papua New Guinea","Independen Stet bilong Papua Niugini"],"area":462840,"borders":["IDN"],"callingCodes":["675"],"capital":"Port Moresby","currencies":["PGK"],"demonym":"Papua New Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PNG","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]}}]},"ISO":{"alpha2":"PG","alpha3":"PNG"},"languages":["en"],"latlng":[-6,147],"nativeName":"Papua Niugini","population":7398500,"provinces":["Bougainville","Central","Chimbu","East New Britain","East Sepik","Eastern Highlands","Enga","Gulf","Madang","Manus","Milne Bay","Morobe","National Capital","New Ireland","Northern","Sandaun","Southern Highlands","West New Britain","Western","Western Highlands"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+10:00"],"tld":[".pg"],"translations":{"de":"Papua-Neuguinea","es":"Papúa Nueva Guinea","fr":"Papouasie-Nouvelle-Guinée","ja":"パプアニューギニア","it":"Papua Nuova Guinea"},"wiki":"http://en.wikipedia.org/wiki/papua_new_guinea"} \ No newline at end of file +{"name":"Papua New Guinea","altSpellings":["PG","Independent State of Papua New Guinea","Independen Stet bilong Papua Niugini"],"area":462840,"borders":["IDN"],"callingCodes":["675"],"capital":"Port Moresby","capital_latlng":[-9.47433,147.15995],"currencies":["PGK"],"demonym":"Papua New Guinean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PNG","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]}}]},"ISO":{"alpha2":"PG","alpha3":"PNG"},"languages":["en"],"latlng":[-6,147],"nativeName":"Papua Niugini","population":7398500,"provinces":["Bougainville","Central","Chimbu","East New Britain","East Sepik","Eastern Highlands","Enga","Gulf","Madang","Manus","Milne Bay","Morobe","National Capital","New Ireland","Northern","Sandaun","Southern Highlands","West New Britain","Western","Western Highlands"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+10:00"],"tld":[".pg"],"translations":{"de":"Papua-Neuguinea","es":"Papúa Nueva Guinea","fr":"Papouasie-Nouvelle-Guinée","ja":"パプアニューギニア","it":"Papua Nuova Guinea"},"wiki":"http://en.wikipedia.org/wiki/papua_new_guinea"} \ No newline at end of file diff --git a/countryinfo/data/paraguay.json b/countryinfo/data/paraguay.json index d2d8cec..d18c2df 100644 --- a/countryinfo/data/paraguay.json +++ b/countryinfo/data/paraguay.json @@ -1 +1 @@ -{"name":"Paraguay","altSpellings":["PY","Republic of Paraguay","República del Paraguay","Tetã Paraguái"],"area":406752,"borders":["ARG","BOL","BRA"],"callingCodes":["595"],"capital":"Asunción","currencies":["PYG"],"demonym":"Paraguayan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRY","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]}}]},"ISO":{"alpha2":"PY","alpha3":"PRY"},"languages":["es","gn"],"latlng":[-23,-58],"nativeName":"Paraguay","population":6893727,"provinces":["Alto Paraguay","Alto Parana","Amambay","Asuncion (city)","Boqueron","Caaguazu","Caazapa","Canindeyu","Central","Concepcion","Cordillera","Guaira","Itapua","Misiones","Neembucu","Paraguari","Presidente Hayes","San Pedro"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".py"],"translations":{"de":"Paraguay","es":"Paraguay","fr":"Paraguay","ja":"パラグアイ","it":"Paraguay"},"wiki":"http://en.wikipedia.org/wiki/paraguay"} \ No newline at end of file +{"name":"Paraguay","altSpellings":["PY","Republic of Paraguay","República del Paraguay","Tetã Paraguái"],"area":406752,"borders":["ARG","BOL","BRA"],"callingCodes":["595"],"capital":"Asunción","capital_latlng":[-25.280046,-57.634381],"currencies":["PYG"],"demonym":"Paraguayan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRY","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]}}]},"ISO":{"alpha2":"PY","alpha3":"PRY"},"languages":["es","gn"],"latlng":[-23,-58],"nativeName":"Paraguay","population":6893727,"provinces":["Alto Paraguay","Alto Parana","Amambay","Asuncion (city)","Boqueron","Caaguazu","Caazapa","Canindeyu","Central","Concepcion","Cordillera","Guaira","Itapua","Misiones","Neembucu","Paraguari","Presidente Hayes","San Pedro"],"region":"Americas","subregion":"South America","timezones":["UTC−04:00"],"tld":[".py"],"translations":{"de":"Paraguay","es":"Paraguay","fr":"Paraguay","ja":"パラグアイ","it":"Paraguay"},"wiki":"http://en.wikipedia.org/wiki/paraguay"} \ No newline at end of file diff --git a/countryinfo/data/peru.json b/countryinfo/data/peru.json index a526ffe..8ed87ac 100644 --- a/countryinfo/data/peru.json +++ b/countryinfo/data/peru.json @@ -1 +1 @@ -{"name":"Peru","altSpellings":["PE","Republic of Peru"," República del Perú"],"area":1285216,"borders":["BOL","BRA","CHL","COL","ECU"],"callingCodes":["51"],"capital":"Lima","currencies":["PEN"],"demonym":"Peruvian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PER","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]}}]},"ISO":{"alpha2":"PE","alpha3":"PER"},"languages":["es"],"latlng":[-10,-76],"nativeName":"Perú","population":30814175,"provinces":["Amazonas","Ancash","Apurimac","Arequipa","Ayacucho","Cajamarca","Callao","Cusco","Huancavelica","Huanuco","Ica","Junin","La Libertad","Lambayeque","Lima","Loreto","Madre de Dios","Moquegua","Pasco","Piura","Puno","San Martin","Tacna","Tumbes","Ucayali"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00"],"tld":[".pe"],"translations":{"de":"Peru","es":"Perú","fr":"Pérou","ja":"ペルー","it":"Perù"},"wiki":"http://en.wikipedia.org/wiki/peru"} \ No newline at end of file +{"name":"Peru","altSpellings":["PE","Republic of Peru"," República del Perú"],"area":1285216,"borders":["BOL","BRA","CHL","COL","ECU"],"callingCodes":["51"],"capital":"Lima","capital_latlng":[-12.062106,-77.036526],"currencies":["PEN"],"demonym":"Peruvian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PER","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]}}]},"ISO":{"alpha2":"PE","alpha3":"PER"},"languages":["es"],"latlng":[-10,-76],"nativeName":"Perú","population":30814175,"provinces":["Amazonas","Ancash","Apurimac","Arequipa","Ayacucho","Cajamarca","Callao","Cusco","Huancavelica","Huanuco","Ica","Junin","La Libertad","Lambayeque","Lima","Loreto","Madre de Dios","Moquegua","Pasco","Piura","Puno","San Martin","Tacna","Tumbes","Ucayali"],"region":"Americas","subregion":"South America","timezones":["UTC−05:00"],"tld":[".pe"],"translations":{"de":"Peru","es":"Perú","fr":"Pérou","ja":"ペルー","it":"Perù"},"wiki":"http://en.wikipedia.org/wiki/peru"} \ No newline at end of file diff --git a/countryinfo/data/philippines.json b/countryinfo/data/philippines.json index 149ee38..3687979 100644 --- a/countryinfo/data/philippines.json +++ b/countryinfo/data/philippines.json @@ -1 +1 @@ -{"name":"Philippines","altSpellings":["PH","Republic of the Philippines","Repúblika ng Pilipinas"],"area":342353,"borders":[],"callingCodes":["63"],"capital":"Manila","currencies":["PHP"],"demonym":"Filipino","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PHL","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]}}]},"ISO":{"alpha2":"PH","alpha3":"PHL"},"languages":["en"],"latlng":[13,122],"nativeName":"Pilipinas","population":100697400,"provinces":["Abra","Agusan del Norte","Agusan del Sur","Aklan","Albay","Angeles","Antique","Aurora","Bacolod","Bago","Baguio","Bais","Basilan","Basilan City","Bataan","Batanes","Batangas","Batangas City","Benguet","Bohol","Bukidnon","Bulacan","Butuan","Cabanatuan","Cadiz","Cagayan","Cagayan de Oro","Calbayog","Caloocan","Camarines Norte","Camarines Sur","Camiguin","Canlaon","Capiz","Catanduanes","Cavite","Cavite City","Cebu","Cebu City","Cotabato","Dagupan","Danao","Dapitan","Davao City Davao","Davao del Sur","Davao Oriental","Dipolog","Dumaguete","Eastern Samar","General Santos","Gingoog","Ifugao","Iligan","Ilocos Norte","Ilocos Sur","Iloilo","Iloilo City","Iriga","Isabela","Kalinga-Apayao","La Carlota","La Union","Laguna","Lanao del Norte","Lanao del Sur","Laoag","Lapu-Lapu","Legaspi","Leyte","Lipa","Lucena","Maguindanao","Mandaue","Manila","Marawi","Marinduque","Masbate","Mindoro Occidental","Mindoro Oriental","Misamis Occidental","Misamis Oriental","Mountain","Naga","Negros Occidental","Negros Oriental","North Cotabato","Northern Samar","Nueva Ecija","Nueva Vizcaya","Olongapo","Ormoc","Oroquieta","Ozamis","Pagadian","Palawan","Palayan","Pampanga","Pangasinan","Pasay","Puerto Princesa","Quezon","Quezon City","Quirino","Rizal","Romblon","Roxas","Samar","San Carlos (in Negros Occidental)","San Carlos (in Pangasinan)","San Jose","San Pablo","Silay","Siquijor","Sorsogon","South Cotabato","Southern Leyte","Sultan Kudarat","Sulu","Surigao","Surigao del Norte","Surigao del Sur","Tacloban","Tagaytay","Tagbilaran","Tangub","Tarlac","Tawitawi","Toledo","Trece Martires","Zambales","Zamboanga","Zamboanga del Norte","Zamboanga del Sur"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".ph"],"translations":{"de":"Philippinen","es":"Filipinas","fr":"Philippines","ja":"フィリピン","it":"Filippine"},"wiki":"http://en.wikipedia.org/wiki/philippines"} \ No newline at end of file +{"name":"Philippines","altSpellings":["PH","Republic of the Philippines","Repúblika ng Pilipinas"],"area":342353,"borders":[],"callingCodes":["63"],"capital":"Manila","capital_latlng":[14.590622,120.97997],"currencies":["PHP"],"demonym":"Filipino","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PHL","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]}}]},"ISO":{"alpha2":"PH","alpha3":"PHL"},"languages":["en"],"latlng":[13,122],"nativeName":"Pilipinas","population":100697400,"provinces":["Abra","Agusan del Norte","Agusan del Sur","Aklan","Albay","Angeles","Antique","Aurora","Bacolod","Bago","Baguio","Bais","Basilan","Basilan City","Bataan","Batanes","Batangas","Batangas City","Benguet","Bohol","Bukidnon","Bulacan","Butuan","Cabanatuan","Cadiz","Cagayan","Cagayan de Oro","Calbayog","Caloocan","Camarines Norte","Camarines Sur","Camiguin","Canlaon","Capiz","Catanduanes","Cavite","Cavite City","Cebu","Cebu City","Cotabato","Dagupan","Danao","Dapitan","Davao City Davao","Davao del Sur","Davao Oriental","Dipolog","Dumaguete","Eastern Samar","General Santos","Gingoog","Ifugao","Iligan","Ilocos Norte","Ilocos Sur","Iloilo","Iloilo City","Iriga","Isabela","Kalinga-Apayao","La Carlota","La Union","Laguna","Lanao del Norte","Lanao del Sur","Laoag","Lapu-Lapu","Legaspi","Leyte","Lipa","Lucena","Maguindanao","Mandaue","Manila","Marawi","Marinduque","Masbate","Mindoro Occidental","Mindoro Oriental","Misamis Occidental","Misamis Oriental","Mountain","Naga","Negros Occidental","Negros Oriental","North Cotabato","Northern Samar","Nueva Ecija","Nueva Vizcaya","Olongapo","Ormoc","Oroquieta","Ozamis","Pagadian","Palawan","Palayan","Pampanga","Pangasinan","Pasay","Puerto Princesa","Quezon","Quezon City","Quirino","Rizal","Romblon","Roxas","Samar","San Carlos (in Negros Occidental)","San Carlos (in Pangasinan)","San Jose","San Pablo","Silay","Siquijor","Sorsogon","South Cotabato","Southern Leyte","Sultan Kudarat","Sulu","Surigao","Surigao del Norte","Surigao del Sur","Tacloban","Tagaytay","Tagbilaran","Tangub","Tarlac","Tawitawi","Toledo","Trece Martires","Zambales","Zamboanga","Zamboanga del Norte","Zamboanga del Sur"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".ph"],"translations":{"de":"Philippinen","es":"Filipinas","fr":"Philippines","ja":"フィリピン","it":"Filippine"},"wiki":"http://en.wikipedia.org/wiki/philippines"} \ No newline at end of file diff --git a/countryinfo/data/pitcaim_islands.json b/countryinfo/data/pitcaim_islands.json index 6c73bb7..327d8d8 100644 --- a/countryinfo/data/pitcaim_islands.json +++ b/countryinfo/data/pitcaim_islands.json @@ -1 +1 @@ -{"name":"Pitcairn Islands","altSpellings":["PN","Pitcairn Henderson Ducie and Oeno Islands"],"area":47,"borders":[],"callingCodes":["64"],"capital":"Adamstown","currencies":["NZD"],"demonym":"Pitcairn Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"PN","alpha3":"PCN"},"languages":["en"],"latlng":[-25.06666666,-130.1],"nativeName":"Pitcairn Islands","population":56,"provinces":["Pitcaim Islands"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".pn"],"translations":{"de":"Pitcairn","es":"Islas Pitcairn","fr":"Îles Pitcairn","ja":"ピトケアン","it":"Isole Pitcairn"},"wiki":"http://en.wikipedia.org/wiki/pitcaim_islands"} \ No newline at end of file +{"name":"Pitcairn Islands","altSpellings":["PN","Pitcairn Henderson Ducie and Oeno Islands"],"area":47,"borders":[],"callingCodes":["64"],"capital":"Adamstown","capital_latlng":[-25.066667,-130.100205],"currencies":["NZD"],"demonym":"Pitcairn Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"PN","alpha3":"PCN"},"languages":["en"],"latlng":[-25.06666666,-130.1],"nativeName":"Pitcairn Islands","population":56,"provinces":["Pitcaim Islands"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".pn"],"translations":{"de":"Pitcairn","es":"Islas Pitcairn","fr":"Îles Pitcairn","ja":"ピトケアン","it":"Isole Pitcairn"},"wiki":"http://en.wikipedia.org/wiki/pitcaim_islands"} \ No newline at end of file diff --git a/countryinfo/data/poland.json b/countryinfo/data/poland.json index 47c2c89..31908fd 100644 --- a/countryinfo/data/poland.json +++ b/countryinfo/data/poland.json @@ -1 +1 @@ -{"name":"Poland","altSpellings":["PL","Republic of Poland","Rzeczpospolita Polska"],"area":312679,"borders":["BLR","CZE","DEU","LTU","RUS","SVK","UKR"],"callingCodes":["48"],"capital":"Warsaw","currencies":["PLN"],"demonym":"Polish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"POL","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]}}]},"ISO":{"alpha2":"PL","alpha3":"POL"},"languages":["pl"],"latlng":[52,20],"nativeName":"Polska","population":38496000,"provinces":["Dolnoslaskie","Kujawsko-Pomorskie","Lodzkie","Lubelskie","Lubuskie","Malopolskie","Mazowieckie","Opolskie","Podkarpackie","Podlaskie","Pomorskie","Slaskie","Swietokrzyskie","Warminsko-Mazurskie","Wielkopolskie","Zachodniopomorskie"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".pl"],"translations":{"de":"Polen","es":"Polonia","fr":"Pologne","ja":"ポーランド","it":"Polonia"},"wiki":"http://en.wikipedia.org/wiki/poland"} \ No newline at end of file +{"name":"Poland","altSpellings":["PL","Republic of Poland","Rzeczpospolita Polska"],"area":312679,"borders":["BLR","CZE","DEU","LTU","RUS","SVK","UKR"],"callingCodes":["48"],"capital":"Warsaw","capital_latlng":[52.233717,21.071411],"currencies":["PLN"],"demonym":"Polish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"POL","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]}}]},"ISO":{"alpha2":"PL","alpha3":"POL"},"languages":["pl"],"latlng":[52,20],"nativeName":"Polska","population":38496000,"provinces":["Dolnoslaskie","Kujawsko-Pomorskie","Lodzkie","Lubelskie","Lubuskie","Malopolskie","Mazowieckie","Opolskie","Podkarpackie","Podlaskie","Pomorskie","Slaskie","Swietokrzyskie","Warminsko-Mazurskie","Wielkopolskie","Zachodniopomorskie"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".pl"],"translations":{"de":"Polen","es":"Polonia","fr":"Pologne","ja":"ポーランド","it":"Polonia"},"wiki":"http://en.wikipedia.org/wiki/poland"} \ No newline at end of file diff --git a/countryinfo/data/portugal.json b/countryinfo/data/portugal.json index e6e9e65..70188e7 100644 --- a/countryinfo/data/portugal.json +++ b/countryinfo/data/portugal.json @@ -1 +1 @@ -{"name":"Portugal","altSpellings":["PT","Portuguesa","Portuguese Republic","República Portuguesa"],"area":92090,"borders":["ESP"],"callingCodes":["351"],"capital":"Lisbon","currencies":["EUR"],"demonym":"Portuguese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRT","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]}}]},"ISO":{"alpha2":"PT","alpha3":"PRT"},"languages":["pt"],"latlng":[39.5,-8],"nativeName":"Portugal","population":10477800,"provinces":["Acores (Azores)","Aveiro","Beja","Braga","Braganca","Castelo Branco","Coimbra","Evora","Faro","Guarda","Leiria","Lisboa","Madeira","Portalegre","Porto","Santarem","Setubal","Viana do Castelo","Vila Real","Viseu"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC−01:00","UTC"],"tld":[".pt"],"translations":{"de":"Portugal","es":"Portugal","fr":"Portugal","ja":"ポルトガル","it":"Portogallo"},"wiki":"http://en.wikipedia.org/wiki/portugal"} \ No newline at end of file +{"name":"Portugal","altSpellings":["PT","Portuguesa","Portuguese Republic","República Portuguesa"],"area":92090,"borders":["ESP"],"callingCodes":["351"],"capital":"Lisbon","capital_latlng":[38.707751,-9.136592],"currencies":["EUR"],"demonym":"Portuguese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRT","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]}}]},"ISO":{"alpha2":"PT","alpha3":"PRT"},"languages":["pt"],"latlng":[39.5,-8],"nativeName":"Portugal","population":10477800,"provinces":["Acores (Azores)","Aveiro","Beja","Braga","Braganca","Castelo Branco","Coimbra","Evora","Faro","Guarda","Leiria","Lisboa","Madeira","Portalegre","Porto","Santarem","Setubal","Viana do Castelo","Vila Real","Viseu"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC−01:00","UTC"],"tld":[".pt"],"translations":{"de":"Portugal","es":"Portugal","fr":"Portugal","ja":"ポルトガル","it":"Portogallo"},"wiki":"http://en.wikipedia.org/wiki/portugal"} \ No newline at end of file diff --git a/countryinfo/data/puerto_rico.json b/countryinfo/data/puerto_rico.json index 1f5c53a..5b1b524 100644 --- a/countryinfo/data/puerto_rico.json +++ b/countryinfo/data/puerto_rico.json @@ -1 +1 @@ -{"name":"Puerto Rico","altSpellings":["PR","Commonwealth of Puerto Rico","Estado Libre Asociado de Puerto Rico"],"area":8870,"borders":[],"callingCodes":["1787","1939"],"capital":"San Juan","currencies":["USD"],"demonym":"Puerto Rican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRI","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]}}]},"ISO":{"alpha2":"PR","alpha3":"PRI"},"languages":["es","en"],"latlng":[18.25,-66.5],"nativeName":"Puerto Rico","population":3615086,"provinces":["Adjuntas","Aguada","Aguadilla","Aguas Buenas","Aibonito","Anasco","Arecibo","Arroyo","Barceloneta","Barranquitas","Bayamon","Cabo Rojo","Caguas","Camuy","Canovanas","Carolina","Catano","Cayey","Ceiba","Ciales","Cidra","Coamo","Comerio","Corozal","Culebra","Dorado","Fajardo","Florida","Guanica","Guayama","Guayanilla","Guaynabo","Gurabo","Hatillo","Hormigueros","Humacao","Isabela","Jayuya","Juana Diaz","Juncos","Lajas","Lares","Las Marias","Las Piedras","Loiza","Luquillo","Manati","Maricao","Maunabo","Mayaguez","Moca","Morovis","Naguabo","Naranjito","Orocovis","Patillas","Penuelas","Ponce","Quebradillas","Rincon","Rio Grande","Sabana Grande","Salinas","San German","San Juan","San Lorenzo","San Sebastian","Santa Isabel","Toa Alta","Toa Baja","Trujillo Alto","Utuado","Vega Alta","Vega Baja","Vieques","Villalba","Yabucoa","Yauco"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".pr"],"translations":{"de":"Puerto Rico","es":"Puerto Rico","fr":"Porto Rico","ja":"プエルトリコ","it":"Porto Rico"},"wiki":"http://en.wikipedia.org/wiki/puerto_rico"} \ No newline at end of file +{"name":"Puerto Rico","altSpellings":["PR","Commonwealth of Puerto Rico","Estado Libre Asociado de Puerto Rico"],"area":8870,"borders":[],"callingCodes":["1787","1939"],"capital":"San Juan","capital_latlng":[18.465299,-66.116666],"currencies":["USD"],"demonym":"Puerto Rican","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"PRI","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]}}]},"ISO":{"alpha2":"PR","alpha3":"PRI"},"languages":["es","en"],"latlng":[18.25,-66.5],"nativeName":"Puerto Rico","population":3615086,"provinces":["Adjuntas","Aguada","Aguadilla","Aguas Buenas","Aibonito","Anasco","Arecibo","Arroyo","Barceloneta","Barranquitas","Bayamon","Cabo Rojo","Caguas","Camuy","Canovanas","Carolina","Catano","Cayey","Ceiba","Ciales","Cidra","Coamo","Comerio","Corozal","Culebra","Dorado","Fajardo","Florida","Guanica","Guayama","Guayanilla","Guaynabo","Gurabo","Hatillo","Hormigueros","Humacao","Isabela","Jayuya","Juana Diaz","Juncos","Lajas","Lares","Las Marias","Las Piedras","Loiza","Luquillo","Manati","Maricao","Maunabo","Mayaguez","Moca","Morovis","Naguabo","Naranjito","Orocovis","Patillas","Penuelas","Ponce","Quebradillas","Rincon","Rio Grande","Sabana Grande","Salinas","San German","San Juan","San Lorenzo","San Sebastian","Santa Isabel","Toa Alta","Toa Baja","Trujillo Alto","Utuado","Vega Alta","Vega Baja","Vieques","Villalba","Yabucoa","Yauco"],"region":"Americas","subregion":"Caribbean","timezones":null,"tld":[".pr"],"translations":{"de":"Puerto Rico","es":"Puerto Rico","fr":"Porto Rico","ja":"プエルトリコ","it":"Porto Rico"},"wiki":"http://en.wikipedia.org/wiki/puerto_rico"} \ No newline at end of file diff --git a/countryinfo/data/qatar.json b/countryinfo/data/qatar.json index 5b27a4e..af64226 100644 --- a/countryinfo/data/qatar.json +++ b/countryinfo/data/qatar.json @@ -1 +1 @@ -{"name":"Qatar","altSpellings":["QA","State of Qatar","Dawlat Qaṭar"],"area":11586,"borders":["SAU"],"callingCodes":["974"],"capital":"Doha","currencies":["QAR"],"demonym":"Qatari","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"QAT","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]}}]},"ISO":{"alpha2":"QA","alpha3":"QAT"},"languages":["ar"],"latlng":[25.5,51.25],"nativeName":"قطر","population":2269672,"provinces":["Ad Dawhah","Al Ghuwayriyah","Al Jumayliyah","Al Khawr","Al Wakrah","Ar Rayyan","Jarayan al Batinah","Madinat ash Shamal","Umm Salal"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".qa"],"translations":{"de":"Katar","es":"Catar","fr":"Qatar","ja":"カタール","it":"Qatar"},"wiki":"http://en.wikipedia.org/wiki/qatar"} \ No newline at end of file +{"name":"Qatar","altSpellings":["QA","State of Qatar","Dawlat Qaṭar"],"area":11586,"borders":["SAU"],"callingCodes":["974"],"capital":"Doha","capital_latlng":[25.285633,51.526416],"currencies":["QAR"],"demonym":"Qatari","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"QAT","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]}}]},"ISO":{"alpha2":"QA","alpha3":"QAT"},"languages":["ar"],"latlng":[25.5,51.25],"nativeName":"قطر","population":2269672,"provinces":["Ad Dawhah","Al Ghuwayriyah","Al Jumayliyah","Al Khawr","Al Wakrah","Ar Rayyan","Jarayan al Batinah","Madinat ash Shamal","Umm Salal"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".qa"],"translations":{"de":"Katar","es":"Catar","fr":"Qatar","ja":"カタール","it":"Qatar"},"wiki":"http://en.wikipedia.org/wiki/qatar"} \ No newline at end of file diff --git a/countryinfo/data/reunion.json b/countryinfo/data/reunion.json index f228215..98cbf76 100644 --- a/countryinfo/data/reunion.json +++ b/countryinfo/data/reunion.json @@ -1 +1 @@ -{"name":"Réunion","altSpellings":["RE","Reunion"],"area":null,"borders":[],"callingCodes":["262"],"capital":"Saint-Denis","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"RE","alpha3":"REU"},"languages":["fr"],"latlng":[-21.15,55.5],"nativeName":"La Réunion","population":840974,"provinces":["Reunion"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".re"],"translations":{"de":"Réunion","es":"Reunión","fr":"Réunion","ja":"レユニオン","it":"Riunione"},"wiki":"http://en.wikipedia.org/wiki/reunion"} \ No newline at end of file +{"name":"Réunion","altSpellings":["RE","Reunion"],"area":null,"borders":[],"callingCodes":["262"],"capital":"Saint-Denis","capital_latlng":[48.935773,2.358023],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"RE","alpha3":"REU"},"languages":["fr"],"latlng":[-21.15,55.5],"nativeName":"La Réunion","population":840974,"provinces":["Reunion"],"region":"Africa","subregion":"Eastern Africa","timezones":null,"tld":[".re"],"translations":{"de":"Réunion","es":"Reunión","fr":"Réunion","ja":"レユニオン","it":"Riunione"},"wiki":"http://en.wikipedia.org/wiki/reunion"} \ No newline at end of file diff --git a/countryinfo/data/romainia.json b/countryinfo/data/romainia.json index 9c16b05..061c526 100644 --- a/countryinfo/data/romainia.json +++ b/countryinfo/data/romainia.json @@ -1 +1 @@ -{"name":"Romania","altSpellings":["RO","Rumania","Roumania","România"],"area":238391,"borders":["BGR","HUN","MDA","SRB","UKR"],"callingCodes":["40"],"capital":"Bucharest","currencies":["RON"],"demonym":"Romanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ROU","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]}}]},"ISO":{"alpha2":"RO","alpha3":"ROU"},"languages":["ro"],"latlng":[46,25],"nativeName":"România","population":19942642,"provinces":["Alba","Arad","Arges","Bacau","Bihor","Bistrita-Nasaud","Botosani","Braila","Brasov","Bucuresti","Buzau","Calarasi","Caras-Severin","Cluj","Constanta","Covasna","Dimbovita","Dolj","Galati","Giurgiu","Gorj","Harghita","Hunedoara","Ialomita","Iasi","Maramures","Mehedinti","Mures","Neamt","Olt","Prahova","Salaj","Satu Mare","Sibiu","Suceava","Teleorman","Timis","Tulcea","Vaslui","Vilcea","Vrancea"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".ro"],"translations":{"de":"Rumänien","es":"Rumania","fr":"Roumanie","ja":"ルーマニア","it":"Romania"},"wiki":"http://en.wikipedia.org/wiki/romainia"} \ No newline at end of file +{"name":"Romania","altSpellings":["RO","Rumania","Roumania","România"],"area":238391,"borders":["BGR","HUN","MDA","SRB","UKR"],"callingCodes":["40"],"capital":"Bucharest","capital_latlng":[44.436141,26.10272],"currencies":["RON"],"demonym":"Romanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ROU","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]}}]},"ISO":{"alpha2":"RO","alpha3":"ROU"},"languages":["ro"],"latlng":[46,25],"nativeName":"România","population":19942642,"provinces":["Alba","Arad","Arges","Bacau","Bihor","Bistrita-Nasaud","Botosani","Braila","Brasov","Bucuresti","Buzau","Calarasi","Caras-Severin","Cluj","Constanta","Covasna","Dimbovita","Dolj","Galati","Giurgiu","Gorj","Harghita","Hunedoara","Ialomita","Iasi","Maramures","Mehedinti","Mures","Neamt","Olt","Prahova","Salaj","Satu Mare","Sibiu","Suceava","Teleorman","Timis","Tulcea","Vaslui","Vilcea","Vrancea"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".ro"],"translations":{"de":"Rumänien","es":"Rumania","fr":"Roumanie","ja":"ルーマニア","it":"Romania"},"wiki":"http://en.wikipedia.org/wiki/romainia"} \ No newline at end of file diff --git a/countryinfo/data/russia.json b/countryinfo/data/russia.json index 528678d..12a8ce5 100644 --- a/countryinfo/data/russia.json +++ b/countryinfo/data/russia.json @@ -1 +1 @@ -{"name":"Russia","altSpellings":["RU","Rossiya","Russian Federation","Российская Федерация","Rossiyskaya Federatsiya"],"area":17124442,"borders":["AZE","BLR","CHN","EST","FIN","GEO","KAZ","PRK","LVA","LTU","MNG","NOR","POL","UKR"],"callingCodes":["7"],"capital":"Moscow","currencies":["RUB"],"demonym":"Russian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"RUS","properties":{"name":"Russia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.648007,50.7476],[144.654148,48.976391],[143.173928,49.306551],[142.558668,47.861575],[143.533492,46.836728],[143.505277,46.137908],[142.747701,46.740765],[142.09203,45.966755],[141.906925,46.805929],[142.018443,47.780133],[141.904445,48.859189],[142.1358,49.615163],[142.179983,50.952342],[141.594076,51.935435],[141.682546,53.301966],[142.606934,53.762145],[142.209749,54.225476],[142.654786,54.365881],[142.914616,53.704578],[143.260848,52.74076],[143.235268,51.75666],[143.648007,50.7476]]],[[[22.731099,54.327537],[20.892245,54.312525],[19.66064,54.426084],[19.888481,54.86616],[21.268449,55.190482],[22.315724,55.015299],[22.757764,54.856574],[22.651052,54.582741],[22.731099,54.327537]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.979709],[-180,68.963636],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180,70.832199],[178.903425,70.78114],[178.7253,71.0988],[180,71.515714],[180,70.832199]]],[[[-178.69378,70.89302],[-180,70.832199],[-180,71.515714],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.535693,70.720464],[56.944979,70.632743],[53.677375,70.762658],[53.412017,71.206662],[51.601895,71.474759],[51.455754,72.014881],[52.478275,72.229442],[52.444169,72.774731],[54.427614,73.627548],[53.50829,73.749814],[55.902459,74.627486],[55.631933,75.081412],[57.868644,75.60939],[61.170044,76.251883],[64.498368,76.439055],[66.210977,76.809782],[68.15706,76.939697],[68.852211,76.544811],[68.180573,76.233642],[64.637326,75.737755],[61.583508,75.260885],[58.477082,74.309056],[56.986786,73.333044],[55.419336,72.371268],[55.622838,71.540595],[57.535693,70.720464]]],[[[106.97013,76.97419],[107.24,76.48],[108.1538,76.72335],[111.07726,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[112.77918,75.03186],[110.15125,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774],[113.01954,73.97693],[113.52958,73.33505],[113.96881,73.59488],[115.56782,73.75285],[118.77633,73.58772],[119.02,73.12],[123.20066,72.97122],[123.25777,73.73503],[125.38,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46,71.98],[129.71599,71.19304],[131.28858,70.78699],[132.2535,71.8363],[133.85766,71.38642],[135.56193,71.65525],[137.49755,71.34763],[138.23409,71.62803],[139.86983,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[152.9689,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031,70.45324],[159.70866,69.72198],[160.94053,69.43728],[162.27907,69.64204],[164.05248,69.66823],[165.94037,69.47199],[167.83567,69.58269],[169.57763,68.6938],[170.81688,69.01363],[170.0082,69.65276],[170.45345,70.09703],[173.64391,69.81743],[175.72403,69.87725],[178.6,69.4],[180,68.963636],[180,64.979709],[179.99281,64.97433],[178.7072,64.53493],[177.41128,64.60821],[178.313,64.07593],[178.90825,63.25197],[179.37034,62.98262],[179.48636,62.56894],[179.22825,62.3041],[177.3643,62.5219],[174.56929,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[166.29498,59.78855],[165.84,60.16],[164.87674,59.7316],[163.53929,59.86871],[163.21711,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[163.05794,56.15924],[162.12958,56.12219],[161.70146,55.28568],[162.11749,54.85514],[160.36877,54.34433],[160.02173,53.20257],[158.53094,52.95868],[158.23118,51.94269],[156.78979,51.01105],[156.42,51.7],[155.99182,53.15895],[155.43366,55.38103],[155.91442,56.76792],[156.75815,57.3647],[156.81035,57.83204],[158.36433,58.05575],[160.15064,59.31477],[161.87204,60.343],[163.66969,61.1409],[164.47355,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[154.21806,59.75818],[155.04375,59.14495],[152.81185,58.88385],[151.26573,58.78089],[151.33815,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[142.19782,59.03998],[138.95848,57.08805],[135.12619,54.72959],[136.70171,54.60355],[137.19342,53.97732],[138.1647,53.75501],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[140.51308,50.04553],[140.06193,48.44671],[138.55472,46.99965],[138.21971,46.30795],[136.86232,45.1435],[135.51535,43.989],[134.86939,43.39821],[133.53687,42.81147],[132.90627,42.79849],[132.27807,43.28456],[130.93587,42.55274],[130.78,42.22],[130.64,42.395],[130.633866,42.903015],[131.144688,42.92999],[131.288555,44.11152],[131.02519,44.96796],[131.883454,45.321162],[133.09712,45.14409],[133.769644,46.116927],[134.11235,47.21248],[134.50081,47.57845],[135.026311,48.47823],[133.373596,48.183442],[132.50669,47.78896],[130.98726,47.79013],[130.582293,48.729687],[129.397818,49.4406],[127.6574,49.76027],[127.287456,50.739797],[126.939157,51.353894],[126.564399,51.784255],[125.946349,52.792799],[125.068211,53.161045],[123.57147,53.4588],[122.245748,53.431726],[121.003085,53.251401],[120.177089,52.753886],[120.725789,52.516226],[120.7382,51.96411],[120.18208,51.64355],[119.27939,50.58292],[119.288461,50.142883],[117.879244,49.510983],[116.678801,49.888531],[115.485695,49.805177],[114.96211,50.140247],[114.362456,50.248303],[112.89774,49.543565],[111.581231,49.377968],[110.662011,49.130128],[109.402449,49.292961],[108.475167,49.282548],[107.868176,49.793705],[106.888804,50.274296],[105.886591,50.406019],[104.62158,50.27532],[103.676545,50.089966],[102.25589,50.51056],[102.06521,51.25991],[100.88948,51.516856],[99.981732,51.634006],[98.861491,52.047366],[97.82574,51.010995],[98.231762,50.422401],[97.25976,49.72605],[95.81402,49.97746],[94.815949,50.013433],[94.147566,50.480537],[93.10421,50.49529],[92.234712,50.802171],[90.713667,50.331812],[88.805567,49.470521],[87.751264,49.297198],[87.35997,49.214981],[86.829357,49.826675],[85.54127,49.692859],[85.11556,50.117303],[84.416377,50.3114],[83.935115,50.889246],[83.383004,51.069183],[81.945986,50.812196],[80.568447,51.388336],[80.03556,50.864751],[77.800916,53.404415],[76.525179,54.177003],[76.8911,54.490524],[74.38482,53.54685],[73.425679,53.48981],[73.508516,54.035617],[72.22415,54.376655],[71.180131,54.133285],[70.865267,55.169734],[69.068167,55.38525],[68.1691,54.970392],[65.66687,54.60125],[65.178534,54.354228],[61.4366,54.00625],[60.978066,53.664993],[61.699986,52.979996],[60.739993,52.719986],[60.927269,52.447548],[59.967534,51.96042],[61.588003,51.272659],[61.337424,50.79907],[59.932807,50.842194],[59.642282,50.545442],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[54.532878,51.02624],[52.328724,51.718652],[50.766648,51.692762],[48.702382,50.605128],[48.577841,49.87476],[47.54948,50.454698],[46.751596,49.356006],[47.043672,49.152039],[46.466446,48.394152],[47.31524,47.71585],[48.05725,47.74377],[48.694734,47.075628],[48.59325,46.56104],[49.10116,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.987283,41.405819],[47.815666,41.151416],[47.373315,41.219732],[46.686071,41.827137],[46.404951,41.860675],[45.7764,42.09244],[45.470279,42.502781],[44.537623,42.711993],[43.93121,42.55496],[43.75599,42.74083],[42.3944,43.2203],[40.92219,43.38215],[40.076965,43.553104],[39.955009,43.434998],[38.68,44.28],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[39.1212,47.26336],[38.223538,47.10219],[38.255112,47.5464],[38.77057,47.82562],[39.738278,47.898937],[39.89562,48.23241],[39.67465,48.78382],[40.080789,49.30743],[40.06904,49.60105],[38.594988,49.926462],[38.010631,49.915662],[37.39346,50.383953],[36.626168,50.225591],[35.356116,50.577197],[35.37791,50.77394],[35.022183,51.207572],[34.224816,51.255993],[34.141978,51.566413],[34.391731,51.768882],[33.7527,52.335075],[32.715761,52.238465],[32.412058,52.288695],[32.15944,52.06125],[31.78597,52.10168],[31.540018,52.742052],[31.305201,53.073996],[31.49764,53.16743],[32.304519,53.132726],[32.693643,53.351421],[32.405599,53.618045],[31.731273,53.794029],[31.791424,53.974639],[31.384472,54.157056],[30.757534,54.811771],[30.971836,55.081548],[30.873909,55.550976],[29.896294,55.789463],[29.371572,55.670091],[29.229513,55.918344],[28.176709,56.16913],[27.855282,56.759326],[27.770016,57.244258],[27.288185,57.474528],[27.716686,57.791899],[27.42015,58.72457],[28.131699,59.300825],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[30.211107,61.780028],[31.139991,62.357693],[31.516092,62.867687],[30.035872,63.552814],[30.444685,64.204453],[29.54443,64.948672],[30.21765,65.80598],[29.054589,66.944286],[29.977426,67.698297],[28.445944,68.364613],[28.59193,69.064777],[29.39955,69.15692],[31.10108,69.55811],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[40.29234,67.9324],[41.05987,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[33.91871,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.878574,65.436213],[34.94391,64.41437],[36.23129,64.10945],[37.01273,63.84983],[37.14197,64.33471],[36.539579,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.01604,66.41858],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[47.89416,66.88455],[48.13876,67.52238],[50.22766,67.99867],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[57.31702,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.16444,69.14436],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.72492,70.70889],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[72.82077,66.53267],[73.92099,66.78946],[74.18651,67.28429],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.15801,72.85497],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[84.65526,73.80591],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[98.92254,76.44689],[100.75967,76.43028],[101.03532,76.86189],[101.99084,77.28754],[104.3516,77.69792],[106.06664,77.37389],[104.705,77.1274],[106.97013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.136187,80.54728],[49.793685,80.415428],[48.894411,80.339567],[48.754937,80.175468],[47.586119,80.010181],[46.502826,80.247247],[47.072455,80.559424],[44.846958,80.58981],[46.799139,80.771918],[48.318477,80.78401],[48.522806,80.514569],[49.09719,80.753986],[50.039768,80.918885],[51.522933,80.699726],[51.136187,80.54728]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}}]},"ISO":{"alpha2":"RU","alpha3":"RUS"},"languages":["ru"],"latlng":[60,100],"nativeName":"Россия","population":146233000,"provinces":["Adygeya (Maykop)","Aginskiy Buryatskiy (Aginskoye)","Altay (Gorno-Altaysk)","Altayskiy (Barnaul)","Amurskaya (Blagoveshchensk)","Arkhangel'skaya","Astrakhanskaya","Bashkortostan (Ufa)","Belgorodskaya","Bryanskaya","Buryatiya (Ulan-Ude)","Chechnya (Groznyy)","Chelyabinskaya","Chitinskaya","Chukotskiy (Anadyr')","Chuvashiya (Cheboksary)","Dagestan (Makhachkala)","Evenkiyskiy (Tura)","Ingushetiya (Nazran')","Irkutskaya","Ivanovskaya","Kabardino-Balkariya (Nal'chik)","Kaliningradskaya","Kalmykiya (Elista)","Kaluzhskaya","Kamchatskaya (Petropavlovsk-Kamchatskiy)","Karachayevo-Cherkesiya (Cherkessk)","Kareliya (Petrozavodsk)","Kemerovskaya","Khabarovskiy","Khakasiya (Abakan)","Khanty-Mansiyskiy (Khanty-Mansiysk)","Kirovskaya","Komi (Syktyvkar)","Komi-Permyatskiy (Kudymkar)","Koryakskiy (Palana)","Kostromskaya","Krasnodarskiy","Krasnoyarskiy","Kurganskaya","Kurskaya","Leningradskaya","Lipetskaya","Magadanskaya","Mariy-El (Yoshkar-Ola)","Mordoviya (Saransk)","Moskovskaya","Moskva (Moscow)","Murmanskaya","Nenetskiy (Nar'yan-Mar)","Nizhegorodskaya","Novgorodskaya","Novosibirskaya","Omskaya","Orenburgskaya","Orlovskaya (Orel)","Penzenskaya","Permskaya","Primorskiy (Vladivostok)","Pskovskaya","Rostovskaya","Ryazanskaya","Sakha (Yakutsk)","Sakhalinskaya (Yuzhno-Sakhalinsk)","Samarskaya","Sankt-Peterburg (Saint Petersburg)","Saratovskaya","Severnaya Osetiya-Alaniya [North Ossetia] (Vladikavkaz)","Smolenskaya","Stavropol'skiy","Sverdlovskaya (Yekaterinburg)","Tambovskaya","Tatarstan (Kazan')","Taymyrskiy (Dudinka)","Tomskaya","Tul'skaya","Tverskaya","Tyumenskaya","Tyva (Kyzyl)","Udmurtiya (Izhevsk)","Ul'yanovskaya","Ust'-Ordynskiy Buryatskiy (Ust'-Ordynskiy)","Vladimirskaya","Volgogradskaya","Vologodskaya","Voronezhskaya","Yamalo-Nenetskiy (Salekhard)","Yaroslavskaya","Yevreyskaya"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+03:00","UTC+04:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+09:00","UTC+10:00","UTC+11:00","UTC+12:00"],"tld":[".ru"],"translations":{"de":"Russland","es":"Rusia","fr":"Russie","ja":"ロシア連邦","it":"Russia"},"wiki":"http://en.wikipedia.org/wiki/russia"} \ No newline at end of file +{"name":"Russia","altSpellings":["RU","Rossiya","Russian Federation","Российская Федерация","Rossiyskaya Federatsiya"],"area":17124442,"borders":["AZE","BLR","CHN","EST","FIN","GEO","KAZ","PRK","LVA","LTU","MNG","NOR","POL","UKR"],"callingCodes":["7"],"capital":"Moscow","capital_latlng":[55.750446,37.617494],"currencies":["RUB"],"demonym":"Russian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"RUS","properties":{"name":"Russia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.648007,50.7476],[144.654148,48.976391],[143.173928,49.306551],[142.558668,47.861575],[143.533492,46.836728],[143.505277,46.137908],[142.747701,46.740765],[142.09203,45.966755],[141.906925,46.805929],[142.018443,47.780133],[141.904445,48.859189],[142.1358,49.615163],[142.179983,50.952342],[141.594076,51.935435],[141.682546,53.301966],[142.606934,53.762145],[142.209749,54.225476],[142.654786,54.365881],[142.914616,53.704578],[143.260848,52.74076],[143.235268,51.75666],[143.648007,50.7476]]],[[[22.731099,54.327537],[20.892245,54.312525],[19.66064,54.426084],[19.888481,54.86616],[21.268449,55.190482],[22.315724,55.015299],[22.757764,54.856574],[22.651052,54.582741],[22.731099,54.327537]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.979709],[-180,68.963636],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180,70.832199],[178.903425,70.78114],[178.7253,71.0988],[180,71.515714],[180,70.832199]]],[[[-178.69378,70.89302],[-180,70.832199],[-180,71.515714],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.535693,70.720464],[56.944979,70.632743],[53.677375,70.762658],[53.412017,71.206662],[51.601895,71.474759],[51.455754,72.014881],[52.478275,72.229442],[52.444169,72.774731],[54.427614,73.627548],[53.50829,73.749814],[55.902459,74.627486],[55.631933,75.081412],[57.868644,75.60939],[61.170044,76.251883],[64.498368,76.439055],[66.210977,76.809782],[68.15706,76.939697],[68.852211,76.544811],[68.180573,76.233642],[64.637326,75.737755],[61.583508,75.260885],[58.477082,74.309056],[56.986786,73.333044],[55.419336,72.371268],[55.622838,71.540595],[57.535693,70.720464]]],[[[106.97013,76.97419],[107.24,76.48],[108.1538,76.72335],[111.07726,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[112.77918,75.03186],[110.15125,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774],[113.01954,73.97693],[113.52958,73.33505],[113.96881,73.59488],[115.56782,73.75285],[118.77633,73.58772],[119.02,73.12],[123.20066,72.97122],[123.25777,73.73503],[125.38,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46,71.98],[129.71599,71.19304],[131.28858,70.78699],[132.2535,71.8363],[133.85766,71.38642],[135.56193,71.65525],[137.49755,71.34763],[138.23409,71.62803],[139.86983,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[152.9689,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031,70.45324],[159.70866,69.72198],[160.94053,69.43728],[162.27907,69.64204],[164.05248,69.66823],[165.94037,69.47199],[167.83567,69.58269],[169.57763,68.6938],[170.81688,69.01363],[170.0082,69.65276],[170.45345,70.09703],[173.64391,69.81743],[175.72403,69.87725],[178.6,69.4],[180,68.963636],[180,64.979709],[179.99281,64.97433],[178.7072,64.53493],[177.41128,64.60821],[178.313,64.07593],[178.90825,63.25197],[179.37034,62.98262],[179.48636,62.56894],[179.22825,62.3041],[177.3643,62.5219],[174.56929,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[166.29498,59.78855],[165.84,60.16],[164.87674,59.7316],[163.53929,59.86871],[163.21711,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[163.05794,56.15924],[162.12958,56.12219],[161.70146,55.28568],[162.11749,54.85514],[160.36877,54.34433],[160.02173,53.20257],[158.53094,52.95868],[158.23118,51.94269],[156.78979,51.01105],[156.42,51.7],[155.99182,53.15895],[155.43366,55.38103],[155.91442,56.76792],[156.75815,57.3647],[156.81035,57.83204],[158.36433,58.05575],[160.15064,59.31477],[161.87204,60.343],[163.66969,61.1409],[164.47355,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[154.21806,59.75818],[155.04375,59.14495],[152.81185,58.88385],[151.26573,58.78089],[151.33815,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[142.19782,59.03998],[138.95848,57.08805],[135.12619,54.72959],[136.70171,54.60355],[137.19342,53.97732],[138.1647,53.75501],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[140.51308,50.04553],[140.06193,48.44671],[138.55472,46.99965],[138.21971,46.30795],[136.86232,45.1435],[135.51535,43.989],[134.86939,43.39821],[133.53687,42.81147],[132.90627,42.79849],[132.27807,43.28456],[130.93587,42.55274],[130.78,42.22],[130.64,42.395],[130.633866,42.903015],[131.144688,42.92999],[131.288555,44.11152],[131.02519,44.96796],[131.883454,45.321162],[133.09712,45.14409],[133.769644,46.116927],[134.11235,47.21248],[134.50081,47.57845],[135.026311,48.47823],[133.373596,48.183442],[132.50669,47.78896],[130.98726,47.79013],[130.582293,48.729687],[129.397818,49.4406],[127.6574,49.76027],[127.287456,50.739797],[126.939157,51.353894],[126.564399,51.784255],[125.946349,52.792799],[125.068211,53.161045],[123.57147,53.4588],[122.245748,53.431726],[121.003085,53.251401],[120.177089,52.753886],[120.725789,52.516226],[120.7382,51.96411],[120.18208,51.64355],[119.27939,50.58292],[119.288461,50.142883],[117.879244,49.510983],[116.678801,49.888531],[115.485695,49.805177],[114.96211,50.140247],[114.362456,50.248303],[112.89774,49.543565],[111.581231,49.377968],[110.662011,49.130128],[109.402449,49.292961],[108.475167,49.282548],[107.868176,49.793705],[106.888804,50.274296],[105.886591,50.406019],[104.62158,50.27532],[103.676545,50.089966],[102.25589,50.51056],[102.06521,51.25991],[100.88948,51.516856],[99.981732,51.634006],[98.861491,52.047366],[97.82574,51.010995],[98.231762,50.422401],[97.25976,49.72605],[95.81402,49.97746],[94.815949,50.013433],[94.147566,50.480537],[93.10421,50.49529],[92.234712,50.802171],[90.713667,50.331812],[88.805567,49.470521],[87.751264,49.297198],[87.35997,49.214981],[86.829357,49.826675],[85.54127,49.692859],[85.11556,50.117303],[84.416377,50.3114],[83.935115,50.889246],[83.383004,51.069183],[81.945986,50.812196],[80.568447,51.388336],[80.03556,50.864751],[77.800916,53.404415],[76.525179,54.177003],[76.8911,54.490524],[74.38482,53.54685],[73.425679,53.48981],[73.508516,54.035617],[72.22415,54.376655],[71.180131,54.133285],[70.865267,55.169734],[69.068167,55.38525],[68.1691,54.970392],[65.66687,54.60125],[65.178534,54.354228],[61.4366,54.00625],[60.978066,53.664993],[61.699986,52.979996],[60.739993,52.719986],[60.927269,52.447548],[59.967534,51.96042],[61.588003,51.272659],[61.337424,50.79907],[59.932807,50.842194],[59.642282,50.545442],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[54.532878,51.02624],[52.328724,51.718652],[50.766648,51.692762],[48.702382,50.605128],[48.577841,49.87476],[47.54948,50.454698],[46.751596,49.356006],[47.043672,49.152039],[46.466446,48.394152],[47.31524,47.71585],[48.05725,47.74377],[48.694734,47.075628],[48.59325,46.56104],[49.10116,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.987283,41.405819],[47.815666,41.151416],[47.373315,41.219732],[46.686071,41.827137],[46.404951,41.860675],[45.7764,42.09244],[45.470279,42.502781],[44.537623,42.711993],[43.93121,42.55496],[43.75599,42.74083],[42.3944,43.2203],[40.92219,43.38215],[40.076965,43.553104],[39.955009,43.434998],[38.68,44.28],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[39.1212,47.26336],[38.223538,47.10219],[38.255112,47.5464],[38.77057,47.82562],[39.738278,47.898937],[39.89562,48.23241],[39.67465,48.78382],[40.080789,49.30743],[40.06904,49.60105],[38.594988,49.926462],[38.010631,49.915662],[37.39346,50.383953],[36.626168,50.225591],[35.356116,50.577197],[35.37791,50.77394],[35.022183,51.207572],[34.224816,51.255993],[34.141978,51.566413],[34.391731,51.768882],[33.7527,52.335075],[32.715761,52.238465],[32.412058,52.288695],[32.15944,52.06125],[31.78597,52.10168],[31.540018,52.742052],[31.305201,53.073996],[31.49764,53.16743],[32.304519,53.132726],[32.693643,53.351421],[32.405599,53.618045],[31.731273,53.794029],[31.791424,53.974639],[31.384472,54.157056],[30.757534,54.811771],[30.971836,55.081548],[30.873909,55.550976],[29.896294,55.789463],[29.371572,55.670091],[29.229513,55.918344],[28.176709,56.16913],[27.855282,56.759326],[27.770016,57.244258],[27.288185,57.474528],[27.716686,57.791899],[27.42015,58.72457],[28.131699,59.300825],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[30.211107,61.780028],[31.139991,62.357693],[31.516092,62.867687],[30.035872,63.552814],[30.444685,64.204453],[29.54443,64.948672],[30.21765,65.80598],[29.054589,66.944286],[29.977426,67.698297],[28.445944,68.364613],[28.59193,69.064777],[29.39955,69.15692],[31.10108,69.55811],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[40.29234,67.9324],[41.05987,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[33.91871,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.878574,65.436213],[34.94391,64.41437],[36.23129,64.10945],[37.01273,63.84983],[37.14197,64.33471],[36.539579,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.01604,66.41858],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[47.89416,66.88455],[48.13876,67.52238],[50.22766,67.99867],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[57.31702,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.16444,69.14436],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.72492,70.70889],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[72.82077,66.53267],[73.92099,66.78946],[74.18651,67.28429],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.15801,72.85497],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[84.65526,73.80591],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[98.92254,76.44689],[100.75967,76.43028],[101.03532,76.86189],[101.99084,77.28754],[104.3516,77.69792],[106.06664,77.37389],[104.705,77.1274],[106.97013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.136187,80.54728],[49.793685,80.415428],[48.894411,80.339567],[48.754937,80.175468],[47.586119,80.010181],[46.502826,80.247247],[47.072455,80.559424],[44.846958,80.58981],[46.799139,80.771918],[48.318477,80.78401],[48.522806,80.514569],[49.09719,80.753986],[50.039768,80.918885],[51.522933,80.699726],[51.136187,80.54728]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}}]},"ISO":{"alpha2":"RU","alpha3":"RUS"},"languages":["ru"],"latlng":[60,100],"nativeName":"Россия","population":146233000,"provinces":["Adygeya (Maykop)","Aginskiy Buryatskiy (Aginskoye)","Altay (Gorno-Altaysk)","Altayskiy (Barnaul)","Amurskaya (Blagoveshchensk)","Arkhangel'skaya","Astrakhanskaya","Bashkortostan (Ufa)","Belgorodskaya","Bryanskaya","Buryatiya (Ulan-Ude)","Chechnya (Groznyy)","Chelyabinskaya","Chitinskaya","Chukotskiy (Anadyr')","Chuvashiya (Cheboksary)","Dagestan (Makhachkala)","Evenkiyskiy (Tura)","Ingushetiya (Nazran')","Irkutskaya","Ivanovskaya","Kabardino-Balkariya (Nal'chik)","Kaliningradskaya","Kalmykiya (Elista)","Kaluzhskaya","Kamchatskaya (Petropavlovsk-Kamchatskiy)","Karachayevo-Cherkesiya (Cherkessk)","Kareliya (Petrozavodsk)","Kemerovskaya","Khabarovskiy","Khakasiya (Abakan)","Khanty-Mansiyskiy (Khanty-Mansiysk)","Kirovskaya","Komi (Syktyvkar)","Komi-Permyatskiy (Kudymkar)","Koryakskiy (Palana)","Kostromskaya","Krasnodarskiy","Krasnoyarskiy","Kurganskaya","Kurskaya","Leningradskaya","Lipetskaya","Magadanskaya","Mariy-El (Yoshkar-Ola)","Mordoviya (Saransk)","Moskovskaya","Moskva (Moscow)","Murmanskaya","Nenetskiy (Nar'yan-Mar)","Nizhegorodskaya","Novgorodskaya","Novosibirskaya","Omskaya","Orenburgskaya","Orlovskaya (Orel)","Penzenskaya","Permskaya","Primorskiy (Vladivostok)","Pskovskaya","Rostovskaya","Ryazanskaya","Sakha (Yakutsk)","Sakhalinskaya (Yuzhno-Sakhalinsk)","Samarskaya","Sankt-Peterburg (Saint Petersburg)","Saratovskaya","Severnaya Osetiya-Alaniya [North Ossetia] (Vladikavkaz)","Smolenskaya","Stavropol'skiy","Sverdlovskaya (Yekaterinburg)","Tambovskaya","Tatarstan (Kazan')","Taymyrskiy (Dudinka)","Tomskaya","Tul'skaya","Tverskaya","Tyumenskaya","Tyva (Kyzyl)","Udmurtiya (Izhevsk)","Ul'yanovskaya","Ust'-Ordynskiy Buryatskiy (Ust'-Ordynskiy)","Vladimirskaya","Volgogradskaya","Vologodskaya","Voronezhskaya","Yamalo-Nenetskiy (Salekhard)","Yaroslavskaya","Yevreyskaya"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+03:00","UTC+04:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+09:00","UTC+10:00","UTC+11:00","UTC+12:00"],"tld":[".ru"],"translations":{"de":"Russland","es":"Rusia","fr":"Russie","ja":"ロシア連邦","it":"Russia"},"wiki":"http://en.wikipedia.org/wiki/russia"} \ No newline at end of file diff --git a/countryinfo/data/rwanda.json b/countryinfo/data/rwanda.json index 8009da2..2ae9455 100644 --- a/countryinfo/data/rwanda.json +++ b/countryinfo/data/rwanda.json @@ -1 +1 @@ -{"name":"Rwanda","altSpellings":["RW","Republic of Rwanda","Repubulika y'u Rwanda","République du Rwanda"],"area":26338,"borders":["BDI","COD","TZA","UGA"],"callingCodes":["250"],"capital":"Kigali","currencies":["RWF"],"demonym":"Rwandan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"RWA","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]}}]},"ISO":{"alpha2":"RW","alpha3":"RWA"},"languages":["rw","en","fr"],"latlng":[-2,30],"nativeName":"Rwanda","population":10996891,"provinces":["Butare","Byumba","Cyangugu","Gikongoro","Gisenyi","Gitarama","Kibungo","Kibuye","Kigali Rurale","Kigali-ville","Ruhengeri","Umutara"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".rw"],"translations":{"de":"Ruanda","es":"Ruanda","fr":"Rwanda","ja":"ルワンダ","it":"Ruanda"},"wiki":"http://en.wikipedia.org/wiki/rwanda"} \ No newline at end of file +{"name":"Rwanda","altSpellings":["RW","Republic of Rwanda","Repubulika y'u Rwanda","République du Rwanda"],"area":26338,"borders":["BDI","COD","TZA","UGA"],"callingCodes":["250"],"capital":"Kigali","capital_latlng":[-1.88596,30.129675],"currencies":["RWF"],"demonym":"Rwandan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"RWA","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]}}]},"ISO":{"alpha2":"RW","alpha3":"RWA"},"languages":["rw","en","fr"],"latlng":[-2,30],"nativeName":"Rwanda","population":10996891,"provinces":["Butare","Byumba","Cyangugu","Gikongoro","Gisenyi","Gitarama","Kibungo","Kibuye","Kigali Rurale","Kigali-ville","Ruhengeri","Umutara"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".rw"],"translations":{"de":"Ruanda","es":"Ruanda","fr":"Rwanda","ja":"ルワンダ","it":"Ruanda"},"wiki":"http://en.wikipedia.org/wiki/rwanda"} \ No newline at end of file diff --git a/countryinfo/data/saint_helena.json b/countryinfo/data/saint_helena.json index 4251ee1..e094d2c 100644 --- a/countryinfo/data/saint_helena.json +++ b/countryinfo/data/saint_helena.json @@ -1 +1 @@ -{"name":"Saint Helena","altSpellings":["SH"],"area":null,"borders":[],"callingCodes":["290"],"capital":"Jamestown","currencies":["SHP"],"demonym":"Saint Helenian","flag":"","geoJSON":{},"ISO":{"alpha2":"SH","alpha3":"SHN"},"languages":["en"],"latlng":[-15.95,-5.7],"nativeName":"Saint Helena","population":4255,"provinces":["Ascension","Saint Helena","Tristan da Cunha"],"region":"Africa","subregion":"Western Africa","timezones":null,"tld":[".sh"],"translations":{"de":"Sankt Helena","es":"Santa Helena","fr":"Sainte-Hélène","ja":"セントヘレナ・アセンションおよびトリスタンダクーニャ","it":"Sant'Elena"},"wiki":"http://en.wikipedia.org/wiki/saint_helena"} \ No newline at end of file +{"name":"Saint Helena","altSpellings":["SH"],"area":null,"borders":[],"callingCodes":["290"],"capital":"Jamestown","capital_latlng":[37.210443,-76.773893],"currencies":["SHP"],"demonym":"Saint Helenian","flag":"","geoJSON":{},"ISO":{"alpha2":"SH","alpha3":"SHN"},"languages":["en"],"latlng":[-15.95,-5.7],"nativeName":"Saint Helena","population":4255,"provinces":["Ascension","Saint Helena","Tristan da Cunha"],"region":"Africa","subregion":"Western Africa","timezones":null,"tld":[".sh"],"translations":{"de":"Sankt Helena","es":"Santa Helena","fr":"Sainte-Hélène","ja":"セントヘレナ・アセンションおよびトリスタンダクーニャ","it":"Sant'Elena"},"wiki":"http://en.wikipedia.org/wiki/saint_helena"} \ No newline at end of file diff --git a/countryinfo/data/saint_kitts_and_nevis.json b/countryinfo/data/saint_kitts_and_nevis.json index ec8ce9d..438b15a 100644 --- a/countryinfo/data/saint_kitts_and_nevis.json +++ b/countryinfo/data/saint_kitts_and_nevis.json @@ -1 +1 @@ -{"name":"Saint Kitts and Nevis","altSpellings":["KN","Federation of Saint Christopher and Nevis"],"area":261,"borders":[],"callingCodes":["1869"],"capital":"Basseterre","currencies":["XCD"],"demonym":"Kittian and Nevisian","flag":"","geoJSON":{},"ISO":{"alpha2":"KN","alpha3":"KNA"},"languages":["en"],"latlng":[17.33333333,-62.75],"nativeName":"Saint Kitts and Nevis","population":55000,"provinces":["Christ Church Nichola Town","Saint Anne Sandy Point","Saint George Basseterre","Saint George Gingerland","Saint James Windward","Saint John Capisterre","Saint John Figtree","Saint Mary Cayon","Saint Paul Capisterre","Saint Paul Charlestown","Saint Peter Basseterre","Saint Thomas Lowland","Saint Thomas Middle Island","Trinity Palmetto Point"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".kn"],"translations":{"de":"St. Kitts und Nevis","es":"San Cristóbal y Nieves","fr":"Saint-Christophe-et-Niévès","ja":"セントクリストファー・ネイビス","it":"Saint Kitts e Nevis"},"wiki":"http://en.wikipedia.org/wiki/saint_kitts_and_nevis"} \ No newline at end of file +{"name":"Saint Kitts and Nevis","altSpellings":["KN","Federation of Saint Christopher and Nevis"],"area":261,"borders":[],"callingCodes":["1869"],"capital":"Basseterre","capital_latlng":[17.296092,-62.722301],"currencies":["XCD"],"demonym":"Kittian and Nevisian","flag":"","geoJSON":{},"ISO":{"alpha2":"KN","alpha3":"KNA"},"languages":["en"],"latlng":[17.33333333,-62.75],"nativeName":"Saint Kitts and Nevis","population":55000,"provinces":["Christ Church Nichola Town","Saint Anne Sandy Point","Saint George Basseterre","Saint George Gingerland","Saint James Windward","Saint John Capisterre","Saint John Figtree","Saint Mary Cayon","Saint Paul Capisterre","Saint Paul Charlestown","Saint Peter Basseterre","Saint Thomas Lowland","Saint Thomas Middle Island","Trinity Palmetto Point"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".kn"],"translations":{"de":"St. Kitts und Nevis","es":"San Cristóbal y Nieves","fr":"Saint-Christophe-et-Niévès","ja":"セントクリストファー・ネイビス","it":"Saint Kitts e Nevis"},"wiki":"http://en.wikipedia.org/wiki/saint_kitts_and_nevis"} \ No newline at end of file diff --git a/countryinfo/data/saint_lucia.json b/countryinfo/data/saint_lucia.json index 6666a10..b8d15d8 100644 --- a/countryinfo/data/saint_lucia.json +++ b/countryinfo/data/saint_lucia.json @@ -1 +1 @@ -{"name":"Saint Lucia","altSpellings":["LC"],"area":616,"borders":[],"callingCodes":["1758"],"capital":"Castries","currencies":["XCD"],"demonym":"Saint Lucian","flag":"","geoJSON":{},"ISO":{"alpha2":"LC","alpha3":"LCA"},"languages":["en"],"latlng":[13.88333333,-60.96666666],"nativeName":"Saint Lucia","population":184000,"provinces":["Anse-la-Raye","Castries","Choiseul","Dauphin","Dennery","Gros Islet","Laborie","Micoud","Praslin","Soufriere","Vieux Fort"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".lc"],"translations":{"de":"Saint Lucia","es":"Santa Lucía","fr":"Saint-Lucie","ja":"セントルシア","it":"Santa Lucia"},"wiki":"http://en.wikipedia.org/wiki/saint_lucia"} \ No newline at end of file +{"name":"Saint Lucia","altSpellings":["LC"],"area":616,"borders":[],"callingCodes":["1758"],"capital":"Castries","capital_latlng":[13.952589,-60.987824],"currencies":["XCD"],"demonym":"Saint Lucian","flag":"","geoJSON":{},"ISO":{"alpha2":"LC","alpha3":"LCA"},"languages":["en"],"latlng":[13.88333333,-60.96666666],"nativeName":"Saint Lucia","population":184000,"provinces":["Anse-la-Raye","Castries","Choiseul","Dauphin","Dennery","Gros Islet","Laborie","Micoud","Praslin","Soufriere","Vieux Fort"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".lc"],"translations":{"de":"Saint Lucia","es":"Santa Lucía","fr":"Saint-Lucie","ja":"セントルシア","it":"Santa Lucia"},"wiki":"http://en.wikipedia.org/wiki/saint_lucia"} \ No newline at end of file diff --git a/countryinfo/data/saint_pierre_and_miquelon.json b/countryinfo/data/saint_pierre_and_miquelon.json index e41998b..5405896 100644 --- a/countryinfo/data/saint_pierre_and_miquelon.json +++ b/countryinfo/data/saint_pierre_and_miquelon.json @@ -1 +1 @@ -{"name":"Saint Pierre and Miquelon","altSpellings":["PM","Collectivité territoriale de Saint-Pierre-et-Miquelon"],"area":242,"borders":[],"callingCodes":["508"],"capital":"Saint-Pierre","currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"PM","alpha3":"SPM"},"languages":["fr"],"latlng":[46.83333333,-56.33333333],"nativeName":"Saint-Pierre-et-Miquelon","population":6081,"provinces":["Miquelon","Saint Pierre"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".pm"],"translations":{"de":"Saint-Pierre und Miquelon","es":"San Pedro y Miquelón","fr":"Saint-Pierre-et-Miquelon","ja":"サンピエール島・ミクロン島","it":"Saint-Pierre e Miquelon"},"wiki":"http://en.wikipedia.org/wiki/saint_pierre_and_miquelon"} \ No newline at end of file +{"name":"Saint Pierre and Miquelon","altSpellings":["PM","Collectivité territoriale de Saint-Pierre-et-Miquelon"],"area":242,"borders":[],"callingCodes":["508"],"capital":"Saint-Pierre","capital_latlng":[48.383272,7.471873],"currencies":["EUR"],"demonym":"French","flag":"","geoJSON":{},"ISO":{"alpha2":"PM","alpha3":"SPM"},"languages":["fr"],"latlng":[46.83333333,-56.33333333],"nativeName":"Saint-Pierre-et-Miquelon","population":6081,"provinces":["Miquelon","Saint Pierre"],"region":"Americas","subregion":"Northern America","timezones":null,"tld":[".pm"],"translations":{"de":"Saint-Pierre und Miquelon","es":"San Pedro y Miquelón","fr":"Saint-Pierre-et-Miquelon","ja":"サンピエール島・ミクロン島","it":"Saint-Pierre e Miquelon"},"wiki":"http://en.wikipedia.org/wiki/saint_pierre_and_miquelon"} \ No newline at end of file diff --git a/countryinfo/data/saint_vincent_and_the_grenadines.json b/countryinfo/data/saint_vincent_and_the_grenadines.json index 42c363f..33fa995 100644 --- a/countryinfo/data/saint_vincent_and_the_grenadines.json +++ b/countryinfo/data/saint_vincent_and_the_grenadines.json @@ -1 +1 @@ -{"name":"Saint Vincent and the Grenadines","altSpellings":["VC"],"area":389,"borders":[],"callingCodes":["1784"],"capital":"Kingstown","currencies":["XCD"],"demonym":"Saint Vincentian","flag":"","geoJSON":{},"ISO":{"alpha2":"VC","alpha3":"VCT"},"languages":["en"],"latlng":[13.25,-61.2],"nativeName":"Saint Vincent and the Grenadines","population":109000,"provinces":["Charlotte","Grenadines","Saint Andrew","Saint David","Saint George","Saint Patrick"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".vc"],"translations":{"de":"Saint Vincent und die Grenadinen","es":"San Vicente y Granadinas","fr":"Saint-Vincent-et-les-Grenadines","ja":"セントビンセントおよびグレナディーン諸島","it":"Saint Vincent e Grenadine"},"wiki":"http://en.wikipedia.org/wiki/saint_vincent_and_the_grenadines"} \ No newline at end of file +{"name":"Saint Vincent and the Grenadines","altSpellings":["VC"],"area":389,"borders":[],"callingCodes":["1784"],"capital":"Kingstown","capital_latlng":[13.156186,-61.227962],"currencies":["XCD"],"demonym":"Saint Vincentian","flag":"","geoJSON":{},"ISO":{"alpha2":"VC","alpha3":"VCT"},"languages":["en"],"latlng":[13.25,-61.2],"nativeName":"Saint Vincent and the Grenadines","population":109000,"provinces":["Charlotte","Grenadines","Saint Andrew","Saint David","Saint George","Saint Patrick"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".vc"],"translations":{"de":"Saint Vincent und die Grenadinen","es":"San Vicente y Granadinas","fr":"Saint-Vincent-et-les-Grenadines","ja":"セントビンセントおよびグレナディーン諸島","it":"Saint Vincent e Grenadine"},"wiki":"http://en.wikipedia.org/wiki/saint_vincent_and_the_grenadines"} \ No newline at end of file diff --git a/countryinfo/data/samoa.json b/countryinfo/data/samoa.json index 7c2c4d7..1c32c11 100644 --- a/countryinfo/data/samoa.json +++ b/countryinfo/data/samoa.json @@ -1 +1 @@ -{"name":"Samoa","altSpellings":["WS","Independent State of Samoa","Malo Saʻoloto Tutoʻatasi o Sāmoa"],"area":2842,"borders":[],"callingCodes":["685"],"capital":"Apia","currencies":["WST"],"demonym":"Samoan","flag":"","geoJSON":{},"ISO":{"alpha2":"WS","alpha3":"WSM"},"languages":["sm","en"],"latlng":[-13.58333333,-172.33333333],"nativeName":"Samoa","population":187820,"provinces":["A'ana","Aiga-i-le-Tai","Atua","Fa'asaleleaga","Gaga'emauga","Gagaifomauga","Palauli","Satupa'itea","Tuamasaga","Va'a-o-Fonoti","Vaisigano"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+13:00"],"tld":[".ws"],"translations":{"de":"Samoa","es":"Samoa","fr":"Samoa","ja":"サモア","it":"Samoa"},"wiki":"http://en.wikipedia.org/wiki/samoa"} \ No newline at end of file +{"name":"Samoa","altSpellings":["WS","Independent State of Samoa","Malo Saʻoloto Tutoʻatasi o Sāmoa"],"area":2842,"borders":[],"callingCodes":["685"],"capital":"Apia","capital_latlng":[-13.834369,-171.769279],"currencies":["WST"],"demonym":"Samoan","flag":"","geoJSON":{},"ISO":{"alpha2":"WS","alpha3":"WSM"},"languages":["sm","en"],"latlng":[-13.58333333,-172.33333333],"nativeName":"Samoa","population":187820,"provinces":["A'ana","Aiga-i-le-Tai","Atua","Fa'asaleleaga","Gaga'emauga","Gagaifomauga","Palauli","Satupa'itea","Tuamasaga","Va'a-o-Fonoti","Vaisigano"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+13:00"],"tld":[".ws"],"translations":{"de":"Samoa","es":"Samoa","fr":"Samoa","ja":"サモア","it":"Samoa"},"wiki":"http://en.wikipedia.org/wiki/samoa"} \ No newline at end of file diff --git a/countryinfo/data/san_marino.json b/countryinfo/data/san_marino.json index 52c74dc..003785e 100644 --- a/countryinfo/data/san_marino.json +++ b/countryinfo/data/san_marino.json @@ -1 +1 @@ -{"name":"San Marino","altSpellings":["SM","Republic of San Marino","Repubblica di San Marino"],"area":61,"borders":["ITA"],"callingCodes":["378"],"capital":"City of San Marino","currencies":["EUR"],"demonym":"Sammarinese","flag":"","geoJSON":{},"ISO":{"alpha2":"SM","alpha3":"SMR"},"languages":["it"],"latlng":[43.76666666,12.41666666],"nativeName":"San Marino","population":32743,"provinces":["Acquaviva","Borgo Maggiore","Chiesanuova","Domagnano","Faetano","Fiorentino","Monte Giardino","San Marino","Serravalle"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".sm"],"translations":{"de":"San Marino","es":"San Marino","fr":"Saint-Marin","ja":"サンマリノ","it":"San Marino"},"wiki":"http://en.wikipedia.org/wiki/san_marino"} \ No newline at end of file +{"name":"San Marino","altSpellings":["SM","Republic of San Marino","Repubblica di San Marino"],"area":61,"borders":["ITA"],"callingCodes":["378"],"capital":"City of San Marino","capital_latlng":[43.9364,12.446699],"currencies":["EUR"],"demonym":"Sammarinese","flag":"","geoJSON":{},"ISO":{"alpha2":"SM","alpha3":"SMR"},"languages":["it"],"latlng":[43.76666666,12.41666666],"nativeName":"San Marino","population":32743,"provinces":["Acquaviva","Borgo Maggiore","Chiesanuova","Domagnano","Faetano","Fiorentino","Monte Giardino","San Marino","Serravalle"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".sm"],"translations":{"de":"San Marino","es":"San Marino","fr":"Saint-Marin","ja":"サンマリノ","it":"San Marino"},"wiki":"http://en.wikipedia.org/wiki/san_marino"} \ No newline at end of file diff --git a/countryinfo/data/sao_tome_and_principe.json b/countryinfo/data/sao_tome_and_principe.json index d3e9039..10e6b1a 100644 --- a/countryinfo/data/sao_tome_and_principe.json +++ b/countryinfo/data/sao_tome_and_principe.json @@ -1 +1 @@ -{"name":"São Tomé and Príncipe","altSpellings":["ST","Democratic Republic of São Tomé and Príncipe","República Democrática de São Tomé e Príncipe"],"area":964,"borders":[],"callingCodes":["239"],"capital":"São Tomé","currencies":["STD"],"demonym":"Sao Tomean","flag":"","geoJSON":{},"ISO":{"alpha2":"ST","alpha3":"STP"},"languages":["pt"],"latlng":[1,7],"nativeName":"São Tomé e Príncipe","population":187356,"provinces":["Principe","Sao Tome"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC"],"tld":[".st"],"translations":{"de":"São Tomé und Príncipe","es":"Santo Tomé y Príncipe","fr":"Sao Tomé-et-Principe","ja":"サントメ・プリンシペ","it":"São Tomé e Príncipe"},"wiki":"http://en.wikipedia.org/wiki/sao_tome_and_principe"} \ No newline at end of file +{"name":"São Tomé and Príncipe","altSpellings":["ST","Democratic Republic of São Tomé and Príncipe","República Democrática de São Tomé e Príncipe"],"area":964,"borders":[],"callingCodes":["239"],"capital":"São Tomé","capital_latlng":[0.338924,6.731303],"currencies":["STD"],"demonym":"Sao Tomean","flag":"","geoJSON":{},"ISO":{"alpha2":"ST","alpha3":"STP"},"languages":["pt"],"latlng":[1,7],"nativeName":"São Tomé e Príncipe","population":187356,"provinces":["Principe","Sao Tome"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC"],"tld":[".st"],"translations":{"de":"São Tomé und Príncipe","es":"Santo Tomé y Príncipe","fr":"Sao Tomé-et-Principe","ja":"サントメ・プリンシペ","it":"São Tomé e Príncipe"},"wiki":"http://en.wikipedia.org/wiki/sao_tome_and_principe"} \ No newline at end of file diff --git a/countryinfo/data/saudi_arabia.json b/countryinfo/data/saudi_arabia.json index dda123c..fe8d300 100644 --- a/countryinfo/data/saudi_arabia.json +++ b/countryinfo/data/saudi_arabia.json @@ -1 +1 @@ -{"name":"Saudi Arabia","altSpellings":["SA","Kingdom of Saudi Arabia","Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah"],"area":2149690,"borders":["IRQ","JOR","KWT","OMN","QAT","ARE","YEM"],"callingCodes":["966"],"capital":"Riyadh","currencies":["SAR"],"demonym":"Saudi Arabian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SAU","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]}}]},"ISO":{"alpha2":"SA","alpha3":"SAU"},"languages":["ar"],"latlng":[25,45],"nativeName":"العربية السعودية","population":30770375,"provinces":["'Asir","Al Bahah","Al Hudud ash Shamaliyah","Al Jawf","Al Madinah","Al Qasim","Ar Riyad","Ash Sharqiyah (Eastern Province)","Ha'il","Jizan","Makkah","Najran","Tabuk"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".sa"],"translations":{"de":"Saudi-Arabien","es":"Arabia Saudí","fr":"Arabie Saoudite","ja":"サウジアラビア","it":"Arabia Saudita"},"wiki":"http://en.wikipedia.org/wiki/saudi_arabia"} \ No newline at end of file +{"name":"Saudi Arabia","altSpellings":["SA","Kingdom of Saudi Arabia","Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah"],"area":2149690,"borders":["IRQ","JOR","KWT","OMN","QAT","ARE","YEM"],"callingCodes":["966"],"capital":"Riyadh","capital_latlng":[24.631969,46.715065],"currencies":["SAR"],"demonym":"Saudi Arabian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SAU","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]}}]},"ISO":{"alpha2":"SA","alpha3":"SAU"},"languages":["ar"],"latlng":[25,45],"nativeName":"العربية السعودية","population":30770375,"provinces":["'Asir","Al Bahah","Al Hudud ash Shamaliyah","Al Jawf","Al Madinah","Al Qasim","Ar Riyad","Ash Sharqiyah (Eastern Province)","Ha'il","Jizan","Makkah","Najran","Tabuk"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".sa"],"translations":{"de":"Saudi-Arabien","es":"Arabia Saudí","fr":"Arabie Saoudite","ja":"サウジアラビア","it":"Arabia Saudita"},"wiki":"http://en.wikipedia.org/wiki/saudi_arabia"} \ No newline at end of file diff --git a/countryinfo/data/senegal.json b/countryinfo/data/senegal.json index 9749dcb..d24f2ac 100644 --- a/countryinfo/data/senegal.json +++ b/countryinfo/data/senegal.json @@ -1 +1 @@ -{"name":"Senegal","altSpellings":["SN","Republic of Senegal","République du Sénégal"],"area":196722,"borders":["GMB","GIN","GNB","MLI","MRT"],"callingCodes":["221"],"capital":"Dakar","currencies":["XOF"],"demonym":"Senegalese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SEN","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]}}]},"ISO":{"alpha2":"SN","alpha3":"SEN"},"languages":["fr"],"latlng":[14,-14],"nativeName":"Sénégal","population":13508715,"provinces":["Dakar","Diourbel","Fatick","Kaolack","Kolda","Louga","Saint-Louis","Tambacounda","Thies","Ziguinchor"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".sn"],"translations":{"de":"Senegal","es":"Senegal","fr":"Sénégal","ja":"セネガル","it":"Senegal"},"wiki":"http://en.wikipedia.org/wiki/senegal"} \ No newline at end of file +{"name":"Senegal","altSpellings":["SN","Republic of Senegal","République du Sénégal"],"area":196722,"borders":["GMB","GIN","GNB","MLI","MRT"],"callingCodes":["221"],"capital":"Dakar","capital_latlng":[14.693425,-17.447938],"currencies":["XOF"],"demonym":"Senegalese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SEN","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]}}]},"ISO":{"alpha2":"SN","alpha3":"SEN"},"languages":["fr"],"latlng":[14,-14],"nativeName":"Sénégal","population":13508715,"provinces":["Dakar","Diourbel","Fatick","Kaolack","Kolda","Louga","Saint-Louis","Tambacounda","Thies","Ziguinchor"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".sn"],"translations":{"de":"Senegal","es":"Senegal","fr":"Sénégal","ja":"セネガル","it":"Senegal"},"wiki":"http://en.wikipedia.org/wiki/senegal"} \ No newline at end of file diff --git a/countryinfo/data/serbia.json b/countryinfo/data/serbia.json index cd59a9f..1e0bd42 100644 --- a/countryinfo/data/serbia.json +++ b/countryinfo/data/serbia.json @@ -1 +1 @@ -{"name":"Serbia","altSpellings":["Srbija","Republic of Serbia","Republika Srbija"],"area":49037,"borders":["HUN","ROU","BGR","MKD","HRV","BIH","MNE","ALB","XKX"],"callingCodes":["381"],"capital":"Belgrade","currencies":["RSD"],"demonym":"Serbian","flag":"","ISO":{"alpha2":"RS","alpha3":"SRB"},"languages":["rs"],"latlng":[44.1305021,16.4284181],"nativeName":"Srbija","population":7186862,"provinces":["Kolubara","Mačva","Moravica","Pomoravlje","Rasina","Raška","Šumadija","Zlatibor","Bor","Braničevo","Jablanica","Nišava","Pčinja","Pirot","Podunavlje","Toplica","Zaječar","Central Banat","North Bačka","North Banat","South Bačka","South Banat","Srem","West Bačka","Kosovo","Kosovo-Pomoravlje","Kosovska Mitrovica ","Peć","Prizren"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00","UTC+02:00"],"tld":[".rs"],"translations":{"de":"Serbien","es":"Serbia","fr":"Serbie","ja":"セルビア","it":"Serbia"},"wiki":"http://en.wikipedia.org/wiki/serbia"} +{"name":"Serbia","altSpellings":["Srbija","Republic of Serbia","Republika Srbija"],"area":49037,"borders":["HUN","ROU","BGR","MKD","HRV","BIH","MNE","ALB","XKX"],"callingCodes":["381"],"capital":"Belgrade","capital_latlng":[44.817813,20.456897],"currencies":["RSD"],"demonym":"Serbian","flag":"","ISO":{"alpha2":"RS","alpha3":"SRB"},"languages":["rs"],"latlng":[44.1305021,16.4284181],"nativeName":"Srbija","population":7186862,"provinces":["Kolubara","Mačva","Moravica","Pomoravlje","Rasina","Raška","Šumadija","Zlatibor","Bor","Braničevo","Jablanica","Nišava","Pčinja","Pirot","Podunavlje","Toplica","Zaječar","Central Banat","North Bačka","North Banat","South Bačka","South Banat","Srem","West Bačka","Kosovo","Kosovo-Pomoravlje","Kosovska Mitrovica ","Peć","Prizren"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00","UTC+02:00"],"tld":[".rs"],"translations":{"de":"Serbien","es":"Serbia","fr":"Serbie","ja":"セルビア","it":"Serbia"},"wiki":"http://en.wikipedia.org/wiki/serbia"} \ No newline at end of file diff --git a/countryinfo/data/seychelles.json b/countryinfo/data/seychelles.json index 1295a8c..0c3f0c1 100644 --- a/countryinfo/data/seychelles.json +++ b/countryinfo/data/seychelles.json @@ -1 +1 @@ -{"name":"Seychelles","altSpellings":["SC","Republic of Seychelles","Repiblik Sesel","République des Seychelles"],"area":452,"borders":[],"callingCodes":["248"],"capital":"Victoria","currencies":["SCR"],"demonym":"Seychellois","flag":"","geoJSON":{},"ISO":{"alpha2":"SC","alpha3":"SYC"},"languages":["fr","en"],"latlng":[-4.58333333,55.66666666],"nativeName":"Seychelles","population":89949,"provinces":["Anse aux Pins","Anse Boileau","Anse Etoile","Anse Louis","Anse Royale","Baie Lazare","Baie Sainte Anne","Beau Vallon","Bel Air","Bel Ombre","Cascade","Glacis","Grand' Anse (on Mahe)","Grand' Anse (on Praslin)","La Digue","La Riviere Anglaise","Mont Buxton","Mont Fleuri","Plaisance","Pointe La Rue","Port Glaud","Saint Louis","Takamaka"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+04:00"],"tld":[".sc"],"translations":{"de":"Seychellen","es":"Seychelles","fr":"Seychelles","ja":"セーシェル","it":"Seychelles"},"wiki":"http://en.wikipedia.org/wiki/seychelles"} \ No newline at end of file +{"name":"Seychelles","altSpellings":["SC","Republic of Seychelles","Repiblik Sesel","République des Seychelles"],"area":452,"borders":[],"callingCodes":["248"],"capital":"Victoria","capital_latlng":[-36.59861,144.678005],"currencies":["SCR"],"demonym":"Seychellois","flag":"","geoJSON":{},"ISO":{"alpha2":"SC","alpha3":"SYC"},"languages":["fr","en"],"latlng":[-4.58333333,55.66666666],"nativeName":"Seychelles","population":89949,"provinces":["Anse aux Pins","Anse Boileau","Anse Etoile","Anse Louis","Anse Royale","Baie Lazare","Baie Sainte Anne","Beau Vallon","Bel Air","Bel Ombre","Cascade","Glacis","Grand' Anse (on Mahe)","Grand' Anse (on Praslin)","La Digue","La Riviere Anglaise","Mont Buxton","Mont Fleuri","Plaisance","Pointe La Rue","Port Glaud","Saint Louis","Takamaka"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+04:00"],"tld":[".sc"],"translations":{"de":"Seychellen","es":"Seychelles","fr":"Seychelles","ja":"セーシェル","it":"Seychelles"},"wiki":"http://en.wikipedia.org/wiki/seychelles"} \ No newline at end of file diff --git a/countryinfo/data/sierra_leone.json b/countryinfo/data/sierra_leone.json index 1f4c0f9..b667ab3 100644 --- a/countryinfo/data/sierra_leone.json +++ b/countryinfo/data/sierra_leone.json @@ -1 +1 @@ -{"name":"Sierra Leone","altSpellings":["SL","Republic of Sierra Leone"],"area":71740,"borders":["GIN","LBR"],"callingCodes":["232"],"capital":"Freetown","currencies":["SLL"],"demonym":"Sierra Leonean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLE","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]}}]},"ISO":{"alpha2":"SL","alpha3":"SLE"},"languages":["en"],"latlng":[8.5,-11.5],"nativeName":"Sierra Leone","population":6205000,"provinces":["Eastern","Northern","Southern","Western"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".sl"],"translations":{"de":"Sierra Leone","es":"Sierra Leone","fr":"Sierra Leone","ja":"シエラレオネ","it":"Sierra Leone"},"wiki":"http://en.wikipedia.org/wiki/sierra_leone"} \ No newline at end of file +{"name":"Sierra Leone","altSpellings":["SL","Republic of Sierra Leone"],"area":71740,"borders":["GIN","LBR"],"callingCodes":["232"],"capital":"Freetown","capital_latlng":[8.479004,-13.26795],"currencies":["SLL"],"demonym":"Sierra Leonean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLE","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]}}]},"ISO":{"alpha2":"SL","alpha3":"SLE"},"languages":["en"],"latlng":[8.5,-11.5],"nativeName":"Sierra Leone","population":6205000,"provinces":["Eastern","Northern","Southern","Western"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".sl"],"translations":{"de":"Sierra Leone","es":"Sierra Leone","fr":"Sierra Leone","ja":"シエラレオネ","it":"Sierra Leone"},"wiki":"http://en.wikipedia.org/wiki/sierra_leone"} \ No newline at end of file diff --git a/countryinfo/data/singapore.json b/countryinfo/data/singapore.json index 3bd9ec0..e396ca0 100644 --- a/countryinfo/data/singapore.json +++ b/countryinfo/data/singapore.json @@ -1 +1 @@ -{"name":"Singapore","altSpellings":["SG","Singapura","Republik Singapura","新加坡共和国"],"area":710,"borders":[],"callingCodes":["65"],"capital":"Singapore","currencies":["SGD"],"demonym":"Singaporean","flag":"","geoJSON":{},"ISO":{"alpha2":"SG","alpha3":"SGP"},"languages":["en","ms","ta","zh"],"latlng":[1.36666666,103.8],"nativeName":"Singapore","population":5469700,"provinces":["Singapore"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".sg"],"translations":{"de":"Singapur","es":"Singapur","fr":"Singapour","ja":"シンガポール","it":"Singapore"},"wiki":"http://en.wikipedia.org/wiki/singapore"} \ No newline at end of file +{"name":"Singapore","altSpellings":["SG","Singapura","Republik Singapura","新加坡共和国"],"area":710,"borders":[],"callingCodes":["65"],"capital":"Singapore","capital_latlng":[1.357107,103.819499],"currencies":["SGD"],"demonym":"Singaporean","flag":"","geoJSON":{},"ISO":{"alpha2":"SG","alpha3":"SGP"},"languages":["en","ms","ta","zh"],"latlng":[1.36666666,103.8],"nativeName":"Singapore","population":5469700,"provinces":["Singapore"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"tld":[".sg"],"translations":{"de":"Singapur","es":"Singapur","fr":"Singapour","ja":"シンガポール","it":"Singapore"},"wiki":"http://en.wikipedia.org/wiki/singapore"} \ No newline at end of file diff --git a/countryinfo/data/slovakia.json b/countryinfo/data/slovakia.json index 8b54da0..2cffb87 100644 --- a/countryinfo/data/slovakia.json +++ b/countryinfo/data/slovakia.json @@ -1 +1 @@ -{"name":"Slovakia","altSpellings":["SK","Slovak Republic","Slovenská republika"],"area":49037,"borders":["AUT","CZE","HUN","POL","UKR"],"callingCodes":["421"],"capital":"Bratislava","currencies":["EUR"],"demonym":"Slovak","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SVK","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]}}]},"ISO":{"alpha2":"SK","alpha3":"SVK"},"languages":["sk"],"latlng":[48.66666666,19.5],"nativeName":"Slovensko","population":5415949,"provinces":["Banskobystricky","Bratislavsky","Kosicky","Nitriansky","Presovsky","Trenciansky","Trnavsky","Zilinsky"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".sk"],"translations":{"de":"Slowakei","es":"República Eslovaca","fr":"Slovaquie","ja":"スロバキア","it":"Slovacchia"},"wiki":"http://en.wikipedia.org/wiki/slovakia"} \ No newline at end of file +{"name":"Slovakia","altSpellings":["SK","Slovak Republic","Slovenská republika"],"area":49037,"borders":["AUT","CZE","HUN","POL","UKR"],"callingCodes":["421"],"capital":"Bratislava","capital_latlng":[48.151699,17.109306],"currencies":["EUR"],"demonym":"Slovak","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SVK","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]}}]},"ISO":{"alpha2":"SK","alpha3":"SVK"},"languages":["sk"],"latlng":[48.66666666,19.5],"nativeName":"Slovensko","population":5415949,"provinces":["Banskobystricky","Bratislavsky","Kosicky","Nitriansky","Presovsky","Trenciansky","Trnavsky","Zilinsky"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+01:00"],"tld":[".sk"],"translations":{"de":"Slowakei","es":"República Eslovaca","fr":"Slovaquie","ja":"スロバキア","it":"Slovacchia"},"wiki":"http://en.wikipedia.org/wiki/slovakia"} \ No newline at end of file diff --git a/countryinfo/data/slovenia.json b/countryinfo/data/slovenia.json index a86862f..1b4dfa3 100644 --- a/countryinfo/data/slovenia.json +++ b/countryinfo/data/slovenia.json @@ -1 +1 @@ -{"name":"Slovenia","altSpellings":["SI","Republic of Slovenia","Republika Slovenija"],"area":20273,"borders":["AUT","HRV","ITA","HUN"],"callingCodes":["386"],"capital":"Ljubljana","currencies":["EUR"],"demonym":"Slovene","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SVN","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]}}]},"ISO":{"alpha2":"SI","alpha3":"SVN"},"languages":["sl"],"latlng":[46.11666666,14.81666666],"nativeName":"Slovenija","population":2064966,"provinces":["Ajdovscina","Beltinci","Bled","Bohinj","Borovnica","Bovec","Brda","Brezice","Brezovica","Cankova-Tisina","Celje","Cerklje na Gorenjskem","Cerknica","Cerkno","Crensovci","Crna na Koroskem","Crnomelj","Destrnik-Trnovska Vas","Divaca","Dobrepolje","Dobrova-Horjul-Polhov Gradec","Dol pri Ljubljani","Domzale","Dornava","Dravograd","Duplek","Gorenja Vas-Poljane","Gorisnica","Gornja Radgona","Gornji Grad","Gornji Petrovci","Grosuplje","Hodos Salovci","Hrastnik","Hrpelje-Kozina","Idrija","Ig","Ilirska Bistrica","Ivancna Gorica","Izola","Jesenice","Jursinci","Kamnik","Kanal","Kidricevo","Kobarid","Kobilje","Kocevje","Komen","Koper","Kozje","Kranj","Kranjska Gora","Krsko","Kungota","Kuzma","Lasko","Lenart","Lendava","Litija","Ljubljana","Ljubno","Ljutomer","Logatec","Loska Dolina","Loski Potok","Luce","Lukovica","Majsperk","Maribor","Medvode","Menges","Metlika","Mezica","Miren-Kostanjevica","Mislinja","Moravce","Moravske Toplice","Mozirje","Murska Sobota","Muta","Naklo","Nazarje","Nova Gorica","Novo Mesto","Odranci","Ormoz","Osilnica","Pesnica","Piran","Pivka","Podcetrtek","Podvelka-Ribnica","Postojna","Preddvor","Ptuj","Puconci","Race-Fram","Radece","Radenci","Radlje ob Dravi","Radovljica","Ravne-Prevalje","Ribnica","Rogasevci","Rogaska Slatina","Rogatec","Ruse","Semic","Sencur","Sentilj","Sentjernej","Sentjur pri Celju","Sevnica","Sezana","Skocjan","Skofja Loka","Skofljica","Slovenj Gradec","Slovenska Bistrica","Slovenske Konjice","Smarje pri Jelsah","Smartno ob Paki","Sostanj","Starse","Store","Sveti Jurij","Tolmin","Trbovlje","Trebnje","Trzic","Turnisce","Velenje","Velike Lasce","Videm","Vipava","Vitanje","Vodice","Vojnik","Vrhnika","Vuzenica","Zagorje ob Savi","Zalec","Zavrc","Zelezniki","Ziri","Zrece"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".si"],"translations":{"de":"Slowenien","es":"Eslovenia","fr":"Slovénie","ja":"スロベニア","it":"Slovenia"},"wiki":"http://en.wikipedia.org/wiki/slovenia"} \ No newline at end of file +{"name":"Slovenia","altSpellings":["SI","Republic of Slovenia","Republika Slovenija"],"area":20273,"borders":["AUT","HRV","ITA","HUN"],"callingCodes":["386"],"capital":"Ljubljana","capital_latlng":[46.04998,14.50686],"currencies":["EUR"],"demonym":"Slovene","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SVN","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]}}]},"ISO":{"alpha2":"SI","alpha3":"SVN"},"languages":["sl"],"latlng":[46.11666666,14.81666666],"nativeName":"Slovenija","population":2064966,"provinces":["Ajdovscina","Beltinci","Bled","Bohinj","Borovnica","Bovec","Brda","Brezice","Brezovica","Cankova-Tisina","Celje","Cerklje na Gorenjskem","Cerknica","Cerkno","Crensovci","Crna na Koroskem","Crnomelj","Destrnik-Trnovska Vas","Divaca","Dobrepolje","Dobrova-Horjul-Polhov Gradec","Dol pri Ljubljani","Domzale","Dornava","Dravograd","Duplek","Gorenja Vas-Poljane","Gorisnica","Gornja Radgona","Gornji Grad","Gornji Petrovci","Grosuplje","Hodos Salovci","Hrastnik","Hrpelje-Kozina","Idrija","Ig","Ilirska Bistrica","Ivancna Gorica","Izola","Jesenice","Jursinci","Kamnik","Kanal","Kidricevo","Kobarid","Kobilje","Kocevje","Komen","Koper","Kozje","Kranj","Kranjska Gora","Krsko","Kungota","Kuzma","Lasko","Lenart","Lendava","Litija","Ljubljana","Ljubno","Ljutomer","Logatec","Loska Dolina","Loski Potok","Luce","Lukovica","Majsperk","Maribor","Medvode","Menges","Metlika","Mezica","Miren-Kostanjevica","Mislinja","Moravce","Moravske Toplice","Mozirje","Murska Sobota","Muta","Naklo","Nazarje","Nova Gorica","Novo Mesto","Odranci","Ormoz","Osilnica","Pesnica","Piran","Pivka","Podcetrtek","Podvelka-Ribnica","Postojna","Preddvor","Ptuj","Puconci","Race-Fram","Radece","Radenci","Radlje ob Dravi","Radovljica","Ravne-Prevalje","Ribnica","Rogasevci","Rogaska Slatina","Rogatec","Ruse","Semic","Sencur","Sentilj","Sentjernej","Sentjur pri Celju","Sevnica","Sezana","Skocjan","Skofja Loka","Skofljica","Slovenj Gradec","Slovenska Bistrica","Slovenske Konjice","Smarje pri Jelsah","Smartno ob Paki","Sostanj","Starse","Store","Sveti Jurij","Tolmin","Trbovlje","Trebnje","Trzic","Turnisce","Velenje","Velike Lasce","Videm","Vipava","Vitanje","Vodice","Vojnik","Vrhnika","Vuzenica","Zagorje ob Savi","Zalec","Zavrc","Zelezniki","Ziri","Zrece"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC+01:00"],"tld":[".si"],"translations":{"de":"Slowenien","es":"Eslovenia","fr":"Slovénie","ja":"スロベニア","it":"Slovenia"},"wiki":"http://en.wikipedia.org/wiki/slovenia"} \ No newline at end of file diff --git a/countryinfo/data/solomon_islands.json b/countryinfo/data/solomon_islands.json index 288f51f..633c62d 100644 --- a/countryinfo/data/solomon_islands.json +++ b/countryinfo/data/solomon_islands.json @@ -1 +1 @@ -{"name":"Solomon Islands","altSpellings":["SB"],"area":28896,"borders":[],"callingCodes":["677"],"capital":"Honiara","currencies":["SBD"],"demonym":"Solomon Islander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLB","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]}}]},"ISO":{"alpha2":"SB","alpha3":"SLB"},"languages":["en"],"latlng":[-8,159],"nativeName":"Solomon Islands","population":581344,"provinces":["Bellona","Central","Choiseul (Lauru)","Guadalcanal","Honiara","Isabel","Makira","Malaita","Rennell","Temotu","Western"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+11:00"],"tld":[".sb"],"translations":{"de":"Salomonen","es":"Islas Salomón","fr":"Îles Salomon","ja":"ソロモン諸島","it":"Isole Salomone"},"wiki":"http://en.wikipedia.org/wiki/solomon_islands"} +{"name":"Solomon Islands","altSpellings":["SB"],"area":28896,"borders":[],"callingCodes":["677"],"capital":"Honiara","capital_latlng":[-9.431077,159.955255],"currencies":["SBD"],"demonym":"Solomon Islander","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SLB","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]}}]},"ISO":{"alpha2":"SB","alpha3":"SLB"},"languages":["en"],"latlng":[-8,159],"nativeName":"Solomon Islands","population":581344,"provinces":["Bellona","Central","Choiseul (Lauru)","Guadalcanal","Honiara","Isabel","Makira","Malaita","Rennell","Temotu","Western"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+11:00"],"tld":[".sb"],"translations":{"de":"Salomonen","es":"Islas Salomón","fr":"Îles Salomon","ja":"ソロモン諸島","it":"Isole Salomone"},"wiki":"http://en.wikipedia.org/wiki/solomon_islands"} \ No newline at end of file diff --git a/countryinfo/data/somalia.json b/countryinfo/data/somalia.json index 3805b80..564ab23 100644 --- a/countryinfo/data/somalia.json +++ b/countryinfo/data/somalia.json @@ -1 +1 @@ -{"name":"Somalia","altSpellings":["SO","aṣ-Ṣūmāl","Federal Republic of Somalia","Jamhuuriyadda Federaalka Soomaaliya","Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya"],"area":637657,"borders":["DJI","ETH","KEN"],"callingCodes":["252"],"capital":"Mogadishu","currencies":["SOS"],"demonym":"Somali","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SOM","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]}}]},"ISO":{"alpha2":"SO","alpha3":"SOM"},"languages":["so","ar"],"latlng":[10,49],"nativeName":"Soomaaliya","population":10806000,"provinces":["Awdal","Bakool","Banaadir","Bari","Bay","Galguduud","Gedo","Hiiraan","Jubbada Dhexe","Jubbada Hoose","Mudug","Nugaal","Sanaag","Shabeellaha Dhexe","Shabeellaha Hoose","Sool","Togdheer","Woqooyi Galbeed"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".so"],"translations":{"de":"Somalia","es":"Somalia","fr":"Somalie","ja":"ソマリア","it":"Somalia"},"wiki":"http://en.wikipedia.org/wiki/somalia"} \ No newline at end of file +{"name":"Somalia","altSpellings":["SO","aṣ-Ṣūmāl","Federal Republic of Somalia","Jamhuuriyadda Federaalka Soomaaliya","Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya"],"area":637657,"borders":["DJI","ETH","KEN"],"callingCodes":["252"],"capital":"Mogadishu","capital_latlng":[2.042778,45.338564],"currencies":["SOS"],"demonym":"Somali","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SOM","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]}}]},"ISO":{"alpha2":"SO","alpha3":"SOM"},"languages":["so","ar"],"latlng":[10,49],"nativeName":"Soomaaliya","population":10806000,"provinces":["Awdal","Bakool","Banaadir","Bari","Bay","Galguduud","Gedo","Hiiraan","Jubbada Dhexe","Jubbada Hoose","Mudug","Nugaal","Sanaag","Shabeellaha Dhexe","Shabeellaha Hoose","Sool","Togdheer","Woqooyi Galbeed"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".so"],"translations":{"de":"Somalia","es":"Somalia","fr":"Somalie","ja":"ソマリア","it":"Somalia"},"wiki":"http://en.wikipedia.org/wiki/somalia"} \ No newline at end of file diff --git a/countryinfo/data/south_africa.json b/countryinfo/data/south_africa.json index eac1c9d..7bc6c65 100644 --- a/countryinfo/data/south_africa.json +++ b/countryinfo/data/south_africa.json @@ -1 +1 @@ -{"name":"South Africa","altSpellings":["ZA","RSA","Suid-Afrika","Republic of South Africa"],"area":1221037,"borders":["BWA","LSO","MOZ","NAM","SWZ","ZWE"],"callingCodes":["27"],"capital":"Pretoria","currencies":["ZAR"],"demonym":"South African","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZAF","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]}}]},"ISO":{"alpha2":"ZA","alpha3":"ZAF"},"languages":["af","en","nr","st","ss","tn","ts","ve","xh","zu"],"latlng":[-29,24],"nativeName":"South Africa","population":54002000,"provinces":["Eastern Cape","Free State","Gauteng","KwaZulu-Natal","Mpumalanga","North-West","Northern Cape","Northern Province","Western Cape"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".za"],"translations":{"de":"Republik Südafrika","es":"República de Sudáfrica","fr":"Afrique du Sud","ja":"南アフリカ","it":"Sud Africa"},"wiki":"http://en.wikipedia.org/wiki/south_africa"} \ No newline at end of file +{"name":"South Africa","altSpellings":["ZA","RSA","Suid-Afrika","Republic of South Africa"],"area":1221037,"borders":["BWA","LSO","MOZ","NAM","SWZ","ZWE"],"callingCodes":["27"],"capital":"Pretoria","capital_latlng":[-25.745937,28.187944],"currencies":["ZAR"],"demonym":"South African","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZAF","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]}}]},"ISO":{"alpha2":"ZA","alpha3":"ZAF"},"languages":["af","en","nr","st","ss","tn","ts","ve","xh","zu"],"latlng":[-29,24],"nativeName":"South Africa","population":54002000,"provinces":["Eastern Cape","Free State","Gauteng","KwaZulu-Natal","Mpumalanga","North-West","Northern Cape","Northern Province","Western Cape"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".za"],"translations":{"de":"Republik Südafrika","es":"República de Sudáfrica","fr":"Afrique du Sud","ja":"南アフリカ","it":"Sud Africa"},"wiki":"http://en.wikipedia.org/wiki/south_africa"} \ No newline at end of file diff --git a/countryinfo/data/south_georgia_and_south_sandwich_islands.json b/countryinfo/data/south_georgia_and_south_sandwich_islands.json index 26e8981..488520f 100644 --- a/countryinfo/data/south_georgia_and_south_sandwich_islands.json +++ b/countryinfo/data/south_georgia_and_south_sandwich_islands.json @@ -1 +1 @@ -{"name":"South Georgia","altSpellings":["GS","South Georgia and the South Sandwich Islands"],"area":null,"borders":[],"callingCodes":["500"],"capital":"King Edward Point","currencies":["GBP"],"demonym":"South Georgia and the South Sandwich Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"GS","alpha3":"SGS"},"languages":["en"],"latlng":[-54.5,-37],"nativeName":"South Georgia","population":30,"provinces":["Bird Island","Bristol Island","Clerke Rocks","Montagu Island","Saunders Island","South Georgia","Southern Thule","Traversay Islands"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".gs"],"translations":{"de":"Südgeorgien und die Südlichen Sandwichinseln","es":"Islas Georgias del Sur y Sandwich del Sur","fr":"Géorgie du Sud-et-les Îles Sandwich du Sud","ja":"サウスジョージア・サウスサンドウィッチ諸島","it":"Georgia del Sud e Isole Sandwich Meridionali"},"wiki":"http://en.wikipedia.org/wiki/south_georgia_and_south_sandwich_islands"} \ No newline at end of file +{"name":"South Georgia","altSpellings":["GS","South Georgia and the South Sandwich Islands"],"area":null,"borders":[],"callingCodes":["500"],"capital":"King Edward Point","capital_latlng":[-54.283545,-36.494636],"currencies":["GBP"],"demonym":"South Georgia and the South Sandwich Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"GS","alpha3":"SGS"},"languages":["en"],"latlng":[-54.5,-37],"nativeName":"South Georgia","population":30,"provinces":["Bird Island","Bristol Island","Clerke Rocks","Montagu Island","Saunders Island","South Georgia","Southern Thule","Traversay Islands"],"region":"Americas","subregion":"South America","timezones":null,"tld":[".gs"],"translations":{"de":"Südgeorgien und die Südlichen Sandwichinseln","es":"Islas Georgias del Sur y Sandwich del Sur","fr":"Géorgie du Sud-et-les Îles Sandwich du Sud","ja":"サウスジョージア・サウスサンドウィッチ諸島","it":"Georgia del Sud e Isole Sandwich Meridionali"},"wiki":"http://en.wikipedia.org/wiki/south_georgia_and_south_sandwich_islands"} \ No newline at end of file diff --git a/countryinfo/data/south_sudan.json b/countryinfo/data/south_sudan.json index cc24d31..a06e4b8 100644 --- a/countryinfo/data/south_sudan.json +++ b/countryinfo/data/south_sudan.json @@ -1,112 +1 @@ -{ - "name": "South Sudan", - "altSpellings": ["SS"], - "area": 619745, - "borders": ["CAF", "COD", "ETH", "KEN", "SDN", "UGA"], - "callingCodes": ["211"], - "capital": "Juba", - "currencies": ["SSP"], - "demonym": "South Sudanese", - "flag": "", - "geoJSON": { - "type": "FeatureCollection", - "features": [{ - "type": "Feature", - "id": "SSD", - "properties": { - "name": "South Sudan" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [33.963393, 9.464285], - [33.97498, 8.68456], - [33.8255, 8.37916], - [33.2948, 8.35458], - [32.95418, 7.78497], - [33.56829, 7.71334], - [34.0751, 7.22595], - [34.25032, 6.82607], - [34.70702, 6.59422], - [35.298007, 5.506], - [34.620196, 4.847123], - [34.005, 4.249885], - [33.39, 3.79], - [32.68642, 3.79232], - [31.88145, 3.55827], - [31.24556, 3.7819], - [30.83385, 3.50917], - [29.95349, 4.1737], - [29.715995, 4.600805], - [29.159078, 4.389267], - [28.696678, 4.455077], - [28.428994, 4.287155], - [27.979977, 4.408413], - [27.374226, 5.233944], - [27.213409, 5.550953], - [26.465909, 5.946717], - [26.213418, 6.546603], - [25.796648, 6.979316], - [25.124131, 7.500085], - [25.114932, 7.825104], - [24.567369, 8.229188], - [23.88698, 8.61973], - [24.194068, 8.728696], - [24.537415, 8.917538], - [24.794926, 9.810241], - [25.069604, 10.27376], - [25.790633, 10.411099], - [25.962307, 10.136421], - [26.477328, 9.55273], - [26.752006, 9.466893], - [27.112521, 9.638567], - [27.833551, 9.604232], - [27.97089, 9.398224], - [28.966597, 9.398224], - [29.000932, 9.604232], - [29.515953, 9.793074], - [29.618957, 10.084919], - [29.996639, 10.290927], - [30.837841, 9.707237], - [31.352862, 9.810241], - [31.850716, 10.531271], - [32.400072, 11.080626], - [32.314235, 11.681484], - [32.073892, 11.97333], - [32.67475, 12.024832], - [32.743419, 12.248008], - [33.206938, 12.179338], - [33.086766, 11.441141], - [33.206938, 10.720112], - [33.721959, 10.325262], - [33.842131, 9.981915], - [33.824963, 9.484061], - [33.963393, 9.464285] - ] - ] - } - }] - }, - "ISO": { - "alpha2": "SS", - "alpha3": "SSD" - }, - "languages": ["en"], - "latlng": [7, 30], - "nativeName": "South Sudan", - "population": 11384393, - "provinces": ["Andalucia", "Aragon", "Asturias", "Baleares (Balearic Islands)", "Canarias (Canary Islands)", "Cantabria", "Castilla y Leon", "Castilla-La Mancha", "Cataluna", "Ceuta", "Communidad Valencian", "Extremadura", "Galicia", "Islas Chafarinas", "La Rioja", "Madrid", "Melilla", "Murcia", "Navarra", "Pais Vasco (Basque Country)", "Penon de Alhucemas", "Penon de Velez de la Gomera"], - "region": "Africa", - "subregion": "Middle Africa", - "timezones": ["UTC+03:00"], - "tld": [".ss"], - "translations": { - "de": "Südsudan", - "es": "Sudán del Sur", - "fr": "Soudan du Sud", - "ja": "南スーダン", - "it": "Sudan del sud" - }, - "wiki": "http://en.wikipedia.org/wiki/spain" -} \ No newline at end of file +{"name":"South Sudan","altSpellings":["SS"],"area":619745,"borders":["CAF","COD","ETH","KEN","SDN","UGA"],"callingCodes":["211"],"capital":"Juba","capital_latlng":[4.847202,31.595166],"currencies":["SSP"],"demonym":"South Sudanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SSD","properties":{"name":"South Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]}}]},"ISO":{"alpha2":"SS","alpha3":"SSD"},"languages":["en"],"latlng":[7,30],"nativeName":"South Sudan","population":11384393,"provinces":["Andalucia","Aragon","Asturias","Baleares (Balearic Islands)","Canarias (Canary Islands)","Cantabria","Castilla y Leon","Castilla-La Mancha","Cataluna","Ceuta","Communidad Valencian","Extremadura","Galicia","Islas Chafarinas","La Rioja","Madrid","Melilla","Murcia","Navarra","Pais Vasco (Basque Country)","Penon de Alhucemas","Penon de Velez de la Gomera"],"region":"Africa","subregion":"Middle Africa","timezones":["UTC+03:00"],"tld":[".ss"],"translations":{"de":"Südsudan","es":"Sudán del Sur","fr":"Soudan du Sud","ja":"南スーダン","it":"Sudan del sud"},"wiki":"http://en.wikipedia.org/wiki/spain"} \ No newline at end of file diff --git a/countryinfo/data/spain.json b/countryinfo/data/spain.json index 5c04b63..940157b 100644 --- a/countryinfo/data/spain.json +++ b/countryinfo/data/spain.json @@ -1,100 +1 @@ -{ - "name": "Spain", - "altSpellings": ["ES", "Kingdom of Spain", "Reino de España"], - "area": 505992, - "borders": ["AND", "FRA", "GIB", "PRT", "MAR"], - "callingCodes": ["34"], - "capital": "Madrid", - "currencies": ["EUR"], - "demonym": "Spanish", - "flag": "", - "geoJSON": { - "type": "FeatureCollection", - "features": [{ - "type": "Feature", - "id": "ESP", - "properties": { - "name": "Spain" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-9.034818, 41.880571], - [-8.984433, 42.592775], - [-9.392884, 43.026625], - [-7.97819, 43.748338], - [-6.754492, 43.567909], - [-5.411886, 43.57424], - [-4.347843, 43.403449], - [-3.517532, 43.455901], - [-1.901351, 43.422802], - [-1.502771, 43.034014], - [0.338047, 42.579546], - [0.701591, 42.795734], - [1.826793, 42.343385], - [2.985999, 42.473015], - [3.039484, 41.89212], - [2.091842, 41.226089], - [0.810525, 41.014732], - [0.721331, 40.678318], - [0.106692, 40.123934], - [-0.278711, 39.309978], - [0.111291, 38.738514], - [-0.467124, 38.292366], - [-0.683389, 37.642354], - [-1.438382, 37.443064], - [-2.146453, 36.674144], - [-3.415781, 36.6589], - [-4.368901, 36.677839], - [-4.995219, 36.324708], - [-5.37716, 35.94685], - [-5.866432, 36.029817], - [-6.236694, 36.367677], - [-6.520191, 36.942913], - [-7.453726, 37.097788], - [-7.537105, 37.428904], - [-7.166508, 37.803894], - [-7.029281, 38.075764], - [-7.374092, 38.373059], - [-7.098037, 39.030073], - [-7.498632, 39.629571], - [-7.066592, 39.711892], - [-7.026413, 40.184524], - [-6.86402, 40.330872], - [-6.851127, 41.111083], - [-6.389088, 41.381815], - [-6.668606, 41.883387], - [-7.251309, 41.918346], - [-7.422513, 41.792075], - [-8.013175, 41.790886], - [-8.263857, 42.280469], - [-8.671946, 42.134689], - [-9.034818, 41.880571] - ] - ] - } - }] - }, - "ISO": { - "alpha2": "ES", - "alpha3": "ESP" - }, - "languages": ["es"], - "latlng": [40, -4], - "nativeName": "España", - "population": 46507760, - "provinces": ["A Coruña", "Álava", "Albacete", "Alicante", "Almería", "Asturias", "Ávila", "Badajoz", "Balearic Islands", "Barcelona", "Biscay", "Burgos", "Cáceres", "Cádiz", "Cantabria", "Castellón", "Ciudad Real", "Córdoba", "Cuenca", "Gipuzkoa", "Girona", "Granada", "Guadalajara", "Huelva", "Huesca", "Jaén", "La Rioja", "Las Palmas", "León", "Lleida", "Lugo", "Madrid", "Málaga", "Murcia", "Navarre", "Ourense", "Palencia", "Pontevedra", "Salamanca", "Santa Cruz de Tenerife", "Segovia", "Seville", "Soria", "Tarragona", "Teruel", "Toledo", " Valencia", "Valladolid", "Zamora", "Zaragoza"], - "region": "Europe", - "subregion": "Southern Europe", - "timezones": ["UTC", "UTC+01:00"], - "tld": [".es"], - "translations": { - "de": "Spanien", - "es": "España", - "fr": "Espagne", - "ja": "スペイン", - "it": "Spagna" - }, - "wiki": "http://en.wikipedia.org/wiki/spratly_islands" -} +{"name":"Spain","altSpellings":["ES","Kingdom of Spain","Reino de España"],"area":505992,"borders":["AND","FRA","GIB","PRT","MAR"],"callingCodes":["34"],"capital":"Madrid","capital_latlng":[40.416705,-3.703582],"currencies":["EUR"],"demonym":"Spanish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ESP","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]}}]},"ISO":{"alpha2":"ES","alpha3":"ESP"},"languages":["es"],"latlng":[40,-4],"nativeName":"España","population":46507760,"provinces":["A Coruña","Álava","Albacete","Alicante","Almería","Asturias","Ávila","Badajoz","Balearic Islands","Barcelona","Biscay","Burgos","Cáceres","Cádiz","Cantabria","Castellón","Ciudad Real","Córdoba","Cuenca","Gipuzkoa","Girona","Granada","Guadalajara","Huelva","Huesca","Jaén","La Rioja","Las Palmas","León","Lleida","Lugo","Madrid","Málaga","Murcia","Navarre","Ourense","Palencia","Pontevedra","Salamanca","Santa Cruz de Tenerife","Segovia","Seville","Soria","Tarragona","Teruel","Toledo"," Valencia","Valladolid","Zamora","Zaragoza"],"region":"Europe","subregion":"Southern Europe","timezones":["UTC","UTC+01:00"],"tld":[".es"],"translations":{"de":"Spanien","es":"España","fr":"Espagne","ja":"スペイン","it":"Spagna"},"wiki":"http://en.wikipedia.org/wiki/spratly_islands"} \ No newline at end of file diff --git a/countryinfo/data/sri_lanka.json b/countryinfo/data/sri_lanka.json index b07034e..bb966e5 100644 --- a/countryinfo/data/sri_lanka.json +++ b/countryinfo/data/sri_lanka.json @@ -1 +1 @@ -{"name":"Sri Lanka","altSpellings":["LK","ilaṅkai","Democratic Socialist Republic of Sri Lanka"],"area":65610,"borders":["IND"],"callingCodes":["94"],"capital":"Colombo","currencies":["LKR"],"demonym":"Sri Lankan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LKA","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]}}]},"ISO":{"alpha2":"LK","alpha3":"LKA"},"languages":["si","ta"],"latlng":[7,81],"nativeName":"śrī laṃkāva","population":20277597,"provinces":["Central","Eastern","North Central","North Eastern","North Western","Northern","Sabaragamuwa","Southern","Uva","Western"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:30"],"tld":[".lk"],"translations":{"de":"Sri Lanka","es":"Sri Lanka","fr":"Sri Lanka","ja":"スリランカ","it":"Sri Lanka"},"wiki":"http://en.wikipedia.org/wiki/sri_lanka"} \ No newline at end of file +{"name":"Sri Lanka","altSpellings":["LK","ilaṅkai","Democratic Socialist Republic of Sri Lanka"],"area":65610,"borders":["IND"],"callingCodes":["94"],"capital":"Colombo","capital_latlng":[6.934997,79.853846],"currencies":["LKR"],"demonym":"Sri Lankan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"LKA","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]}}]},"ISO":{"alpha2":"LK","alpha3":"LKA"},"languages":["si","ta"],"latlng":[7,81],"nativeName":"śrī laṃkāva","population":20277597,"provinces":["Central","Eastern","North Central","North Eastern","North Western","Northern","Sabaragamuwa","Southern","Uva","Western"],"region":"Asia","subregion":"Southern Asia","timezones":["UTC+05:30"],"tld":[".lk"],"translations":{"de":"Sri Lanka","es":"Sri Lanka","fr":"Sri Lanka","ja":"スリランカ","it":"Sri Lanka"},"wiki":"http://en.wikipedia.org/wiki/sri_lanka"} \ No newline at end of file diff --git a/countryinfo/data/sudan.json b/countryinfo/data/sudan.json index 4d799ad..86f132d 100644 --- a/countryinfo/data/sudan.json +++ b/countryinfo/data/sudan.json @@ -1 +1 @@ -{"name":"Sudan","altSpellings":["SD","Republic of the Sudan","Jumhūrīyat as-Sūdān"],"area":1886068,"borders":["CAF","TCD","EGY","ERI","ETH","LBY","SSD"],"callingCodes":["249"],"capital":"Khartoum","currencies":["SDG"],"demonym":"Sudanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SDN","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]}}]},"ISO":{"alpha2":"SD","alpha3":"SDN"},"languages":["ar","en"],"latlng":[15,30],"nativeName":"السودان","population":37289406,"provinces":["A'ali an Nil","Al Bahr al Ahmar","Al Buhayrat","Al Jazirah","Al Khartum","Al Qadarif","Al Wahdah","An Nil al Abyad","An Nil al Azraq","Ash Shamaliyah","Bahr al Jabal","Gharb al Istiwa'iyah","Gharb Bahr al Ghazal","Gharb Darfur","Gharb Kurdufan","Janub Darfur","Janub Kurdufan","Junqali","Kassala","Nahr an Nil","Shamal Bahr al Ghazal","Shamal Darfur","Shamal Kurdufan","Sharq al Istiwa'iyah","Sinnar","Warab"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+03:00"],"tld":[".sd"],"translations":{"de":"Sudan","es":"Sudán","fr":"Soudan","ja":"スーダン","it":"Sudan"},"wiki":"http://en.wikipedia.org/wiki/sudan"} \ No newline at end of file +{"name":"Sudan","altSpellings":["SD","Republic of the Sudan","Jumhūrīyat as-Sūdān"],"area":1886068,"borders":["CAF","TCD","EGY","ERI","ETH","LBY","SSD"],"callingCodes":["249"],"capital":"Khartoum","capital_latlng":[15.593325,32.53565],"currencies":["SDG"],"demonym":"Sudanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SDN","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]}}]},"ISO":{"alpha2":"SD","alpha3":"SDN"},"languages":["ar","en"],"latlng":[15,30],"nativeName":"السودان","population":37289406,"provinces":["A'ali an Nil","Al Bahr al Ahmar","Al Buhayrat","Al Jazirah","Al Khartum","Al Qadarif","Al Wahdah","An Nil al Abyad","An Nil al Azraq","Ash Shamaliyah","Bahr al Jabal","Gharb al Istiwa'iyah","Gharb Bahr al Ghazal","Gharb Darfur","Gharb Kurdufan","Janub Darfur","Janub Kurdufan","Junqali","Kassala","Nahr an Nil","Shamal Bahr al Ghazal","Shamal Darfur","Shamal Kurdufan","Sharq al Istiwa'iyah","Sinnar","Warab"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+03:00"],"tld":[".sd"],"translations":{"de":"Sudan","es":"Sudán","fr":"Soudan","ja":"スーダン","it":"Sudan"},"wiki":"http://en.wikipedia.org/wiki/sudan"} \ No newline at end of file diff --git a/countryinfo/data/suriname.json b/countryinfo/data/suriname.json index 7fa4331..1fefeef 100644 --- a/countryinfo/data/suriname.json +++ b/countryinfo/data/suriname.json @@ -1 +1 @@ -{"name":"Suriname","altSpellings":["SR","Sarnam","Sranangron","Republic of Suriname","Republiek Suriname"],"area":163820,"borders":["BRA","GUF","FRA","GUY"],"callingCodes":["597"],"capital":"Paramaribo","currencies":["SRD"],"demonym":"Surinamer","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SUR","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]}}]},"ISO":{"alpha2":"SR","alpha3":"SUR"},"languages":["nl"],"latlng":[4,-56],"nativeName":"Suriname","population":534189,"provinces":["Brokopondo","Commewijne","Coronie","Marowijne","Nickerie","Para","Paramaribo","Saramacca","Sipaliwini","Wanica"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".sr"],"translations":{"de":"Suriname","es":"Surinam","fr":"Surinam","ja":"スリナム","it":"Suriname"},"wiki":"http://en.wikipedia.org/wiki/suriname"} \ No newline at end of file +{"name":"Suriname","altSpellings":["SR","Sarnam","Sranangron","Republic of Suriname","Republiek Suriname"],"area":163820,"borders":["BRA","GUF","FRA","GUY"],"callingCodes":["597"],"capital":"Paramaribo","capital_latlng":[5.821609,-55.177043],"currencies":["SRD"],"demonym":"Surinamer","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SUR","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]}}]},"ISO":{"alpha2":"SR","alpha3":"SUR"},"languages":["nl"],"latlng":[4,-56],"nativeName":"Suriname","population":534189,"provinces":["Brokopondo","Commewijne","Coronie","Marowijne","Nickerie","Para","Paramaribo","Saramacca","Sipaliwini","Wanica"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".sr"],"translations":{"de":"Suriname","es":"Surinam","fr":"Surinam","ja":"スリナム","it":"Suriname"},"wiki":"http://en.wikipedia.org/wiki/suriname"} \ No newline at end of file diff --git a/countryinfo/data/svalbard.json b/countryinfo/data/svalbard.json index 838b1f4..e66f021 100644 --- a/countryinfo/data/svalbard.json +++ b/countryinfo/data/svalbard.json @@ -1 +1 @@ -{"name":"Svalbard and Jan Mayen","altSpellings":["SJ","Svalbard and Jan Mayen Islands"],"area":null,"borders":[],"callingCodes":["4779"],"capital":"Longyearbyen","currencies":["NOK"],"demonym":"Norwegian","flag":"","geoJSON":{},"ISO":{"alpha2":"SJ","alpha3":"SJM"},"languages":["no"],"latlng":[78,20],"nativeName":"Svalbard og Jan Mayen","population":2562,"provinces":["Barentsoya","Bjornoya","Edgeoya","Hopen","Kvitoya","Nordaustandet","Prins Karls Forland","Spitsbergen"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".sj"],"translations":{"de":"Svalbard und Jan Mayen","es":"Islas Svalbard y Jan Mayen","fr":"Svalbard et Jan Mayen","ja":"スヴァールバル諸島およびヤンマイエン島","it":"Svalbard e Jan Mayen"},"wiki":"http://en.wikipedia.org/wiki/svalbard"} \ No newline at end of file +{"name":"Svalbard and Jan Mayen","altSpellings":["SJ","Svalbard and Jan Mayen Islands"],"area":null,"borders":[],"callingCodes":["4779"],"capital":"Longyearbyen","capital_latlng":[78.223156,15.646366],"currencies":["NOK"],"demonym":"Norwegian","flag":"","geoJSON":{},"ISO":{"alpha2":"SJ","alpha3":"SJM"},"languages":["no"],"latlng":[78,20],"nativeName":"Svalbard og Jan Mayen","population":2562,"provinces":["Barentsoya","Bjornoya","Edgeoya","Hopen","Kvitoya","Nordaustandet","Prins Karls Forland","Spitsbergen"],"region":"Europe","subregion":"Northern Europe","timezones":null,"tld":[".sj"],"translations":{"de":"Svalbard und Jan Mayen","es":"Islas Svalbard y Jan Mayen","fr":"Svalbard et Jan Mayen","ja":"スヴァールバル諸島およびヤンマイエン島","it":"Svalbard e Jan Mayen"},"wiki":"http://en.wikipedia.org/wiki/svalbard"} \ No newline at end of file diff --git a/countryinfo/data/swaziland.json b/countryinfo/data/swaziland.json index afa649b..be05b5a 100644 --- a/countryinfo/data/swaziland.json +++ b/countryinfo/data/swaziland.json @@ -1 +1 @@ -{"name":"Swaziland","altSpellings":["SZ","weSwatini","Swatini","Ngwane","Kingdom of Swaziland","Umbuso waseSwatini"],"area":17364,"borders":["MOZ","ZAF"],"callingCodes":["268"],"capital":"Lobamba","currencies":["SZL"],"demonym":"Swazi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SWZ","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]}}]},"ISO":{"alpha2":"SZ","alpha3":"SWZ"},"languages":["en","ss"],"latlng":[-26.5,31.5],"nativeName":"Swaziland","population":1106189,"provinces":["Hhohho","Lubombo","Manzini","Shiselweni"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".sz"],"translations":{"de":"Swasiland","es":"Suazilandia","fr":"Swaziland","ja":"スワジランド","it":"Swaziland"},"wiki":"http://en.wikipedia.org/wiki/swaziland"} \ No newline at end of file +{"name":"Swaziland","altSpellings":["SZ","weSwatini","Swatini","Ngwane","Kingdom of Swaziland","Umbuso waseSwatini"],"area":17364,"borders":["MOZ","ZAF"],"callingCodes":["268"],"capital":"Lobamba","capital_latlng":[-26.446285,31.208378],"currencies":["SZL"],"demonym":"Swazi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SWZ","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]}}]},"ISO":{"alpha2":"SZ","alpha3":"SWZ"},"languages":["en","ss"],"latlng":[-26.5,31.5],"nativeName":"Swaziland","population":1106189,"provinces":["Hhohho","Lubombo","Manzini","Shiselweni"],"region":"Africa","subregion":"Southern Africa","timezones":["UTC+02:00"],"tld":[".sz"],"translations":{"de":"Swasiland","es":"Suazilandia","fr":"Swaziland","ja":"スワジランド","it":"Swaziland"},"wiki":"http://en.wikipedia.org/wiki/swaziland"} \ No newline at end of file diff --git a/countryinfo/data/sweden.json b/countryinfo/data/sweden.json index f73568e..b4b614b 100644 --- a/countryinfo/data/sweden.json +++ b/countryinfo/data/sweden.json @@ -1 +1 @@ -{"name":"Sweden","altSpellings":["SE","Kingdom of Sweden","Konungariket Sverige"],"area":450295,"borders":["FIN","NOR"],"callingCodes":["46"],"capital":"Stockholm","currencies":["SEK"],"demonym":"Swedish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SWE","properties":{"name":"Sweden"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.183173,65.723741],[21.213517,65.026005],[21.369631,64.413588],[19.778876,63.609554],[17.847779,62.7494],[17.119555,61.341166],[17.831346,60.636583],[18.787722,60.081914],[17.869225,58.953766],[16.829185,58.719827],[16.44771,57.041118],[15.879786,56.104302],[14.666681,56.200885],[14.100721,55.407781],[12.942911,55.361737],[12.625101,56.30708],[11.787942,57.441817],[11.027369,58.856149],[11.468272,59.432393],[12.300366,60.117933],[12.631147,61.293572],[11.992064,61.800362],[11.930569,63.128318],[12.579935,64.066219],[13.571916,64.049114],[13.919905,64.445421],[13.55569,64.787028],[15.108411,66.193867],[16.108712,67.302456],[16.768879,68.013937],[17.729182,68.010552],[17.993868,68.567391],[19.87856,68.407194],[20.025269,69.065139],[20.645593,69.106247],[21.978535,68.616846],[23.539473,67.936009],[23.56588,66.396051],[23.903379,66.006927],[22.183173,65.723741]],[[17.061767,57.385783],[17.210083,57.326521],[16.430053,56.179196],[16.364135,56.556455],[17.061767,57.385783]],[[19.35791,57.958588],[18.8031,57.651279],[18.825073,57.444949],[18.995361,57.441993],[18.951416,57.370976],[18.693237,57.305756],[18.709716,57.204734],[18.462524,57.127295],[18.319702,56.926992],[18.105468,56.891003],[18.187866,57.109402],[18.072509,57.267163],[18.154907,57.394664],[18.094482,57.545312],[18.660278,57.929434],[19.039306,57.941098],[19.105224,57.993543],[19.374389,57.996454],[19.35791,57.958588]],[[20.846557,63.82371],[21.066284,63.829768],[20.9729,63.71567],[20.824584,63.579121],[20.695495,63.59134],[20.819091,63.714454],[20.799865,63.780059],[20.846557,63.82371]]]]}}]},"ISO":{"alpha2":"SE","alpha3":"SWE"},"languages":["sv"],"latlng":[62,15],"nativeName":"Sverige","population":9737521,"provinces":["Blekinge","Dalarnas","Gavleborgs","Gotlands","Hallands","Jamtlands","Jonkopings","Kalmar","Kronobergs","Norrbottens","Orebro","Ostergotlands","Skane","Sodermanlands","Stockholms","Uppsala","Varmlands","Vasterbottens","Vasternorrlands","Vastmanlands","Vastra Gotalands"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+01:00"],"tld":[".se"],"translations":{"de":"Schweden","es":"Suecia","fr":"Suède","ja":"スウェーデン","it":"Svezia"},"wiki":"http://en.wikipedia.org/wiki/sweden"} \ No newline at end of file +{"name":"Sweden","altSpellings":["SE","Kingdom of Sweden","Konungariket Sverige"],"area":450295,"borders":["FIN","NOR"],"callingCodes":["46"],"capital":"Stockholm","capital_latlng":[59.325117,18.071094],"currencies":["SEK"],"demonym":"Swedish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SWE","properties":{"name":"Sweden"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.183173,65.723741],[21.213517,65.026005],[21.369631,64.413588],[19.778876,63.609554],[17.847779,62.7494],[17.119555,61.341166],[17.831346,60.636583],[18.787722,60.081914],[17.869225,58.953766],[16.829185,58.719827],[16.44771,57.041118],[15.879786,56.104302],[14.666681,56.200885],[14.100721,55.407781],[12.942911,55.361737],[12.625101,56.30708],[11.787942,57.441817],[11.027369,58.856149],[11.468272,59.432393],[12.300366,60.117933],[12.631147,61.293572],[11.992064,61.800362],[11.930569,63.128318],[12.579935,64.066219],[13.571916,64.049114],[13.919905,64.445421],[13.55569,64.787028],[15.108411,66.193867],[16.108712,67.302456],[16.768879,68.013937],[17.729182,68.010552],[17.993868,68.567391],[19.87856,68.407194],[20.025269,69.065139],[20.645593,69.106247],[21.978535,68.616846],[23.539473,67.936009],[23.56588,66.396051],[23.903379,66.006927],[22.183173,65.723741]],[[17.061767,57.385783],[17.210083,57.326521],[16.430053,56.179196],[16.364135,56.556455],[17.061767,57.385783]],[[19.35791,57.958588],[18.8031,57.651279],[18.825073,57.444949],[18.995361,57.441993],[18.951416,57.370976],[18.693237,57.305756],[18.709716,57.204734],[18.462524,57.127295],[18.319702,56.926992],[18.105468,56.891003],[18.187866,57.109402],[18.072509,57.267163],[18.154907,57.394664],[18.094482,57.545312],[18.660278,57.929434],[19.039306,57.941098],[19.105224,57.993543],[19.374389,57.996454],[19.35791,57.958588]],[[20.846557,63.82371],[21.066284,63.829768],[20.9729,63.71567],[20.824584,63.579121],[20.695495,63.59134],[20.819091,63.714454],[20.799865,63.780059],[20.846557,63.82371]]]]}}]},"ISO":{"alpha2":"SE","alpha3":"SWE"},"languages":["sv"],"latlng":[62,15],"nativeName":"Sverige","population":9737521,"provinces":["Blekinge","Dalarnas","Gavleborgs","Gotlands","Hallands","Jamtlands","Jonkopings","Kalmar","Kronobergs","Norrbottens","Orebro","Ostergotlands","Skane","Sodermanlands","Stockholms","Uppsala","Varmlands","Vasterbottens","Vasternorrlands","Vastmanlands","Vastra Gotalands"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC+01:00"],"tld":[".se"],"translations":{"de":"Schweden","es":"Suecia","fr":"Suède","ja":"スウェーデン","it":"Svezia"},"wiki":"http://en.wikipedia.org/wiki/sweden"} \ No newline at end of file diff --git a/countryinfo/data/switzerland.json b/countryinfo/data/switzerland.json index dab1b8b..db43cba 100644 --- a/countryinfo/data/switzerland.json +++ b/countryinfo/data/switzerland.json @@ -1 +1 @@ -{"name":"Switzerland","altSpellings":["CH","Swiss Confederation","Schweiz","Suisse","Svizzera","Svizra"],"area":41284,"borders":["AUT","FRA","ITA","LIE","DEU"],"callingCodes":["41"],"capital":"Bern","currencies":["CHE","CHF","CHW"],"demonym":"Swiss","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHE","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}}]},"ISO":{"alpha2":"CH","alpha3":"CHE"},"languages":["de","fr","it"],"latlng":[47,8],"nativeName":"Schweiz","population":8183800,"provinces":["Aargau","Ausser-Rhoden","Basel-Landschaft","Basel-Stadt","Bern","Fribourg","Geneve","Glarus","Graubunden","Inner-Rhoden","Jura","Luzern","Neuchatel","Nidwalden","Obwalden","Sankt Gallen","Schaffhausen","Schwyz","Solothurn","Thurgau","Ticino","Uri","Valais","Vaud","Zug","Zurich"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".ch"],"translations":{"de":"Schweiz","es":"Suiza","fr":"Suisse","ja":"スイス","it":"Svizzera"},"wiki":"http://en.wikipedia.org/wiki/switzerland"} \ No newline at end of file +{"name":"Switzerland","altSpellings":["CH","Swiss Confederation","Schweiz","Suisse","Svizzera","Svizra"],"area":41284,"borders":["AUT","FRA","ITA","LIE","DEU"],"callingCodes":["41"],"capital":"Bern","capital_latlng":[46.948271,7.451451],"currencies":["CHE","CHF","CHW"],"demonym":"Swiss","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"CHE","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}}]},"ISO":{"alpha2":"CH","alpha3":"CHE"},"languages":["de","fr","it"],"latlng":[47,8],"nativeName":"Schweiz","population":8183800,"provinces":["Aargau","Ausser-Rhoden","Basel-Landschaft","Basel-Stadt","Bern","Fribourg","Geneve","Glarus","Graubunden","Inner-Rhoden","Jura","Luzern","Neuchatel","Nidwalden","Obwalden","Sankt Gallen","Schaffhausen","Schwyz","Solothurn","Thurgau","Ticino","Uri","Valais","Vaud","Zug","Zurich"],"region":"Europe","subregion":"Western Europe","timezones":["UTC+01:00"],"tld":[".ch"],"translations":{"de":"Schweiz","es":"Suiza","fr":"Suisse","ja":"スイス","it":"Svizzera"},"wiki":"http://en.wikipedia.org/wiki/switzerland"} \ No newline at end of file diff --git a/countryinfo/data/syria.json b/countryinfo/data/syria.json index b80fab9..afeb34c 100644 --- a/countryinfo/data/syria.json +++ b/countryinfo/data/syria.json @@ -1 +1 @@ -{"name":"Syria","altSpellings":["SY","Syrian Arab Republic","Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah"],"area":185180,"borders":["IRQ","ISR","JOR","LBN","TUR"],"callingCodes":["963"],"capital":"Damascus","currencies":["SYP"],"demonym":"Syrian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SYR","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]}}]},"ISO":{"alpha2":"SY","alpha3":"SYR"},"languages":["ar"],"latlng":[35,38],"nativeName":"سوريا","population":22964324,"provinces":["Al Hasakah","Al Ladhiqiyah","Al Qunaytirah","Ar Raqqah","As Suwayda'","Dar'a","Dayr az Zawr","Dimashq","Halab","Hamah","Hims","Idlib","Rif Dimashq","Tartus"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".sy"],"translations":{"de":"Syrien","es":"Siria","fr":"Syrie","ja":"シリア・アラブ共和国","it":"Siria"},"wiki":"http://en.wikipedia.org/wiki/syria"} \ No newline at end of file +{"name":"Syria","altSpellings":["SY","Syrian Arab Republic","Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah"],"area":185180,"borders":["IRQ","ISR","JOR","LBN","TUR"],"callingCodes":["963"],"capital":"Damascus","capital_latlng":[33.51307,36.309581],"currencies":["SYP"],"demonym":"Syrian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"SYR","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]}}]},"ISO":{"alpha2":"SY","alpha3":"SYR"},"languages":["ar"],"latlng":[35,38],"nativeName":"سوريا","population":22964324,"provinces":["Al Hasakah","Al Ladhiqiyah","Al Qunaytirah","Ar Raqqah","As Suwayda'","Dar'a","Dayr az Zawr","Dimashq","Halab","Hamah","Hims","Idlib","Rif Dimashq","Tartus"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".sy"],"translations":{"de":"Syrien","es":"Siria","fr":"Syrie","ja":"シリア・アラブ共和国","it":"Siria"},"wiki":"http://en.wikipedia.org/wiki/syria"} \ No newline at end of file diff --git a/countryinfo/data/taiwan.json b/countryinfo/data/taiwan.json index 15b7438..221f372 100644 --- a/countryinfo/data/taiwan.json +++ b/countryinfo/data/taiwan.json @@ -1 +1 @@ -{"name":"Taiwan","altSpellings":["TW","Táiwān","Republic of China","中華民國","Zhōnghuá Mínguó"],"area":36193,"borders":[],"callingCodes":["886"],"capital":"Taipei","currencies":["TWD"],"demonym":"Taiwanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TWN","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]}}]},"ISO":{"alpha2":"TW","alpha3":"TWN"},"languages":["zh"],"latlng":[23.5,121],"nativeName":"臺灣","population":23424615,"provinces":["Chang-hua","Chi-lung","Chia-i","Chia-i","Chung-hsing-hsin-ts'un","Hsin-chu","Hsin-chu","Hua-lien","I-lan","Kao-hsiung","Kao-hsiung","Miao-li","Nan-t'ou","P'eng-hu","P'ing-tung","T'ai-chung","T'ai-chung","T'ai-nan","T'ai-nan","T'ai-pei","T'ai-pei","T'ai-tung","T'ao-yuan","Yun-lin"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".tw"],"translations":{"de":"Taiwan","es":"Taiwán","fr":"Taïwan","ja":"台湾(台湾省/中華民国)","it":"Taiwan"},"wiki":"http://en.wikipedia.org/wiki/taiwan"} \ No newline at end of file +{"name":"Taiwan","altSpellings":["TW","Táiwān","Republic of China","中華民國","Zhōnghuá Mínguó"],"area":36193,"borders":[],"callingCodes":["886"],"capital":"Taipei","capital_latlng":[25.03752,121.56368],"currencies":["TWD"],"demonym":"Taiwanese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TWN","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]}}]},"ISO":{"alpha2":"TW","alpha3":"TWN"},"languages":["zh"],"latlng":[23.5,121],"nativeName":"臺灣","population":23424615,"provinces":["Chang-hua","Chi-lung","Chia-i","Chia-i","Chung-hsing-hsin-ts'un","Hsin-chu","Hsin-chu","Hua-lien","I-lan","Kao-hsiung","Kao-hsiung","Miao-li","Nan-t'ou","P'eng-hu","P'ing-tung","T'ai-chung","T'ai-chung","T'ai-nan","T'ai-nan","T'ai-pei","T'ai-pei","T'ai-tung","T'ao-yuan","Yun-lin"],"region":"Asia","subregion":"Eastern Asia","timezones":["UTC+08:00"],"tld":[".tw"],"translations":{"de":"Taiwan","es":"Taiwán","fr":"Taïwan","ja":"台湾(台湾省/中華民国)","it":"Taiwan"},"wiki":"http://en.wikipedia.org/wiki/taiwan"} \ No newline at end of file diff --git a/countryinfo/data/tajikistan.json b/countryinfo/data/tajikistan.json index 1ed7d0c..5eb0c04 100644 --- a/countryinfo/data/tajikistan.json +++ b/countryinfo/data/tajikistan.json @@ -1 +1 @@ -{"name":"Tajikistan","altSpellings":["TJ","Toçikiston","Republic of Tajikistan","Ҷумҳурии Тоҷикистон","Çumhuriyi Toçikiston"],"area":143100,"borders":["AFG","CHN","KGZ","UZB"],"callingCodes":["992"],"capital":"Dushanbe","currencies":["TJS"],"demonym":"Tadzhik","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TJK","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]}}]},"ISO":{"alpha2":"TJ","alpha3":"TJK"},"languages":["tg","ru"],"latlng":[39,71],"nativeName":"Тоҷикистон","population":8161000,"provinces":["Viloyati Khatlon","Viloyati Leninobod","Viloyati Mukhtori Kuhistoni Badakhshon"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".tj"],"translations":{"de":"Tadschikistan","es":"Tayikistán","fr":"Tadjikistan","ja":"タジキスタン","it":"Tagikistan"},"wiki":"http://en.wikipedia.org/wiki/tajikistan"} \ No newline at end of file +{"name":"Tajikistan","altSpellings":["TJ","Toçikiston","Republic of Tajikistan","Ҷумҳурии Тоҷикистон","Çumhuriyi Toçikiston"],"area":143100,"borders":["AFG","CHN","KGZ","UZB"],"callingCodes":["992"],"capital":"Dushanbe","capital_latlng":[38.542584,68.815214],"currencies":["TJS"],"demonym":"Tadzhik","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TJK","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]}}]},"ISO":{"alpha2":"TJ","alpha3":"TJK"},"languages":["tg","ru"],"latlng":[39,71],"nativeName":"Тоҷикистон","population":8161000,"provinces":["Viloyati Khatlon","Viloyati Leninobod","Viloyati Mukhtori Kuhistoni Badakhshon"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".tj"],"translations":{"de":"Tadschikistan","es":"Tayikistán","fr":"Tadjikistan","ja":"タジキスタン","it":"Tagikistan"},"wiki":"http://en.wikipedia.org/wiki/tajikistan"} \ No newline at end of file diff --git a/countryinfo/data/tanzania.json b/countryinfo/data/tanzania.json index d8a4fa4..00118fc 100644 --- a/countryinfo/data/tanzania.json +++ b/countryinfo/data/tanzania.json @@ -1 +1 @@ -{"name":"Tanzania","altSpellings":["TZ","United Republic of Tanzania","Jamhuri ya Muungano wa Tanzania"],"area":945087,"borders":["BDI","COD","KEN","MWI","MOZ","RWA","UGA","ZMB"],"callingCodes":["255"],"capital":"Dodoma","currencies":["TZS"],"demonym":"Tanzanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TZA","properties":{"name":"United Republic of Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]}}]},"ISO":{"alpha2":"TZ","alpha3":"TZA"},"languages":["sw","en"],"latlng":[-6,35],"nativeName":"Tanzania","population":47421786,"provinces":["Arusha","Dar es Salaam","Dodoma","Iringa","Kagera","Kigoma","Kilimanjaro","Lindi","Mara","Mbeya","Morogoro","Mtwara","Mwanza","Pemba North","Pemba South","Pwani","Rukwa","Ruvuma","Shinyanga","Singida","Tabora","Tanga","Zanzibar Central/South","Zanzibar North","Zanzibar Urban/West"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".tz"],"translations":{"de":"Tansania","es":"Tanzania","fr":"Tanzanie","ja":"タンザニア","it":"Tanzania"},"wiki":"http://en.wikipedia.org/wiki/tanzania"} \ No newline at end of file +{"name":"Tanzania","altSpellings":["TZ","United Republic of Tanzania","Jamhuri ya Muungano wa Tanzania"],"area":945087,"borders":["BDI","COD","KEN","MWI","MOZ","RWA","UGA","ZMB"],"callingCodes":["255"],"capital":"Dodoma","capital_latlng":[-6.337282,35.737177],"currencies":["TZS"],"demonym":"Tanzanian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TZA","properties":{"name":"United Republic of Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]}}]},"ISO":{"alpha2":"TZ","alpha3":"TZA"},"languages":["sw","en"],"latlng":[-6,35],"nativeName":"Tanzania","population":47421786,"provinces":["Arusha","Dar es Salaam","Dodoma","Iringa","Kagera","Kigoma","Kilimanjaro","Lindi","Mara","Mbeya","Morogoro","Mtwara","Mwanza","Pemba North","Pemba South","Pwani","Rukwa","Ruvuma","Shinyanga","Singida","Tabora","Tanga","Zanzibar Central/South","Zanzibar North","Zanzibar Urban/West"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".tz"],"translations":{"de":"Tansania","es":"Tanzania","fr":"Tanzanie","ja":"タンザニア","it":"Tanzania"},"wiki":"http://en.wikipedia.org/wiki/tanzania"} \ No newline at end of file diff --git a/countryinfo/data/thailand.json b/countryinfo/data/thailand.json index 9bcd76b..2f16385 100644 --- a/countryinfo/data/thailand.json +++ b/countryinfo/data/thailand.json @@ -1 +1 @@ -{"name":"Thailand","altSpellings":["TH","Prathet","Thai","Kingdom of Thailand","ราชอาณาจักรไทย","Ratcha Anachak Thai"],"area":513120,"borders":["MMR","KHM","LAO","MYS"],"callingCodes":["66"],"capital":"Bangkok","currencies":["THB"],"demonym":"Thai","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"THA","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]}}]},"ISO":{"alpha2":"TH","alpha3":"THA"},"languages":["th"],"latlng":[15,100],"nativeName":"ประเทศไทย","population":64871000,"provinces":["Amnat Charoen","Ang Thong","Buriram","Chachoengsao","Chai Nat","Chaiyaphum","Chanthaburi","Chiang Mai","Chiang Rai","Chon Buri","Chumphon","Kalasin","Kamphaeng Phet","Kanchanaburi","Khon Kaen","Krabi","Krung Thep Mahanakhon (Bangkok)","Lampang","Lamphun","Loei","Lop Buri","Mae Hong Son","Maha Sarakham","Mukdahan","Nakhon Nayok","Nakhon Pathom","Nakhon Phanom","Nakhon Ratchasima","Nakhon Sawan","Nakhon Si Thammarat","Nan","Narathiwat","Nong Bua Lamphu","Nong Khai","Nonthaburi","Pathum Thani","Pattani","Phangnga","Phatthalung","Phayao","Phetchabun","Phetchaburi","Phichit","Phitsanulok","Phra Nakhon Si Ayutthaya","Phrae","Phuket","Prachin Buri","Prachuap Khiri Khan","Ranong","Ratchaburi","Rayong","Roi Et","Sa Kaeo","Sakon Nakhon","Samut Prakan","Samut Sakhon","Samut Songkhram","Sara Buri","Satun","Sing Buri","Sisaket","Songkhla","Sukhothai","Suphan Buri","Surat Thani","Surin","Tak","Trang","Trat","Ubon Ratchathani","Udon Thani","Uthai Thani","Uttaradit","Yala","Yasothon"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".th"],"translations":{"de":"Thailand","es":"Tailandia","fr":"Thaïlande","ja":"タイ","it":"Tailandia"},"wiki":"http://en.wikipedia.org/wiki/thailand"} \ No newline at end of file +{"name":"Thailand","altSpellings":["TH","Prathet","Thai","Kingdom of Thailand","ราชอาณาจักรไทย","Ratcha Anachak Thai"],"area":513120,"borders":["MMR","KHM","LAO","MYS"],"callingCodes":["66"],"capital":"Bangkok","capital_latlng":[13.754253,100.493087],"currencies":["THB"],"demonym":"Thai","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"THA","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]}}]},"ISO":{"alpha2":"TH","alpha3":"THA"},"languages":["th"],"latlng":[15,100],"nativeName":"ประเทศไทย","population":64871000,"provinces":["Amnat Charoen","Ang Thong","Buriram","Chachoengsao","Chai Nat","Chaiyaphum","Chanthaburi","Chiang Mai","Chiang Rai","Chon Buri","Chumphon","Kalasin","Kamphaeng Phet","Kanchanaburi","Khon Kaen","Krabi","Krung Thep Mahanakhon (Bangkok)","Lampang","Lamphun","Loei","Lop Buri","Mae Hong Son","Maha Sarakham","Mukdahan","Nakhon Nayok","Nakhon Pathom","Nakhon Phanom","Nakhon Ratchasima","Nakhon Sawan","Nakhon Si Thammarat","Nan","Narathiwat","Nong Bua Lamphu","Nong Khai","Nonthaburi","Pathum Thani","Pattani","Phangnga","Phatthalung","Phayao","Phetchabun","Phetchaburi","Phichit","Phitsanulok","Phra Nakhon Si Ayutthaya","Phrae","Phuket","Prachin Buri","Prachuap Khiri Khan","Ranong","Ratchaburi","Rayong","Roi Et","Sa Kaeo","Sakon Nakhon","Samut Prakan","Samut Sakhon","Samut Songkhram","Sara Buri","Satun","Sing Buri","Sisaket","Songkhla","Sukhothai","Suphan Buri","Surat Thani","Surin","Tak","Trang","Trat","Ubon Ratchathani","Udon Thani","Uthai Thani","Uttaradit","Yala","Yasothon"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".th"],"translations":{"de":"Thailand","es":"Tailandia","fr":"Thaïlande","ja":"タイ","it":"Tailandia"},"wiki":"http://en.wikipedia.org/wiki/thailand"} \ No newline at end of file diff --git a/countryinfo/data/tobago.json b/countryinfo/data/tobago.json index c71e69d..10a337f 100644 --- a/countryinfo/data/tobago.json +++ b/countryinfo/data/tobago.json @@ -1 +1 @@ -{"name":"East Timor","altSpellings":["TL","East Timor","Democratic Republic of Timor-Leste","República Democrática de Timor-Leste","Repúblika Demokrátika Timór-Leste"],"area":14874,"borders":["IDN"],"callingCodes":["670"],"capital":"Dili","currencies":["USD"],"demonym":"East Timorese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TLS","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]}}]},"ISO":{"alpha2":"TL","alpha3":"TLS"},"languages":["pt"],"latlng":[-8.83333333,125.91666666],"nativeName":"Timor-Leste","population":1172390,"provinces":["Tobago"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+09:00"],"tld":[".tl"],"translations":{"de":"Timor-Leste","es":"Timor Oriental","fr":"Timor oriental","ja":"東ティモール","it":"Timor Est"},"wiki":"http://en.wikipedia.org/wiki/tobago"} \ No newline at end of file +{"name":"East Timor","altSpellings":["TL","East Timor","Democratic Republic of Timor-Leste","República Democrática de Timor-Leste","Repúblika Demokrátika Timór-Leste"],"area":14874,"borders":["IDN"],"callingCodes":["670"],"capital":"Dili","capital_latlng":[28.651718,77.221939],"currencies":["USD"],"demonym":"East Timorese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TLS","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]}}]},"ISO":{"alpha2":"TL","alpha3":"TLS"},"languages":["pt"],"latlng":[-8.83333333,125.91666666],"nativeName":"Timor-Leste","population":1172390,"provinces":["Tobago"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+09:00"],"tld":[".tl"],"translations":{"de":"Timor-Leste","es":"Timor Oriental","fr":"Timor oriental","ja":"東ティモール","it":"Timor Est"},"wiki":"http://en.wikipedia.org/wiki/tobago"} \ No newline at end of file diff --git a/countryinfo/data/toga.json b/countryinfo/data/toga.json index 72a7197..746d118 100644 --- a/countryinfo/data/toga.json +++ b/countryinfo/data/toga.json @@ -1 +1 @@ -{"name":"Togo","altSpellings":["TG","Togolese","Togolese Republic","République Togolaise"],"area":56785,"borders":["BEN","BFA","GHA"],"callingCodes":["228"],"capital":"Lomé","currencies":["XOF"],"demonym":"Togolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TGO","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]}}]},"ISO":{"alpha2":"TG","alpha3":"TGO"},"languages":["fr"],"latlng":[8,1.16666666],"nativeName":"Togo","population":6993000,"provinces":["De La Kara","Des Plateaux","Des Savanes","Du Centre","Maritime"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".tg"],"translations":{"de":"Togo","es":"Togo","fr":"Togo","ja":"トーゴ","it":"Togo"},"wiki":"http://en.wikipedia.org/wiki/toga"} \ No newline at end of file +{"name":"Togo","altSpellings":["TG","Togolese","Togolese Republic","République Togolaise"],"area":56785,"borders":["BEN","BFA","GHA"],"callingCodes":["228"],"capital":"Lomé","capital_latlng":[6.130419,1.215829],"currencies":["XOF"],"demonym":"Togolese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TGO","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]}}]},"ISO":{"alpha2":"TG","alpha3":"TGO"},"languages":["fr"],"latlng":[8,1.16666666],"nativeName":"Togo","population":6993000,"provinces":["De La Kara","Des Plateaux","Des Savanes","Du Centre","Maritime"],"region":"Africa","subregion":"Western Africa","timezones":["UTC"],"tld":[".tg"],"translations":{"de":"Togo","es":"Togo","fr":"Togo","ja":"トーゴ","it":"Togo"},"wiki":"http://en.wikipedia.org/wiki/toga"} \ No newline at end of file diff --git a/countryinfo/data/tokelau.json b/countryinfo/data/tokelau.json index 8264897..baaa5d5 100644 --- a/countryinfo/data/tokelau.json +++ b/countryinfo/data/tokelau.json @@ -1 +1 @@ -{"name":"Tokelau","altSpellings":["TK"],"area":12,"borders":[],"callingCodes":["690"],"capital":"Fakaofo","currencies":["NZD"],"demonym":"Tokelauan","flag":"","geoJSON":{},"ISO":{"alpha2":"TK","alpha3":"TKL"},"languages":["en"],"latlng":[-9,-172],"nativeName":"Tokelau","population":1411,"provinces":["Atafu","Fakaofo","Nukunonu"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".tk"],"translations":{"de":"Tokelau","es":"Islas Tokelau","fr":"Tokelau","ja":"トケラウ","it":"Isole Tokelau"},"wiki":"http://en.wikipedia.org/wiki/tokelau"} \ No newline at end of file +{"name":"Tokelau","altSpellings":["TK"],"area":12,"borders":[],"callingCodes":["690"],"capital":"Fakaofo","capital_latlng":[-9.374305,-171.264536],"currencies":["NZD"],"demonym":"Tokelauan","flag":"","geoJSON":{},"ISO":{"alpha2":"TK","alpha3":"TKL"},"languages":["en"],"latlng":[-9,-172],"nativeName":"Tokelau","population":1411,"provinces":["Atafu","Fakaofo","Nukunonu"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".tk"],"translations":{"de":"Tokelau","es":"Islas Tokelau","fr":"Tokelau","ja":"トケラウ","it":"Isole Tokelau"},"wiki":"http://en.wikipedia.org/wiki/tokelau"} \ No newline at end of file diff --git a/countryinfo/data/tonga.json b/countryinfo/data/tonga.json index 876ecf0..dea3922 100644 --- a/countryinfo/data/tonga.json +++ b/countryinfo/data/tonga.json @@ -1 +1 @@ -{"name":"Tonga","altSpellings":["TO"],"area":747,"borders":[],"callingCodes":["676"],"capital":"Nuku'alofa","currencies":["TOP"],"demonym":"Tongan","flag":"","geoJSON":{},"ISO":{"alpha2":"TO","alpha3":"TON"},"languages":["en","to"],"latlng":[-20,-175],"nativeName":"Tonga","population":103252,"provinces":["Ha'apai","Tongatapu","Vava'u"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+13:00"],"tld":[".to"],"translations":{"de":"Tonga","es":"Tonga","fr":"Tonga","ja":"トンガ","it":"Tonga"},"wiki":"http://en.wikipedia.org/wiki/tonga"} \ No newline at end of file +{"name":"Tonga","altSpellings":["TO"],"area":747,"borders":[],"callingCodes":["676"],"capital":"Nuku'alofa","capital_latlng":[-21.13434,-175.201808],"currencies":["TOP"],"demonym":"Tongan","flag":"","geoJSON":{},"ISO":{"alpha2":"TO","alpha3":"TON"},"languages":["en","to"],"latlng":[-20,-175],"nativeName":"Tonga","population":103252,"provinces":["Ha'apai","Tongatapu","Vava'u"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+13:00"],"tld":[".to"],"translations":{"de":"Tonga","es":"Tonga","fr":"Tonga","ja":"トンガ","it":"Tonga"},"wiki":"http://en.wikipedia.org/wiki/tonga"} \ No newline at end of file diff --git a/countryinfo/data/trinidad.json b/countryinfo/data/trinidad.json index 5ce1607..77d80b9 100644 --- a/countryinfo/data/trinidad.json +++ b/countryinfo/data/trinidad.json @@ -1 +1 @@ -{"name":"Trinidad and Tobago","altSpellings":["TT","Republic of Trinidad and Tobago"],"area":5130,"borders":[],"callingCodes":["1868"],"capital":"Port of Spain","currencies":["TTD"],"demonym":"Trinidadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TTO","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}}]},"ISO":{"alpha2":"TT","alpha3":"TTO"},"languages":["en"],"latlng":[11,-61],"nativeName":"Trinidad and Tobago","population":1328019,"provinces":["Arima","Caroni","Mayaro","Nariva","Port-of-Spain","Saint Andrew","Saint David","Saint George","Saint Patrick","San Fernando","Victoria"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".tt"],"translations":{"de":"Trinidad und Tobago","es":"Trinidad y Tobago","fr":"Trinité et Tobago","ja":"トリニダード・トバゴ","it":"Trinidad e Tobago"},"wiki":"http://en.wikipedia.org/wiki/trinidad"} \ No newline at end of file +{"name":"Trinidad and Tobago","altSpellings":["TT","Republic of Trinidad and Tobago"],"area":5130,"borders":[],"callingCodes":["1868"],"capital":"Port of Spain","capital_latlng":[10.657268,-61.518017],"currencies":["TTD"],"demonym":"Trinidadian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TTO","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}}]},"ISO":{"alpha2":"TT","alpha3":"TTO"},"languages":["en"],"latlng":[11,-61],"nativeName":"Trinidad and Tobago","population":1328019,"provinces":["Arima","Caroni","Mayaro","Nariva","Port-of-Spain","Saint Andrew","Saint David","Saint George","Saint Patrick","San Fernando","Victoria"],"region":"Americas","subregion":"Caribbean","timezones":["UTC−04:00"],"tld":[".tt"],"translations":{"de":"Trinidad und Tobago","es":"Trinidad y Tobago","fr":"Trinité et Tobago","ja":"トリニダード・トバゴ","it":"Trinidad e Tobago"},"wiki":"http://en.wikipedia.org/wiki/trinidad"} \ No newline at end of file diff --git a/countryinfo/data/tunisia.json b/countryinfo/data/tunisia.json index 940adb0..c3c6040 100644 --- a/countryinfo/data/tunisia.json +++ b/countryinfo/data/tunisia.json @@ -1 +1 @@ -{"name":"Tunisia","altSpellings":["TN","Republic of Tunisia","al-Jumhūriyyah at-Tūnisiyyah"],"area":163610,"borders":["DZA","LBY"],"callingCodes":["216"],"capital":"Tunis","currencies":["TND"],"demonym":"Tunisian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TUN","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]}}]},"ISO":{"alpha2":"TN","alpha3":"TUN"},"languages":["ar"],"latlng":[34,9],"nativeName":"تونس","population":10982754,"provinces":["Ariana","Beja","Ben Arous","Bizerte","El Kef","Gabes","Gafsa","Jendouba","Kairouan","Kasserine","Kebili","Mahdia","Medenine","Monastir","Nabeul","Sfax","Sidi Bou Zid","Siliana","Sousse","Tataouine","Tozeur","Tunis","Zaghouan"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".tn"],"translations":{"de":"Tunesien","es":"Túnez","fr":"Tunisie","ja":"チュニジア","it":"Tunisia"},"wiki":"http://en.wikipedia.org/wiki/tunisia"} \ No newline at end of file +{"name":"Tunisia","altSpellings":["TN","Republic of Tunisia","al-Jumhūriyyah at-Tūnisiyyah"],"area":163610,"borders":["DZA","LBY"],"callingCodes":["216"],"capital":"Tunis","capital_latlng":[33.843941,9.400138],"currencies":["TND"],"demonym":"Tunisian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TUN","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]}}]},"ISO":{"alpha2":"TN","alpha3":"TUN"},"languages":["ar"],"latlng":[34,9],"nativeName":"تونس","population":10982754,"provinces":["Ariana","Beja","Ben Arous","Bizerte","El Kef","Gabes","Gafsa","Jendouba","Kairouan","Kasserine","Kebili","Mahdia","Medenine","Monastir","Nabeul","Sfax","Sidi Bou Zid","Siliana","Sousse","Tataouine","Tozeur","Tunis","Zaghouan"],"region":"Africa","subregion":"Northern Africa","timezones":["UTC+01:00"],"tld":[".tn"],"translations":{"de":"Tunesien","es":"Túnez","fr":"Tunisie","ja":"チュニジア","it":"Tunisia"},"wiki":"http://en.wikipedia.org/wiki/tunisia"} \ No newline at end of file diff --git a/countryinfo/data/turkey.json b/countryinfo/data/turkey.json index b67365d..7169eea 100644 --- a/countryinfo/data/turkey.json +++ b/countryinfo/data/turkey.json @@ -1 +1 @@ -{"name":"Turkey","altSpellings":["TR","Turkiye","Republic of Turkey","Türkiye Cumhuriyeti"],"area":783562,"borders":["ARM","AZE","BGR","GEO","GRC","IRN","IRQ","SYR"],"callingCodes":["90"],"capital":"Ankara","currencies":["TRY"],"demonym":"Turkish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TUR","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]}}]},"ISO":{"alpha2":"TR","alpha3":"TUR"},"languages":["tr"],"latlng":[39,35],"nativeName":"Türkiye","population":76667864,"provinces":["Adana","Adiyaman","Afyon","Agri","Aksaray","Amasya","Ankara","Antalya","Ardahan","Artvin","Aydin","Balikesir","Bartin","Batman","Bayburt","Bilecik","Bingol","Bitlis","Bolu","Burdur","Bursa","Canakkale","Cankiri","Corum","Denizli","Diyarbakir","Duzce","Edirne","Elazig","Erzincan","Erzurum","Eskisehir","Gaziantep","Giresun","Gumushane","Hakkari","Hatay","Icel","Igdir","Isparta","Istanbul","Izmir","Kahramanmaras","Karabuk","Karaman","Kars","Kastamonu","Kayseri","Kilis","Kirikkale","Kirklareli","Kirsehir","Kocaeli","Konya","Kutahya","Malatya","Manisa","Mardin","Mugla","Mus","Nevsehir","Nigde","Ordu","Osmaniye","Rize","Sakarya","Samsun","Sanliurfa","Siirt","Sinop","Sirnak","Sivas","Tekirdag","Tokat","Trabzon","Tunceli","Usak","Van","Yalova","Yozgat","Zonguldak"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".tr"],"translations":{"de":"Türkei","es":"Turquía","fr":"Turquie","ja":"トルコ","it":"Turchia"},"wiki":"http://en.wikipedia.org/wiki/turkey"} \ No newline at end of file +{"name":"Turkey","altSpellings":["TR","Turkiye","Republic of Turkey","Türkiye Cumhuriyeti"],"area":783562,"borders":["ARM","AZE","BGR","GEO","GRC","IRN","IRQ","SYR"],"callingCodes":["90"],"capital":"Ankara","capital_latlng":[39.920777,32.854067],"currencies":["TRY"],"demonym":"Turkish","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TUR","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]}}]},"ISO":{"alpha2":"TR","alpha3":"TUR"},"languages":["tr"],"latlng":[39,35],"nativeName":"Türkiye","population":76667864,"provinces":["Adana","Adiyaman","Afyon","Agri","Aksaray","Amasya","Ankara","Antalya","Ardahan","Artvin","Aydin","Balikesir","Bartin","Batman","Bayburt","Bilecik","Bingol","Bitlis","Bolu","Burdur","Bursa","Canakkale","Cankiri","Corum","Denizli","Diyarbakir","Duzce","Edirne","Elazig","Erzincan","Erzurum","Eskisehir","Gaziantep","Giresun","Gumushane","Hakkari","Hatay","Icel","Igdir","Isparta","Istanbul","Izmir","Kahramanmaras","Karabuk","Karaman","Kars","Kastamonu","Kayseri","Kilis","Kirikkale","Kirklareli","Kirsehir","Kocaeli","Konya","Kutahya","Malatya","Manisa","Mardin","Mugla","Mus","Nevsehir","Nigde","Ordu","Osmaniye","Rize","Sakarya","Samsun","Sanliurfa","Siirt","Sinop","Sirnak","Sivas","Tekirdag","Tokat","Trabzon","Tunceli","Usak","Van","Yalova","Yozgat","Zonguldak"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+02:00"],"tld":[".tr"],"translations":{"de":"Türkei","es":"Turquía","fr":"Turquie","ja":"トルコ","it":"Turchia"},"wiki":"http://en.wikipedia.org/wiki/turkey"} \ No newline at end of file diff --git a/countryinfo/data/turkmenistan.json b/countryinfo/data/turkmenistan.json index 0bf7007..f0e60de 100644 --- a/countryinfo/data/turkmenistan.json +++ b/countryinfo/data/turkmenistan.json @@ -1 +1 @@ -{"name":"Turkmenistan","altSpellings":["TM"],"area":488100,"borders":["AFG","IRN","KAZ","UZB"],"callingCodes":["993"],"capital":"Ashgabat","currencies":["TMT"],"demonym":"Turkmen","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TKM","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]}}]},"ISO":{"alpha2":"TM","alpha3":"TKM"},"languages":["tk","ru"],"latlng":[40,60],"nativeName":"Türkmenistan","population":5838064,"provinces":["Ahal Welayaty","Balkan Welayaty","Dashhowuz Welayaty","Lebap Welayaty","Mary Welayaty"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".tm"],"translations":{"de":"Turkmenistan","es":"Turkmenistán","fr":"Turkménistan","ja":"トルクメニスタン","it":"Turkmenistan"},"wiki":"http://en.wikipedia.org/wiki/turkmenistan"} \ No newline at end of file +{"name":"Turkmenistan","altSpellings":["TM"],"area":488100,"borders":["AFG","IRN","KAZ","UZB"],"callingCodes":["993"],"capital":"Ashgabat","capital_latlng":[37.939668,58.387426],"currencies":["TMT"],"demonym":"Turkmen","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"TKM","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]}}]},"ISO":{"alpha2":"TM","alpha3":"TKM"},"languages":["tk","ru"],"latlng":[40,60],"nativeName":"Türkmenistan","population":5838064,"provinces":["Ahal Welayaty","Balkan Welayaty","Dashhowuz Welayaty","Lebap Welayaty","Mary Welayaty"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".tm"],"translations":{"de":"Turkmenistan","es":"Turkmenistán","fr":"Turkménistan","ja":"トルクメニスタン","it":"Turkmenistan"},"wiki":"http://en.wikipedia.org/wiki/turkmenistan"} \ No newline at end of file diff --git a/countryinfo/data/tuvalu.json b/countryinfo/data/tuvalu.json index 826da91..4bf0e51 100644 --- a/countryinfo/data/tuvalu.json +++ b/countryinfo/data/tuvalu.json @@ -1 +1 @@ -{"name":"Tuvalu","altSpellings":["TV"],"area":26,"borders":[],"callingCodes":["688"],"capital":"Funafuti","currencies":["AUD"],"demonym":"Tuvaluan","flag":"","geoJSON":{},"ISO":{"alpha2":"TV","alpha3":"TUV"},"languages":["en"],"latlng":[-8,178],"nativeName":"Tuvalu","population":11323,"provinces":["Tuvalu"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+12:00"],"tld":[".tv"],"translations":{"de":"Tuvalu","es":"Tuvalu","fr":"Tuvalu","ja":"ツバル","it":"Tuvalu"},"wiki":"http://en.wikipedia.org/wiki/tuvalu"} \ No newline at end of file +{"name":"Tuvalu","altSpellings":["TV"],"area":26,"borders":[],"callingCodes":["688"],"capital":"Funafuti","capital_latlng":[-8.534995,179.11865],"currencies":["AUD"],"demonym":"Tuvaluan","flag":"","geoJSON":{},"ISO":{"alpha2":"TV","alpha3":"TUV"},"languages":["en"],"latlng":[-8,178],"nativeName":"Tuvalu","population":11323,"provinces":["Tuvalu"],"region":"Oceania","subregion":"Polynesia","timezones":["UTC+12:00"],"tld":[".tv"],"translations":{"de":"Tuvalu","es":"Tuvalu","fr":"Tuvalu","ja":"ツバル","it":"Tuvalu"},"wiki":"http://en.wikipedia.org/wiki/tuvalu"} \ No newline at end of file diff --git a/countryinfo/data/uganda.json b/countryinfo/data/uganda.json index 2cfd1df..4353332 100644 --- a/countryinfo/data/uganda.json +++ b/countryinfo/data/uganda.json @@ -1 +1 @@ -{"name":"Uganda","altSpellings":["UG","Republic of Uganda","Jamhuri ya Uganda"],"area":241550,"borders":["COD","KEN","RWA","SSD","TZA"],"callingCodes":["256"],"capital":"Kampala","currencies":["UGX"],"demonym":"Ugandan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UGA","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]}}]},"ISO":{"alpha2":"UG","alpha3":"UGA"},"languages":["en","sw"],"latlng":[1,32],"nativeName":"Uganda","population":34856813,"provinces":["Adjumani","Apac","Arua","Bugiri","Bundibugyo","Bushenyi","Busia","Gulu","Hoima","Iganga","Jinja","Kabale","Kabarole","Kalangala","Kampala","Kamuli","Kapchorwa","Kasese","Katakwi","Kibale","Kiboga","Kisoro","Kitgum","Kotido","Kumi","Lira","Luwero","Masaka","Masindi","Mbale","Mbarara","Moroto","Moyo","Mpigi","Mubende","Mukono","Nakasongola","Nebbi","Ntungamo","Pallisa","Rakai","Rukungiri","Sembabule","Soroti","Tororo"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".ug"],"translations":{"de":"Uganda","es":"Uganda","fr":"Uganda","ja":"ウガンダ","it":"Uganda"},"wiki":"http://en.wikipedia.org/wiki/uganda"} \ No newline at end of file +{"name":"Uganda","altSpellings":["UG","Republic of Uganda","Jamhuri ya Uganda"],"area":241550,"borders":["COD","KEN","RWA","SSD","TZA"],"callingCodes":["256"],"capital":"Kampala","capital_latlng":[0.317714,32.581354],"currencies":["UGX"],"demonym":"Ugandan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UGA","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]}}]},"ISO":{"alpha2":"UG","alpha3":"UGA"},"languages":["en","sw"],"latlng":[1,32],"nativeName":"Uganda","population":34856813,"provinces":["Adjumani","Apac","Arua","Bugiri","Bundibugyo","Bushenyi","Busia","Gulu","Hoima","Iganga","Jinja","Kabale","Kabarole","Kalangala","Kampala","Kamuli","Kapchorwa","Kasese","Katakwi","Kibale","Kiboga","Kisoro","Kitgum","Kotido","Kumi","Lira","Luwero","Masaka","Masindi","Mbale","Mbarara","Moroto","Moyo","Mpigi","Mubende","Mukono","Nakasongola","Nebbi","Ntungamo","Pallisa","Rakai","Rukungiri","Sembabule","Soroti","Tororo"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+03:00"],"tld":[".ug"],"translations":{"de":"Uganda","es":"Uganda","fr":"Uganda","ja":"ウガンダ","it":"Uganda"},"wiki":"http://en.wikipedia.org/wiki/uganda"} \ No newline at end of file diff --git a/countryinfo/data/ukraine.json b/countryinfo/data/ukraine.json index 64c94f5..a2cdece 100644 --- a/countryinfo/data/ukraine.json +++ b/countryinfo/data/ukraine.json @@ -1 +1 @@ -{"name":"Ukraine","altSpellings":["UA","Ukrayina"],"area":603700,"borders":["BLR","HUN","MDA","POL","ROU","RUS","SVK"],"callingCodes":["380"],"capital":"Kiev","currencies":["UAH"],"demonym":"Ukrainian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UKR","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]}}]},"ISO":{"alpha2":"UA","alpha3":"UKR"},"languages":["uk"],"latlng":[49,32],"nativeName":"Україна","population":42973696,"provinces":["Avtonomna Respublika Krym (Simferopol')","Cherkas'ka (Cherkasy)","Chernihivs'ka (Chernihiv)","Chernivets'ka (Chernivtsi)","Dnipropetrovs'ka (Dnipropetrovs'k)","Donets'ka (Donets'k)","Ivano-Frankivs'ka (Ivano-Frankivs'k)","Kharkivs'ka (Kharkiv)","Khersons'ka (Kherson)","Khmel'nyts'ka (Khmel'nyts'kyy)","Kirovohrads'ka (Kirovohrad)","Kyyiv","Kyyivs'ka (Kiev)","L'vivs'ka (L'viv)","Luhans'ka (Luhans'k)","Mykolayivs'ka (Mykolayiv)","Odes'ka (Odesa)","Poltavs'ka (Poltava)","Rivnens'ka (Rivne)","Sevastopol'","Sums'ka (Sumy)","Ternopil's'ka (Ternopil')","Vinnyts'ka (Vinnytsya)","Volyns'ka (Luts'k)","Zakarpats'ka (Uzhhorod)","Zaporiz'ka (Zaporizhzhya)","Zhytomyrs'ka (Zhytomyr)"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".ua"],"translations":{"de":"Ukraine","es":"Ucrania","fr":"Ukraine","ja":"ウクライナ","it":"Ucraina"},"wiki":"http://en.wikipedia.org/wiki/ukraine"} \ No newline at end of file +{"name":"Ukraine","altSpellings":["UA","Ukrayina"],"area":603700,"borders":["BLR","HUN","MDA","POL","ROU","RUS","SVK"],"callingCodes":["380"],"capital":"Kiev","capital_latlng":[50.450034,30.524136],"currencies":["UAH"],"demonym":"Ukrainian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UKR","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]}}]},"ISO":{"alpha2":"UA","alpha3":"UKR"},"languages":["uk"],"latlng":[49,32],"nativeName":"Україна","population":42973696,"provinces":["Avtonomna Respublika Krym (Simferopol')","Cherkas'ka (Cherkasy)","Chernihivs'ka (Chernihiv)","Chernivets'ka (Chernivtsi)","Dnipropetrovs'ka (Dnipropetrovs'k)","Donets'ka (Donets'k)","Ivano-Frankivs'ka (Ivano-Frankivs'k)","Kharkivs'ka (Kharkiv)","Khersons'ka (Kherson)","Khmel'nyts'ka (Khmel'nyts'kyy)","Kirovohrads'ka (Kirovohrad)","Kyyiv","Kyyivs'ka (Kiev)","L'vivs'ka (L'viv)","Luhans'ka (Luhans'k)","Mykolayivs'ka (Mykolayiv)","Odes'ka (Odesa)","Poltavs'ka (Poltava)","Rivnens'ka (Rivne)","Sevastopol'","Sums'ka (Sumy)","Ternopil's'ka (Ternopil')","Vinnyts'ka (Vinnytsya)","Volyns'ka (Luts'k)","Zakarpats'ka (Uzhhorod)","Zaporiz'ka (Zaporizhzhya)","Zhytomyrs'ka (Zhytomyr)"],"region":"Europe","subregion":"Eastern Europe","timezones":["UTC+02:00"],"tld":[".ua"],"translations":{"de":"Ukraine","es":"Ucrania","fr":"Ukraine","ja":"ウクライナ","it":"Ucraina"},"wiki":"http://en.wikipedia.org/wiki/ukraine"} \ No newline at end of file diff --git a/countryinfo/data/united_arab_emirates.json b/countryinfo/data/united_arab_emirates.json index 32bae66..edbfd47 100644 --- a/countryinfo/data/united_arab_emirates.json +++ b/countryinfo/data/united_arab_emirates.json @@ -1 +1 @@ -{"name":"United Arab Emirates","altSpellings":["AE","UAE"],"area":83600,"borders":["OMN","SAU"],"callingCodes":["971"],"capital":"Abu Dhabi","currencies":["AED"],"demonym":"Emirati","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARE","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}}]},"ISO":{"alpha2":"AE","alpha3":"ARE"},"languages":["ar"],"latlng":[24,54],"nativeName":"دولة الإمارات العربية المتحدة","population":9446000,"provinces":["'Ajman","Abu Zaby (Abu Dhabi)","Al Fujayrah","Ash Shariqah (Sharjah)","Dubayy (Dubai)","Ra's al Khaymah","Umm al Qaywayn"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04"],"tld":[".ae"],"translations":{"de":"Vereinigte Arabische Emirate","es":"Emiratos Árabes Unidos","fr":"Émirats arabes unis","ja":"アラブ首長国連邦","it":"Emirati Arabi Uniti"},"wiki":"http://en.wikipedia.org/wiki/united_arab_emirates"} \ No newline at end of file +{"name":"United Arab Emirates","altSpellings":["AE","UAE"],"area":83600,"borders":["OMN","SAU"],"callingCodes":["971"],"capital":"Abu Dhabi","capital_latlng":[24.474796,54.370576],"currencies":["AED"],"demonym":"Emirati","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ARE","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}}]},"ISO":{"alpha2":"AE","alpha3":"ARE"},"languages":["ar"],"latlng":[24,54],"nativeName":"دولة الإمارات العربية المتحدة","population":9446000,"provinces":["'Ajman","Abu Zaby (Abu Dhabi)","Al Fujayrah","Ash Shariqah (Sharjah)","Dubayy (Dubai)","Ra's al Khaymah","Umm al Qaywayn"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+04"],"tld":[".ae"],"translations":{"de":"Vereinigte Arabische Emirate","es":"Emiratos Árabes Unidos","fr":"Émirats arabes unis","ja":"アラブ首長国連邦","it":"Emirati Arabi Uniti"},"wiki":"http://en.wikipedia.org/wiki/united_arab_emirates"} \ No newline at end of file diff --git a/countryinfo/data/united_kingdom.json b/countryinfo/data/united_kingdom.json index d03ea76..5c50ada 100644 --- a/countryinfo/data/united_kingdom.json +++ b/countryinfo/data/united_kingdom.json @@ -1 +1 @@ -{"name":"United Kingdom","altSpellings":["GB","UK","Great Britain"],"area":242900,"borders":["IRL"],"callingCodes":["44"],"capital":"London","currencies":["GBP"],"demonym":"British","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GBR","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}}]},"ISO":{"alpha2":"GB","alpha3":"GBR"},"languages":["en"],"latlng":[54,-2],"nativeName":"United Kingdom","population":64105654,"provinces":["Barking and Dagenham","Barnet","Barnsley","Bath and North East Somerset","Bedfordshire","Bexley","Birmingham","Blackburn with Darwen","Blackpool","Bolton","Bournemouth","Bracknell Forest","Bradford","Brent","Brighton and Hove","Bromley","Buckinghamshire","Bury","Calderdale","Cambridgeshire","Camden","Cheshire","City of Bristol","City of Kingston upon Hull","City of London","Cornwall","Coventry","Croydon","Cumbria","Darlington","Derby","Derbyshire","Devon","Doncaster","Dorset","Dudley","Durham","Ealing","East Riding of Yorkshire","East Sussex","Enfield","Essex","Gateshead","Gloucestershire","Greenwich","Hackney","Halton","Hammersmith and Fulham","Hampshire","Haringey","Harrow","Hartlepool","Havering","Herefordshire","Hertfordshire","Hillingdon","Hounslow","Isle of Wight","Islington","Kensington and Chelsea","Kent","Kingston upon Thames","Kirklees","Knowsley","Lambeth","Lancashire","Leeds","Leicester","Leicestershire","Lewisham","Lincolnshire","Liverpool","Luton","Manchester","Medway","Merton","Middlesbrough","Milton Keynes","Newcastle upon Tyne","Newham","Norfolk","North East Lincolnshire","North Lincolnshire","North Somerset","North Tyneside","North Yorkshire","Northamptonshire","Northumberland","Nottingham","Nottinghamshire","Oldham","Oxfordshire","Peterborough","Plymouth","Poole","Portsmouth","Reading","Redbridge","Redcar and Cleveland","Richmond upon Thames","Rochdale","Rotherham","Rutland","Salford","Sandwell","Sefton","Sheffield","Shropshire","Slough","Solihull","Somerset","South Gloucestershire","South Tyneside","Southampton","Southend-on-Sea","Southwark","St. Helens","Staffordshire","Stockport","Stockton-on-Tees","Stoke-on-Trent","Suffolk","Sunderland","Surrey","Sutton","Swindon","Tameside","Telford and Wrekin","Thurrock","Torbay","Tower Hamlets","Trafford","Wakefield","Walsall","Waltham Forest","Wandsworth","Warrington","Warwickshire","West Berkshire","West Sussex","Westminster","Wigan","Wiltshire","Windsor and Maidenhead","Wirral","Wokingham","Wolverhampton","Worcestershire","York"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC−08:00","UTC−05:00","UTC−04:00","UTC−03:00","UTC−02:00","UTC","UTC+01:00","UTC+02:00","UTC+06:00"],"tld":[".uk"],"translations":{"de":"Vereinigtes Königreich","es":"Reino Unido","fr":"Royaume-Uni","ja":"イギリス","it":"Regno Unito"},"wiki":"http://en.wikipedia.org/wiki/united_kingdom"} \ No newline at end of file +{"name":"United Kingdom","altSpellings":["GB","UK","Great Britain"],"area":242900,"borders":["IRL"],"callingCodes":["44"],"capital":"London","capital_latlng":[51.507322,-0.127647],"currencies":["GBP"],"demonym":"British","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"GBR","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}}]},"ISO":{"alpha2":"GB","alpha3":"GBR"},"languages":["en"],"latlng":[54,-2],"nativeName":"United Kingdom","population":64105654,"provinces":["Barking and Dagenham","Barnet","Barnsley","Bath and North East Somerset","Bedfordshire","Bexley","Birmingham","Blackburn with Darwen","Blackpool","Bolton","Bournemouth","Bracknell Forest","Bradford","Brent","Brighton and Hove","Bromley","Buckinghamshire","Bury","Calderdale","Cambridgeshire","Camden","Cheshire","City of Bristol","City of Kingston upon Hull","City of London","Cornwall","Coventry","Croydon","Cumbria","Darlington","Derby","Derbyshire","Devon","Doncaster","Dorset","Dudley","Durham","Ealing","East Riding of Yorkshire","East Sussex","Enfield","Essex","Gateshead","Gloucestershire","Greenwich","Hackney","Halton","Hammersmith and Fulham","Hampshire","Haringey","Harrow","Hartlepool","Havering","Herefordshire","Hertfordshire","Hillingdon","Hounslow","Isle of Wight","Islington","Kensington and Chelsea","Kent","Kingston upon Thames","Kirklees","Knowsley","Lambeth","Lancashire","Leeds","Leicester","Leicestershire","Lewisham","Lincolnshire","Liverpool","Luton","Manchester","Medway","Merton","Middlesbrough","Milton Keynes","Newcastle upon Tyne","Newham","Norfolk","North East Lincolnshire","North Lincolnshire","North Somerset","North Tyneside","North Yorkshire","Northamptonshire","Northumberland","Nottingham","Nottinghamshire","Oldham","Oxfordshire","Peterborough","Plymouth","Poole","Portsmouth","Reading","Redbridge","Redcar and Cleveland","Richmond upon Thames","Rochdale","Rotherham","Rutland","Salford","Sandwell","Sefton","Sheffield","Shropshire","Slough","Solihull","Somerset","South Gloucestershire","South Tyneside","Southampton","Southend-on-Sea","Southwark","St. Helens","Staffordshire","Stockport","Stockton-on-Tees","Stoke-on-Trent","Suffolk","Sunderland","Surrey","Sutton","Swindon","Tameside","Telford and Wrekin","Thurrock","Torbay","Tower Hamlets","Trafford","Wakefield","Walsall","Waltham Forest","Wandsworth","Warrington","Warwickshire","West Berkshire","West Sussex","Westminster","Wigan","Wiltshire","Windsor and Maidenhead","Wirral","Wokingham","Wolverhampton","Worcestershire","York"],"region":"Europe","subregion":"Northern Europe","timezones":["UTC−08:00","UTC−05:00","UTC−04:00","UTC−03:00","UTC−02:00","UTC","UTC+01:00","UTC+02:00","UTC+06:00"],"tld":[".uk"],"translations":{"de":"Vereinigtes Königreich","es":"Reino Unido","fr":"Royaume-Uni","ja":"イギリス","it":"Regno Unito"},"wiki":"http://en.wikipedia.org/wiki/united_kingdom"} \ No newline at end of file diff --git a/countryinfo/data/united_states_of_america.json b/countryinfo/data/united_states_of_america.json index 2d47eac..c15bc3d 100644 --- a/countryinfo/data/united_states_of_america.json +++ b/countryinfo/data/united_states_of_america.json @@ -1 +1 @@ -{"name":"United States","altSpellings":["US","USA","United States of America"],"area":9629091,"borders":["CAN","MEX"],"callingCodes":["1"],"capital":"Washington D.C.","currencies":["USD","USN","USS"],"demonym":"American","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"USA","properties":{"name":"United States of America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]}}]},"ISO":{"alpha2":"US","alpha3":"USA"},"languages":["en"],"latlng":[38,-97],"nativeName":"United States","population":319259000,"provinces":["Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"],"region":"Americas","subregion":"Northern America","timezones":["UTC−12:00","UTC−11:00","UTC−10:00","UTC−09:00","UTC−08:00","UTC−07:00","UTC−06:00","UTC−05:00","UTC−04:00","UTC+10:00","UTC+12:00"],"tld":[".us"],"translations":{"de":"Vereinigte Staaten von Amerika","es":"Estados Unidos","fr":"États-Unis","ja":"アメリカ合衆国","it":"Stati Uniti D'America"},"wiki":"http://en.wikipedia.org/wiki/united_states_of_america"} \ No newline at end of file +{"name":"United States","altSpellings":["US","USA","United States of America"],"area":9629091,"borders":["CAN","MEX"],"callingCodes":["1"],"capital":"Washington D.C.","capital_latlng":[38.894986,-77.036571],"currencies":["USD","USN","USS"],"demonym":"American","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"USA","properties":{"name":"United States of America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]}}]},"ISO":{"alpha2":"US","alpha3":"USA"},"languages":["en"],"latlng":[38,-97],"nativeName":"United States","population":319259000,"provinces":["Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District of Columbia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"],"region":"Americas","subregion":"Northern America","timezones":["UTC−12:00","UTC−11:00","UTC−10:00","UTC−09:00","UTC−08:00","UTC−07:00","UTC−06:00","UTC−05:00","UTC−04:00","UTC+10:00","UTC+12:00"],"tld":[".us"],"translations":{"de":"Vereinigte Staaten von Amerika","es":"Estados Unidos","fr":"États-Unis","ja":"アメリカ合衆国","it":"Stati Uniti D'America"},"wiki":"http://en.wikipedia.org/wiki/united_states_of_america"} \ No newline at end of file diff --git a/countryinfo/data/uruguay.json b/countryinfo/data/uruguay.json index 9574a5c..7a5b652 100644 --- a/countryinfo/data/uruguay.json +++ b/countryinfo/data/uruguay.json @@ -1 +1 @@ -{"name":"Uruguay","altSpellings":["UY","Oriental Republic of Uruguay","República Oriental del Uruguay"],"area":181034,"borders":["ARG","BRA"],"callingCodes":["598"],"capital":"Montevideo","currencies":["UYI","UYU"],"demonym":"Uruguayan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"URY","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]}}]},"ISO":{"alpha2":"UY","alpha3":"URY"},"languages":["es"],"latlng":[-33,-56],"nativeName":"Uruguay","population":3404189,"provinces":["Artigas","Canelones","Cerro Largo","Colonia","Durazno","Flores","Florida","Lavalleja","Maldonado","Montevideo","Paysandu","Rio Negro","Rivera","Rocha","Salto","San Jose","Soriano","Tacuarembo","Treinta y Tres"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".uy"],"translations":{"de":"Uruguay","es":"Uruguay","fr":"Uruguay","ja":"ウルグアイ","it":"Uruguay"},"wiki":"http://en.wikipedia.org/wiki/uruguay"} \ No newline at end of file +{"name":"Uruguay","altSpellings":["UY","Oriental Republic of Uruguay","República Oriental del Uruguay"],"area":181034,"borders":["ARG","BRA"],"callingCodes":["598"],"capital":"Montevideo","capital_latlng":[-34.905904,-56.191357],"currencies":["UYI","UYU"],"demonym":"Uruguayan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"URY","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]}}]},"ISO":{"alpha2":"UY","alpha3":"URY"},"languages":["es"],"latlng":[-33,-56],"nativeName":"Uruguay","population":3404189,"provinces":["Artigas","Canelones","Cerro Largo","Colonia","Durazno","Flores","Florida","Lavalleja","Maldonado","Montevideo","Paysandu","Rio Negro","Rivera","Rocha","Salto","San Jose","Soriano","Tacuarembo","Treinta y Tres"],"region":"Americas","subregion":"South America","timezones":["UTC−03:00"],"tld":[".uy"],"translations":{"de":"Uruguay","es":"Uruguay","fr":"Uruguay","ja":"ウルグアイ","it":"Uruguay"},"wiki":"http://en.wikipedia.org/wiki/uruguay"} \ No newline at end of file diff --git a/countryinfo/data/uzbekistan.json b/countryinfo/data/uzbekistan.json index 3e91877..a358ed4 100644 --- a/countryinfo/data/uzbekistan.json +++ b/countryinfo/data/uzbekistan.json @@ -1 +1 @@ -{"name":"Uzbekistan","altSpellings":["UZ","Republic of Uzbekistan","O‘zbekiston Respublikasi","Ўзбекистон Республикаси"],"area":447400,"borders":["AFG","KAZ","KGZ","TJK","TKM"],"callingCodes":["998"],"capital":"Tashkent","currencies":["UZS"],"demonym":"Uzbekistani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UZB","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]}}]},"ISO":{"alpha2":"UZ","alpha3":"UZB"},"languages":["uz","ru"],"latlng":[41,64],"nativeName":"O‘zbekiston","population":30492800,"provinces":["Andijon Wiloyati","Bukhoro Wiloyati","Farghona Wiloyati","Jizzakh Wiloyati","Khorazm Wiloyati (Urganch)","Namangan Wiloyati","Nawoiy Wiloyati","Qashqadaryo Wiloyati (Qarshi)","Qoraqalpoghiston (Nukus)","Samarqand Wiloyati","Sirdaryo Wiloyati (Guliston)","Surkhondaryo Wiloyati (Termiz)","Toshkent Shahri","Toshkent Wiloyati"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".uz"],"translations":{"de":"Usbekistan","es":"Uzbekistán","fr":"Ouzbékistan","ja":"ウズベキスタン","it":"Uzbekistan"},"wiki":"http://en.wikipedia.org/wiki/uzbekistan"} \ No newline at end of file +{"name":"Uzbekistan","altSpellings":["UZ","Republic of Uzbekistan","O‘zbekiston Respublikasi","Ўзбекистон Республикаси"],"area":447400,"borders":["AFG","KAZ","KGZ","TJK","TKM"],"callingCodes":["998"],"capital":"Tashkent","capital_latlng":[41.312336,69.278708],"currencies":["UZS"],"demonym":"Uzbekistani","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"UZB","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]}}]},"ISO":{"alpha2":"UZ","alpha3":"UZB"},"languages":["uz","ru"],"latlng":[41,64],"nativeName":"O‘zbekiston","population":30492800,"provinces":["Andijon Wiloyati","Bukhoro Wiloyati","Farghona Wiloyati","Jizzakh Wiloyati","Khorazm Wiloyati (Urganch)","Namangan Wiloyati","Nawoiy Wiloyati","Qashqadaryo Wiloyati (Qarshi)","Qoraqalpoghiston (Nukus)","Samarqand Wiloyati","Sirdaryo Wiloyati (Guliston)","Surkhondaryo Wiloyati (Termiz)","Toshkent Shahri","Toshkent Wiloyati"],"region":"Asia","subregion":"Central Asia","timezones":["UTC+05:00"],"tld":[".uz"],"translations":{"de":"Usbekistan","es":"Uzbekistán","fr":"Ouzbékistan","ja":"ウズベキスタン","it":"Uzbekistan"},"wiki":"http://en.wikipedia.org/wiki/uzbekistan"} \ No newline at end of file diff --git a/countryinfo/data/vanuatu.json b/countryinfo/data/vanuatu.json index ee93f95..fcd0950 100644 --- a/countryinfo/data/vanuatu.json +++ b/countryinfo/data/vanuatu.json @@ -1 +1 @@ -{"name":"Vanuatu","altSpellings":["VU","Republic of Vanuatu","Ripablik blong Vanuatu","République de Vanuatu"],"area":12189,"borders":[],"callingCodes":["678"],"capital":"Port Vila","currencies":["VUV"],"demonym":"Ni-Vanuatu","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VUT","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]}}]},"ISO":{"alpha2":"VU","alpha3":"VUT"},"languages":["bi","en","fr"],"latlng":[-16,167],"nativeName":"Vanuatu","population":264652,"provinces":["Malampa","Penama","Sanma","Shefa","Tafea","Torba"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+11:00"],"tld":[".vu"],"translations":{"de":"Vanuatu","es":"Vanuatu","fr":"Vanuatu","ja":"バヌアツ","it":"Vanuatu"},"wiki":"http://en.wikipedia.org/wiki/vanuatu"} \ No newline at end of file +{"name":"Vanuatu","altSpellings":["VU","Republic of Vanuatu","Ripablik blong Vanuatu","République de Vanuatu"],"area":12189,"borders":[],"callingCodes":["678"],"capital":"Port Vila","capital_latlng":[-17.741497,168.315016],"currencies":["VUV"],"demonym":"Ni-Vanuatu","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VUT","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]}}]},"ISO":{"alpha2":"VU","alpha3":"VUT"},"languages":["bi","en","fr"],"latlng":[-16,167],"nativeName":"Vanuatu","population":264652,"provinces":["Malampa","Penama","Sanma","Shefa","Tafea","Torba"],"region":"Oceania","subregion":"Melanesia","timezones":["UTC+11:00"],"tld":[".vu"],"translations":{"de":"Vanuatu","es":"Vanuatu","fr":"Vanuatu","ja":"バヌアツ","it":"Vanuatu"},"wiki":"http://en.wikipedia.org/wiki/vanuatu"} \ No newline at end of file diff --git a/countryinfo/data/venezuela.json b/countryinfo/data/venezuela.json index dffcad3..6582bcc 100644 --- a/countryinfo/data/venezuela.json +++ b/countryinfo/data/venezuela.json @@ -1 +1 @@ -{"name":"Venezuela","altSpellings":["VE","Bolivarian Republic of Venezuela","República Bolivariana de Venezuela"],"area":916445,"borders":["BRA","COL","GUY"],"callingCodes":["58"],"capital":"Caracas","currencies":["VEF"],"demonym":"Venezuelan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VEN","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]}}]},"ISO":{"alpha2":"VE","alpha3":"VEN"},"languages":["es"],"latlng":[8,-66],"nativeName":"Venezuela","population":30206307,"provinces":["Amazonas","Anzoategui","Apure","Aragua","Barinas","Bolivar","Carabobo","Cojedes","Delta Amacuro","Dependencias Federales","Distrito Federal","Falcon","Guarico","Lara","Merida","Miranda","Monagas","Nueva Esparta","Portuguesa","Sucre","Tachira","Trujillo","Vargas","Yaracuy","Zulia"],"region":"Americas","subregion":"South America","timezones":["UTC−04:30"],"tld":[".ve"],"translations":{"de":"Venezuela","es":"Venezuela","fr":"Venezuela","ja":"ベネズエラ・ボリバル共和国","it":"Venezuela"},"wiki":"http://en.wikipedia.org/wiki/venezuela"} \ No newline at end of file +{"name":"Venezuela","altSpellings":["VE","Bolivarian Republic of Venezuela","República Bolivariana de Venezuela"],"area":916445,"borders":["BRA","COL","GUY"],"callingCodes":["58"],"capital":"Caracas","capital_latlng":[10.506098,-66.914602],"currencies":["VEF"],"demonym":"Venezuelan","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VEN","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]}}]},"ISO":{"alpha2":"VE","alpha3":"VEN"},"languages":["es"],"latlng":[8,-66],"nativeName":"Venezuela","population":30206307,"provinces":["Amazonas","Anzoategui","Apure","Aragua","Barinas","Bolivar","Carabobo","Cojedes","Delta Amacuro","Dependencias Federales","Distrito Federal","Falcon","Guarico","Lara","Merida","Miranda","Monagas","Nueva Esparta","Portuguesa","Sucre","Tachira","Trujillo","Vargas","Yaracuy","Zulia"],"region":"Americas","subregion":"South America","timezones":["UTC−04:30"],"tld":[".ve"],"translations":{"de":"Venezuela","es":"Venezuela","fr":"Venezuela","ja":"ベネズエラ・ボリバル共和国","it":"Venezuela"},"wiki":"http://en.wikipedia.org/wiki/venezuela"} \ No newline at end of file diff --git a/countryinfo/data/vietnam.json b/countryinfo/data/vietnam.json index 55d1d69..58326c0 100644 --- a/countryinfo/data/vietnam.json +++ b/countryinfo/data/vietnam.json @@ -1 +1 @@ -{"name":"Vietnam","altSpellings":["VN","Socialist Republic of Vietnam","Cộng hòa Xã hội chủ nghĩa Việt Nam"],"area":331212,"borders":["KHM","CHN","LAO"],"callingCodes":["84"],"capital":"Hanoi","currencies":["VND"],"demonym":"Vietnamese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VNM","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]}}]},"ISO":{"alpha2":"VN","alpha3":"VNM"},"languages":["vi"],"latlng":[16.16666666,107.83333333],"nativeName":"Việt Nam","population":89708900,"provinces":["An Giang","Ba Ria-Vung Tau","Bac Giang","Bac Kan","Bac Lieu","Bac Ninh","Ben Tre","Binh Dinh","Binh Duong","Binh Phuoc","Binh Thuan","Ca Mau","Can Tho","Cao Bang","Da Nang","Dac Lak","Dong Nai","Dong Thap","Gia Lai","Ha Giang","Ha Nam","Ha Noi","Ha Tay","Ha Tinh","Hai Duong","Hai Phong","Ho Chi Minh","Hoa Binh","Hung Yen","Khanh Hoa","Kien Giang","Kon Tum","Lai Chau","Lam Dong","Lang Son","Lao Cai","Long An","Nam Dinh","Nghe An","Ninh Binh","Ninh Thuan","Phu Tho","Phu Yen","Quang Binh","Quang Nam","Quang Ngai","Quang Ninh","Quang Tri","Soc Trang","Son La","Tay Ninh","Thai Binh","Thai Nguyen","Thanh Hoa","Thua Thien-Hue","Tien Giang","Tra Vinh","Tuyen Quang","Vinh Long","Vinh Phuc","Yen Bai"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".vn"],"translations":{"de":"Vietnam","es":"Vietnam","fr":"Viêt Nam","ja":"ベトナム","it":"Vietnam"},"wiki":"http://en.wikipedia.org/wiki/vietnam"} \ No newline at end of file +{"name":"Vietnam","altSpellings":["VN","Socialist Republic of Vietnam","Cộng hòa Xã hội chủ nghĩa Việt Nam"],"area":331212,"borders":["KHM","CHN","LAO"],"callingCodes":["84"],"capital":"Hanoi","capital_latlng":[21.02945,105.854444],"currencies":["VND"],"demonym":"Vietnamese","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"VNM","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]}}]},"ISO":{"alpha2":"VN","alpha3":"VNM"},"languages":["vi"],"latlng":[16.16666666,107.83333333],"nativeName":"Việt Nam","population":89708900,"provinces":["An Giang","Ba Ria-Vung Tau","Bac Giang","Bac Kan","Bac Lieu","Bac Ninh","Ben Tre","Binh Dinh","Binh Duong","Binh Phuoc","Binh Thuan","Ca Mau","Can Tho","Cao Bang","Da Nang","Dac Lak","Dong Nai","Dong Thap","Gia Lai","Ha Giang","Ha Nam","Ha Noi","Ha Tay","Ha Tinh","Hai Duong","Hai Phong","Ho Chi Minh","Hoa Binh","Hung Yen","Khanh Hoa","Kien Giang","Kon Tum","Lai Chau","Lam Dong","Lang Son","Lao Cai","Long An","Nam Dinh","Nghe An","Ninh Binh","Ninh Thuan","Phu Tho","Phu Yen","Quang Binh","Quang Nam","Quang Ngai","Quang Ninh","Quang Tri","Soc Trang","Son La","Tay Ninh","Thai Binh","Thai Nguyen","Thanh Hoa","Thua Thien-Hue","Tien Giang","Tra Vinh","Tuyen Quang","Vinh Long","Vinh Phuc","Yen Bai"],"region":"Asia","subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"tld":[".vn"],"translations":{"de":"Vietnam","es":"Vietnam","fr":"Viêt Nam","ja":"ベトナム","it":"Vietnam"},"wiki":"http://en.wikipedia.org/wiki/vietnam"} \ No newline at end of file diff --git a/countryinfo/data/wallis_and_futuna.json b/countryinfo/data/wallis_and_futuna.json index ed3ec2c..364910b 100644 --- a/countryinfo/data/wallis_and_futuna.json +++ b/countryinfo/data/wallis_and_futuna.json @@ -1 +1 @@ -{"name":"Wallis and Futuna","altSpellings":["WF","Territory of the Wallis and Futuna Islands","Territoire des îles Wallis et Futuna"],"area":142,"borders":[],"callingCodes":["681"],"capital":"Mata-Utu","currencies":["XPF"],"demonym":"Wallis and Futuna Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"WF","alpha3":"WLF"},"languages":["fr"],"latlng":[-13.3,-176.2],"nativeName":"Wallis et Futuna","population":13135,"provinces":["Alo","Sigave","Wallis"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".wf"],"translations":{"de":"Wallis und Futuna","es":"Wallis y Futuna","fr":"Wallis-et-Futuna","ja":"ウォリス・フツナ","it":"Wallis e Futuna"},"wiki":"http://en.wikipedia.org/wiki/wallis_and_futuna"} \ No newline at end of file +{"name":"Wallis and Futuna","altSpellings":["WF","Territory of the Wallis and Futuna Islands","Territoire des îles Wallis et Futuna"],"area":142,"borders":[],"callingCodes":["681"],"capital":"Mata-Utu","capital_latlng":[-13.282042,-176.174022],"currencies":["XPF"],"demonym":"Wallis and Futuna Islander","flag":"","geoJSON":{},"ISO":{"alpha2":"WF","alpha3":"WLF"},"languages":["fr"],"latlng":[-13.3,-176.2],"nativeName":"Wallis et Futuna","population":13135,"provinces":["Alo","Sigave","Wallis"],"region":"Oceania","subregion":"Polynesia","timezones":null,"tld":[".wf"],"translations":{"de":"Wallis und Futuna","es":"Wallis y Futuna","fr":"Wallis-et-Futuna","ja":"ウォリス・フツナ","it":"Wallis e Futuna"},"wiki":"http://en.wikipedia.org/wiki/wallis_and_futuna"} \ No newline at end of file diff --git a/countryinfo/data/western_sahara.json b/countryinfo/data/western_sahara.json index 6911b15..491f7a3 100644 --- a/countryinfo/data/western_sahara.json +++ b/countryinfo/data/western_sahara.json @@ -1 +1 @@ -{"name":"Western Sahara","altSpellings":["EH","Taneẓroft Tutrimt"],"area":266000,"borders":["DZA","MRT","MAR"],"callingCodes":["212"],"capital":"El Aaiún","currencies":["MAD","DZD","MRO"],"demonym":"Sahrawi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ESH","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]}}]},"ISO":{"alpha2":"EH","alpha3":"ESH"},"languages":["es"],"latlng":[24.5,-13],"nativeName":"الصحراء الغربية","population":586000,"provinces":["Western Sahara"],"region":"Africa","subregion":"Northern Africa","timezones":null,"tld":[".eh"],"translations":{"de":"Westsahara","es":"Sahara Occidental","fr":"Sahara Occidental","ja":"西サハラ","it":"Sahara Occidentale"},"wiki":"http://en.wikipedia.org/wiki/western_sahara"} \ No newline at end of file +{"name":"Western Sahara","altSpellings":["EH","Taneẓroft Tutrimt"],"area":266000,"borders":["DZA","MRT","MAR"],"callingCodes":["212"],"capital":"El Aaiún","capital_latlng":[27.154512,-13.195392],"currencies":["MAD","DZD","MRO"],"demonym":"Sahrawi","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ESH","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]}}]},"ISO":{"alpha2":"EH","alpha3":"ESH"},"languages":["es"],"latlng":[24.5,-13],"nativeName":"الصحراء الغربية","population":586000,"provinces":["Western Sahara"],"region":"Africa","subregion":"Northern Africa","timezones":null,"tld":[".eh"],"translations":{"de":"Westsahara","es":"Sahara Occidental","fr":"Sahara Occidental","ja":"西サハラ","it":"Sahara Occidentale"},"wiki":"http://en.wikipedia.org/wiki/western_sahara"} \ No newline at end of file diff --git a/countryinfo/data/yemen.json b/countryinfo/data/yemen.json index 80d20f9..9447bd6 100644 --- a/countryinfo/data/yemen.json +++ b/countryinfo/data/yemen.json @@ -1 +1 @@ -{"name":"Yemen","altSpellings":["YE","Yemeni Republic","al-Jumhūriyyah al-Yamaniyyah"],"area":527968,"borders":["OMN","SAU"],"callingCodes":["967"],"capital":"Sana'a","currencies":["YER"],"demonym":"Yemeni","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"YEM","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]}}]},"ISO":{"alpha2":"YE","alpha3":"YEM"},"languages":["ar"],"latlng":[15,48],"nativeName":"اليَمَن","population":25956000,"provinces":["'Adan","'Ataq","Abyan","Al Bayda'","Al Hudaydah","Al Jawf","Al Mahrah","Al Mahwit","Dhamar","Hadhramawt","Hajjah","Ibb","Lahij","Ma'rib","Sa'dah","San'a'","Ta'izz"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".ye"],"translations":{"de":"Jemen","es":"Yemen","fr":"Yémen","ja":"イエメン","it":"Yemen"},"wiki":"http://en.wikipedia.org/wiki/yemen"} \ No newline at end of file +{"name":"Yemen","altSpellings":["YE","Yemeni Republic","al-Jumhūriyyah al-Yamaniyyah"],"area":527968,"borders":["OMN","SAU"],"callingCodes":["967"],"capital":"Sana'a","capital_latlng":[15.353857,44.205884],"currencies":["YER"],"demonym":"Yemeni","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"YEM","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]}}]},"ISO":{"alpha2":"YE","alpha3":"YEM"},"languages":["ar"],"latlng":[15,48],"nativeName":"اليَمَن","population":25956000,"provinces":["'Adan","'Ataq","Abyan","Al Bayda'","Al Hudaydah","Al Jawf","Al Mahrah","Al Mahwit","Dhamar","Hadhramawt","Hajjah","Ibb","Lahij","Ma'rib","Sa'dah","San'a'","Ta'izz"],"region":"Asia","subregion":"Western Asia","timezones":["UTC+03:00"],"tld":[".ye"],"translations":{"de":"Jemen","es":"Yemen","fr":"Yémen","ja":"イエメン","it":"Yemen"},"wiki":"http://en.wikipedia.org/wiki/yemen"} \ No newline at end of file diff --git a/countryinfo/data/zambia.json b/countryinfo/data/zambia.json index c504d1a..fa58ebc 100644 --- a/countryinfo/data/zambia.json +++ b/countryinfo/data/zambia.json @@ -1 +1 @@ -{"name":"Zambia","altSpellings":["ZM","Republic of Zambia"],"area":752612,"borders":["AGO","BWA","COD","MWI","MOZ","NAM","TZA","ZWE"],"callingCodes":["260"],"capital":"Lusaka","currencies":["ZMK"],"demonym":"Zambian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZMB","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]}}]},"ISO":{"alpha2":"ZM","alpha3":"ZMB"},"languages":["en"],"latlng":[-15,30],"nativeName":"Zambia","population":15023315,"provinces":["Central","Copperbelt","Eastern","Luapula","Lusaka","North-Western","Northern","Southern","Western"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".zm"],"translations":{"de":"Sambia","es":"Zambia","fr":"Zambie","ja":"ザンビア","it":"Zambia"},"wiki":"http://en.wikipedia.org/wiki/zambia"} \ No newline at end of file +{"name":"Zambia","altSpellings":["ZM","Republic of Zambia"],"area":752612,"borders":["AGO","BWA","COD","MWI","MOZ","NAM","TZA","ZWE"],"callingCodes":["260"],"capital":"Lusaka","capital_latlng":[-15.416449,28.282154],"currencies":["ZMK"],"demonym":"Zambian","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZMB","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]}}]},"ISO":{"alpha2":"ZM","alpha3":"ZMB"},"languages":["en"],"latlng":[-15,30],"nativeName":"Zambia","population":15023315,"provinces":["Central","Copperbelt","Eastern","Luapula","Lusaka","North-Western","Northern","Southern","Western"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".zm"],"translations":{"de":"Sambia","es":"Zambia","fr":"Zambie","ja":"ザンビア","it":"Zambia"},"wiki":"http://en.wikipedia.org/wiki/zambia"} \ No newline at end of file diff --git a/countryinfo/data/zimbabwe.json b/countryinfo/data/zimbabwe.json index 2590980..a3bb892 100644 --- a/countryinfo/data/zimbabwe.json +++ b/countryinfo/data/zimbabwe.json @@ -1 +1 @@ -{"name":"Zimbabwe","altSpellings":["ZW","Republic of Zimbabwe"],"area":390757,"borders":["BWA","MOZ","ZAF","ZMB"],"callingCodes":["263"],"capital":"Harare","currencies":["USD"],"demonym":"Zimbabwean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZWE","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]}}]},"ISO":{"alpha2":"ZW","alpha3":"ZWE"},"languages":["en","sn","nd"],"latlng":[-20,30],"nativeName":"Zimbabwe","population":13061239,"provinces":["Bulawayo","Harare","ManicalandMashonaland Central","Mashonaland East","Mashonaland"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".zw"],"translations":{"de":"Simbabwe","es":"Zimbabue","fr":"Zimbabwe","ja":"ジンバブエ","it":"Zimbabwe"},"wiki":"http://en.wikipedia.org/wiki/zimbabwe"} \ No newline at end of file +{"name":"Zimbabwe","altSpellings":["ZW","Republic of Zimbabwe"],"area":390757,"borders":["BWA","MOZ","ZAF","ZMB"],"callingCodes":["263"],"capital":"Harare","capital_latlng":[-17.831773,31.045686],"currencies":["USD"],"demonym":"Zimbabwean","flag":"","geoJSON":{"type":"FeatureCollection","features":[{"type":"Feature","id":"ZWE","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]}}]},"ISO":{"alpha2":"ZW","alpha3":"ZWE"},"languages":["en","sn","nd"],"latlng":[-20,30],"nativeName":"Zimbabwe","population":13061239,"provinces":["Bulawayo","Harare","ManicalandMashonaland Central","Mashonaland East","Mashonaland"],"region":"Africa","subregion":"Eastern Africa","timezones":["UTC+02:00"],"tld":[".zw"],"translations":{"de":"Simbabwe","es":"Zimbabue","fr":"Zimbabwe","ja":"ジンバブエ","it":"Zimbabwe"},"wiki":"http://en.wikipedia.org/wiki/zimbabwe"} \ No newline at end of file diff --git a/setup.py b/setup.py index a0ae2cd..63d87f7 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='countryinfo', - version='0.1.1', + version='0.1.2', python_requires='>3.0.0', packages = find_packages( include=['countryinfo'],