I am trying to get elevation data set along a route using Google maps API python client. When i request for a thousand coordinates, after a certain limit, an exception is raised.
for i in range(1000):
eljson = gmaps.elevation(list_coordinates[i])
**raise googlemaps.exceptions.Timeout()**
Is it because I'm exceeding usage of 2500 api requests or the rate of requests is high and have to slow down the requests per second ?