有没有办法从 pycountry 库访问州名?
Is there a way to access state names from pycountry library?
假设我想将州名称转换为三个字母的国家/地区代码,使用
pycountry
库,有没有办法实现?
例如(贝龙 -> 捷克,法里亚布 -> AFG)
您可以获得完整地址,即 long/lat/city/countryname 使用 geopy
:
from geopy import geocoders
Google-API-KEY = "xxx-xxxx-xxxxxxxxx-xxxxx"
gn = geocoders.GoogleV3(Google-API-KEY)
place, (lat, lng) = gn.geocode("Beroun")
print(place)
输出:
266 01 Beroun, Czechia
获得国家/地区名称后,您可以使用 pycountry
:
获取其缩写
import pycountry
user_input = 'Czechia'
mapping = {country.name: country.alpha_2 for country in pycountry.countries}
print(mapping.get(user_input))
输出:
CZ
现在你知道了,对于一个州来说,它是国家和它的缩写。如果您想要 state-country
的键值对,请创建州及其国家/地区之外的字典
可能是这样的:
state_country = {'Beroun': 'CZ'}
print(state_country)
输出:
{'Beroun': 'CZ'}
您可以通过以下方式实现:
alpha2 = pycountry.subdivisions.lookup("Beroun").country_code # "CZ"
# If you're looking for alpha_3:
pycountry.countries.get(alpha_2=alpha2).alpha_3 # "CZE"
但是,您必须注意不明确的位置,例如美国州 "Montana"
pycountry.subdivisions.lookup("Montana").country_code # BG
假设我想将州名称转换为三个字母的国家/地区代码,使用
pycountry
库,有没有办法实现?
例如(贝龙 -> 捷克,法里亚布 -> AFG)
您可以获得完整地址,即 long/lat/city/countryname 使用 geopy
:
from geopy import geocoders
Google-API-KEY = "xxx-xxxx-xxxxxxxxx-xxxxx"
gn = geocoders.GoogleV3(Google-API-KEY)
place, (lat, lng) = gn.geocode("Beroun")
print(place)
输出:
266 01 Beroun, Czechia
获得国家/地区名称后,您可以使用 pycountry
:
import pycountry
user_input = 'Czechia'
mapping = {country.name: country.alpha_2 for country in pycountry.countries}
print(mapping.get(user_input))
输出:
CZ
现在你知道了,对于一个州来说,它是国家和它的缩写。如果您想要 state-country
可能是这样的:
state_country = {'Beroun': 'CZ'}
print(state_country)
输出:
{'Beroun': 'CZ'}
您可以通过以下方式实现:
alpha2 = pycountry.subdivisions.lookup("Beroun").country_code # "CZ"
# If you're looking for alpha_3:
pycountry.countries.get(alpha_2=alpha2).alpha_3 # "CZE"
但是,您必须注意不明确的位置,例如美国州 "Montana"
pycountry.subdivisions.lookup("Montana").country_code # BG