2013-04-26 70 views
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 

有什么建议吗?

+0

也被张贴在gis.se:http://gis.stackexchange.com/questions/59216/geopy-error-with-reverse-geocoding – 2013-05-08 15:08:27

回答

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 

-