我正在寻找一个寻找纬度和经度的套餐。我找到了LatLon,但在python 3及更高版本中不支持。 任何人都可以告诉我有没有其他包我可以通过它来计算纬度和经度
答案 0 :(得分:0)
我认为GeoPy已经做到了。
你到底想要做什么呢?它有助于获得更好的答案
阅读完评论后,您可以尝试PyGeocoder -
from pygeocoder import Geocoder
location = Geocoder.reverse_geocode(12.9716,77.5946)
print("City:",location.city)
print("Country:",location.country)
City: Bangalore Country: India