查询Nominatim时如何支持“城镇”和“城市”?

时间:2018-08-27 11:37:55

标签: python dictionary geojson

使用Nominatim进行反向地理编码似乎会根据位置的大小返回“城镇”或“城市”。

import geojson
from geopy.geocoders import Nominatim

location = "48.84837905, 2.28229522311902"
geolocator = Nominatim(user_agent="my-application",timeout=3)
location = geolocator.reverse(location)
print(location.raw)
#Sometimes "town", sometimes "city"
##print(location.raw['address']['town'])
##print(location.raw['address']['city'])

处理这两种情况的好方法是什么?

谢谢。

1 个答案:

答案 0 :(得分:1)

这正是try-except的用途:

try:
    print(location.raw['address']['town'])
except KeyError:
    print(location.raw['address']['city'])

替代

一些有性能意识的人会说“但是试一试很昂贵”。

您可以使用其他一些替代方法:

  • if 'town' in location.raw['address']: ... else: ...
  • location.raw['address'].get('town', location.raw['address'].get('city'))

每种方法都有其自身的优点和缺点。例如,.get并不懒惰。 location.raw['address'].get('city')将    在'town'被查找之前进行评估,因此实际上    浪费和适得其反。 if-else方法(取决于使用方式)可能需要对密钥之一进行两次哈希处理。

我认为将更通用的密钥放在try块中就足够了。

让我们做一些测试:

from timeit import Timer
from random import choice

list_of_dicts = [{choice(('town', 'city')): 1} for _ in range(2000)]

def try_except():
    for d in list_of_dicts:
        try:
            d['town']
        except KeyError:
            d['city']

def if_else():
    for d in list_of_dicts:
        if 'town' in d:
            d['town']
        else:
            d['city']

def get():
    for d in list_of_dicts:
        d.get('town', d.get('city'))


print(min(Timer(try_except).repeat(10, 10)))
print(min(Timer(if_else).repeat(10, 10)))
print(min(Timer(get).repeat(10, 10)))

此输出

0.0053282611981659705
0.0018278721105344786
0.00536558375274554

表示在2000个字典的示例中,if-else是最快的(即使它需要对其中一个键进行两次哈希处理),而try-exceptget大约是一样。