我正在尝试遍历我拥有的地址列表(街道名称、城市、州、邮政编码)以获得经度和纬度
for address in addresses:
g = geolocator.geocode(address)
print(g.address)
print((g.latitude, g.longitude))
LatLong.append((g.latitude, g.longitude))
当我运行此代码时,我收到列表中第一个地址的 long 和 lat,但随后得到:
AttributeError: 'NoneType' object has no attribute 'address'
非常感谢任何帮助。