我有xml的地址列表,我正在尝试迭代它们并使用geopy提取信息(即:lat,lon,distance等..)但我不断收到此错误:AttributeError:'NoneType '对象没有属性'地址'。 如果有人有任何想法,请提供代码:
import xml.etree.ElementTree as et
import urllib, json
from geopy.geocoders import Nominatim
geolocator = Nominatim()
root = et.parse('data.xml').getroot()
for child in root:
adress = child.find('adress').text + ' beer sheva'
location = geolocator.geocode(adress)
print location.address # i'm trying to acces some information here.
以及xml文件的示例:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ShelterInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Shelter>
<adress>אחד העם 21</adress>
<code>1 - א</code>
<neighborhood>א</neighborhood>
</Shelter>
<Shelter>
<adress>13 שלח</adress>
<code>10 - א</code>
<neighborhood>א</neighborhood>
</Shelter>
<Shelter>
<adress>ביאליק</adress>
<code>11 - א</code>
<neighborhood>א</neighborhood>
</Shelter>
你可以告诉地址是希伯来语,但它不应该造成问题。对于第一个地址一切正常,但后来我得到了错误。我猜这与迭代xml文件的方式有关,有什么想法吗?
非常有责任!
答案 0 :(得分:0)
首先,我会用这些来处理你的TimedOut错误,而不是Nominatim。
from geopy import geocoders
from geopy.exc import GeocoderTimedOut
同时注册API key with Google Developers Console。 它限制您每天2,500次查询,但这不应该是您的262地址的问题。完成后,您可以非常简单地使用以下内容进行地理编码。
g = geocoders.GoogleV3(api_key='yourApiKeyHere')
location = g.geocode(address, timeout=10)
print(location.address)
或者您也可以单独查看经度和纬度。
print(location.longitude, location.latitude)
这个版本比Nomatims更好地处理不正确的数据,但你仍然应该将所有内容放入一些try / except块中以确保。所以你的最终代码看起来应该是这样的。
g = geocoders.GoogleV3(api_key='yourApiKeyHere')
try:
location = g.geocode(address, timeout=10)
print(location.address)
except AttributeError:
print("Problem with data or cannot Geocode."
except GeocoderTimedOut:
# possibly use recursion to have it run until it no longer runs into a timeout error
希望它有所帮助!干杯!