为什么 Arcgis 将我的地址放在海中?
Why is Arcgis putting my address out in the sea?
我正在按照这里的教程进行操作:https://developers.arcgis.com/python/guide/using-the-geocode-function/
我只是想获取商店的经度和纬度。
from arcgis.geocoding import geocode
from arcgis import GIS
gis = GIS()
single_line_address = "20 Sexton St, Limerick, Ireland"
geocode(single_line_address)[0]['location']
这表明我的位置在塞舌尔,但我应该在爱尔兰。
我做错了什么?
输出:
{'x': -8.621920984527977, 'y': 52.6602769888287}
X是经度,y是纬度。所以坐标是正确的,只需交换它们:https://www.google.com/maps/search/?api=1&query=52.6602769888287,-8.621920984527977
我正在按照这里的教程进行操作:https://developers.arcgis.com/python/guide/using-the-geocode-function/
我只是想获取商店的经度和纬度。
from arcgis.geocoding import geocode
from arcgis import GIS
gis = GIS()
single_line_address = "20 Sexton St, Limerick, Ireland"
geocode(single_line_address)[0]['location']
这表明我的位置在塞舌尔,但我应该在爱尔兰。
我做错了什么?
输出:
{'x': -8.621920984527977, 'y': 52.6602769888287}
X是经度,y是纬度。所以坐标是正确的,只需交换它们:https://www.google.com/maps/search/?api=1&query=52.6602769888287,-8.621920984527977