Skip to content

Instantly share code, notes, and snippets.

@Chico-Chen
Created April 5, 2021 03:06
Show Gist options
  • Save Chico-Chen/e4b097008fdd24fcd9e6e9aab7e3be2d to your computer and use it in GitHub Desktop.
Save Chico-Chen/e4b097008fdd24fcd9e6e9aab7e3be2d to your computer and use it in GitHub Desktop.
def nearby_airport(conn, city, distance, maxHops):
#get geo info from input city
geolocator = Nominatim(user_agent="hackathon")
location = geolocator.geocode(city)
if not location:
st.sidebar.error("City not found!")
return
lat = location.latitude
lng = location.longitude
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment