답변

답변

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  


https://stackoverflow.com/a/20991832/2509803

답글 남기기

이메일 주소를 발행하지 않을 것입니다. 필수 항목은 *(으)로 표시합니다