City Location
Sat 17 May 2025
title: "City Location" author: "Raja CSP Raman" date: 2019-05-07 description: "-" type: technical_note draft: false
from geopy.geocoders import Nominatim
geoloc = Nominatim(user_agent="rajarcsp", format_string="%s, Toronto ON")
address, (lat, long) = geoloc.geocode("26, Spadina Road")
address
'Spadina Road, The Annex, University—Rosedale, Old Toronto, Toronto, Ontario, M5R 2X3, Canada'
Score: 5
Category: geopandas