How do i do geocoding in a loop without getting the OVER QUERY LIMIT
Hi I have a program wherein I need to perform indefinite number of geocodings (usually between 20-200)开发者_Python百科 and store the address in an array, however when I am doing geocoding in a loop I get Over query limit error. How do i get around this
No one here is likely to give you a strategy to overcome this limitation. The correct answer is that you need to cache these locally. If that means you have 200 items then it may take you a day or two to generate the cache, but you need to re-implement your program in a way that it only requests a geocode from Google in the event that it is not already cached locally.
HI I tried doing it on my friend's website and it worked .... I guess googles per second limit is good enough to handle loops ...... i think i was out of my 2500 queries per day limit
精彩评论