我剛開始使用GeoPy。我需要將給定的位置轉換爲經度和緯度。但是,我收到GeocoderQuotaExceeded錯誤。我只是按照文檔中給出的例子。任何幫助將不勝感激。GeoPy:GeocoderQuotaExceeded error
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
這發生在第一個請求本身上。我沒有提出任何其他請求。這是我第一次使用該應用程序。
這意味着您已用完Google的配額。你有沒有設置你自己的Api密鑰,並檢查你沒有超過你的津貼?我假設它使用[此服務隱藏](https://developers.google.com/maps/documentation/geocoding/#Limits)...注意:如果有其他人使用相同的公共IP使用服務(Universitty,同樣的公司等),而且你沒有使用API密鑰,這可能會導致你獲得2500以內的免費使用費。 – Basic
@Basic謝謝你的問題。你是否願意將此添加爲答案,以便我可以upvote? – Manoj
完成。感謝和高興,我可以幫助 – Basic