Created
February 2, 2020 01:24
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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