Skip to content

Instantly share code, notes, and snippets.

@BaderSZ
Created February 2, 2020 01:24
Show Gist options
  • Save BaderSZ/d2c50ba65fb631c471a7e28e335d7f0b to your computer and use it in GitHub Desktop.
Save BaderSZ/d2c50ba65fb631c471a7e28e335d7f0b to your computer and use it in GitHub Desktop.
Get and print coordinates of a location or city via python geopy. Includes raw JSON
# CC0 Bader Zaidan, 2020
# Call via: $ python get_coordinates.py CITY,COUNTRY
import geopy
import sys
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="ChangeMe")
coord = geolocator.geocode(sys.argv[1])
print(f"lat: {coord.latitude}")
print(f"lon: {coord.longitude}")
# Full location name via x.address
# Print point via x.point
# Full data as json via x.raw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment