Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

capital_latlng #18

Merged
merged 4 commits into from
May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -83,6 +84,10 @@ country.info()
'borders': [],
'callingCodes': ['65'],
'capital': 'Singapore',
'capital_latlng': [
1.357107,
103.819499
],
'currencies': ['SGD'],
'demonym': 'Singaporean',
'flag': '',
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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': '',
Expand Down Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ APIs
- `.borders() <#borders>`__
- `.calling\_codes() <#calling_codes>`__
- `.capital() <#capital>`__
- `.capital_latlng() <#capital_latlng>`__
- `.currencies() <#currencies>`__
- `.demonym() <#demonym>`__
- `.geojson()\` <#geo_json>`__
Expand Down Expand Up @@ -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()
~~~~~~~~~~~~~

Expand Down Expand Up @@ -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': '',
Expand Down
11 changes: 11 additions & 0 deletions countryinfo/countryinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion countryinfo/data/afghanistan.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
2 changes: 1 addition & 1 deletion countryinfo/data/albania.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
2 changes: 1 addition & 1 deletion countryinfo/data/algeria.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
2 changes: 1 addition & 1 deletion countryinfo/data/american_samoa.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
Loading