Geopy Returns HTTP 错误 400:错误请求
Geopy Returns HTTP Error 400: Bad Request
我正在使用 geopy 包来获取位置地理编码,但总是 运行 HTTP Error 400: Bad Request
。
下面是我的代码,遵循官方文档https://geopy.readthedocs.io/en/stable/:
from geopy.geocoders import ArcGIS
geolocator = ArcGIS(scheme="http")
loc_home = geolocator.geocode("175 5th Avenue NYC")
错误如下:
geopy.exc.GeocoderQueryError: HTTP Error 400: Bad Request
请提前帮助和感谢!
您需要使用 https
方案,我猜 http
被 ArcGIS 阻止了。
from geopy.geocoders import ArcGIS
geolocator = ArcGIS(scheme="https")
geolocator.geocode("175 5th Avenue NYC")
#Location(175 5th Ave, New York, 10010, (40.741110006692395, -73.98968797828522, 0.0))
我正在使用 geopy 包来获取位置地理编码,但总是 运行 HTTP Error 400: Bad Request
。
下面是我的代码,遵循官方文档https://geopy.readthedocs.io/en/stable/:
from geopy.geocoders import ArcGIS
geolocator = ArcGIS(scheme="http")
loc_home = geolocator.geocode("175 5th Avenue NYC")
错误如下:
geopy.exc.GeocoderQueryError: HTTP Error 400: Bad Request
请提前帮助和感谢!
您需要使用 https
方案,我猜 http
被 ArcGIS 阻止了。
from geopy.geocoders import ArcGIS
geolocator = ArcGIS(scheme="https")
geolocator.geocode("175 5th Avenue NYC")
#Location(175 5th Ave, New York, 10010, (40.741110006692395, -73.98968797828522, 0.0))