Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. from geopy.geocoders import Nominatim
  2. geolocator = Nominatim()
  3. location = geolocator.geocode("2550 3rd Avenue Seattle")
  4. print(location.address)
  5. print((location.latitude, location.longitude))
  6.  
  7. # Output
  8. # 2550, 3rd Avenue, Belltown, Seattle, King County, Washington, 98121, United States of America
  9. # (47.6165771, -122.3473058)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement