我刚开始使用 GeoPy。我需要将给定的位置转换为纬度和经度。但是我收到了 GeocoderQuotaExceeded 错误。我只是按照文档中给出的示例进行操作。任何帮助将不胜感激。
from geopy.geocoders import GoogleV3
geolocator = GoogleV3()
address, (latitude, longitude) = geolocator.geocode("175 5th Avenue NYC")
GeocoderQuotaExceeded: The given key has gone over the requests limit in the 24 hour period or has submitted too many requests in too short a period of time
这发生在第一个请求本身上。我从来没有提出任何其他要求。这是我第一次使用该应用程序。