4

我正在使用 Geopy。我收到以下代码错误。

我使用与https://code.google.com/p/geopy/wiki/ReverseGeocoding上相同的代码

from geopy import geocoders

g = geocoders.GeoNames()
(place, point) = g.geocode("Palo Alto, CA 94306")
print place
>> "Palo Alto, US 94306"
print point
>> (37.418008999999998, -122.127375)

(new_place,new_point) = g.reverse(point)
print new_place
>> 3998 Ventura Ct, Palo Alto, US 94306 
print new_point
>> (37.417850000000001, -122.12793000000001)

工作正常,直到打印点。发生错误g.reverse(point)

Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "C:\Python27\lib\site-packages\geopy\geocoders\base.py", line 9, in reverse
    raise NotImplementedError
NotImplementedError

有什么建议么?

4

1 回答 1

0

geopy 0.97 上可用的反向地理编码。您可以从https://github.com/geopy/geopy下载并安装新版本的 geopy或克隆 git 存储库。

git clone https://github.com/geopy/geopy.git
cd geopy
sudo python setup.py install

如果您想下载并安装 Windows,您可以从https://github.com/geopy/geopy/archive/release-0.97.zip获取最新版本

解压并

cd geopy-release-0.97
python setup.py install

要将查询地理定位到地址和坐标:

>>> from geopy.geocoders import GoogleV3
>>> geolocator = GoogleV3()
>>> address, (latitude, longitude) = geolocator.geocode("175 5th Avenue NYC")
>>> print(address, latitude, longitude)
175 5th Avenue, New York, NY 10010, USA 40.7410262 -73.9897806

要找到对应于一组坐标的地址:

>>> from geopy.geocoders import GoogleV3
>>> geolocator = GoogleV3()
>>> address, (latitude, longitude) = geolocator.reverse("40.752067, -73.977578")
>>> print(address, latitude, longitude)
77 East 42nd Street, New York, NY 10017, USA 40.7520802 -73.9775683

--

于 2014-01-08T09:38:19.200 回答