Open petersamoaa opened 5 years ago
When I run your function reverse_geocode to get the geocode_data from latlng as df['geocode_data'] = df['latlng'].map(reverse_geocode) all the results of geocode_data are emplty, which mean that there is no returned object.
df['geocode_data'] = df['latlng'].map(reverse_geocode)
The Google Maps API changed in recent years and you need to pass an API key now: https://developers.google.com/maps/documentation/geocoding/get-api-key
When I run your function reverse_geocode to get the geocode_data from latlng as
df['geocode_data'] = df['latlng'].map(reverse_geocode)
all the results of geocode_data are emplty, which mean that there is no returned object.