0

我正在使用以下函数将邮政编码转换为地理坐标并将其附加到源数据帧(使用由 Bing maps api 提供支持的地理编码器)

我的问题是,我怎样才能修改它来做相反的事情。我想提供纬度和经度,并返回邮政编码。


def get_lats_longs(df): 

    lat_lng_coords = None
    # create lists to store our new lats and longs
    lats = []
    longs=[]
    #loop through our dataframe and look up the lat/long of each postal code
    for index, row in df.iterrows():
        postal_code=row[0]
        # loop until you get the coordinates
        lat_lng_coords = None
        while(lat_lng_coords is None):
            g = geocoder.bing('{}, Toronto, Ontario'.format(postal_code),key=bing_key)
            lat_lng_coords = g.latlng

        lats.append(lat_lng_coords[0])
        longs.append(lat_lng_coords[1])

    df['Latitude'] = lats
    df['Longitude'] = longs
    return df

提前致谢

4

1 回答 1

0

来自https://geocoder.readthedocs.io/providers/Bing.html#reverse-geocoding

g = geocoder.google([45.15, -75.14], method='reverse')
print(g.postal)
于 2020-06-07T01:09:13.800 回答