Geopy: catch timeout error

前端 未结 3 1533
难免孤独
难免孤独 2020-12-09 03:22

I am using geopy to geocode some addresses and I want to catch the timeout errors and print them out so I can do some quality control on the input. I am putting the geocode

相关标签:
3条回答
  • 2020-12-09 04:06

    You may be experiencing this problem because you tried to request this address multiple times and they temporarily blocked you or slowed you down because of their usage policy. It states no more requests than one per second and that you should cache your results. I ran into this problem and you have a couple solutions. If you don't want to change your code much you can get a Google API key that you can use for something like 2500 requests/day for free or you can cache your results. Because I was already using DynamoDB on AWS for my problem I went ahead and just created a table that I cache my results in. Here is the gist of my code.

    0 讨论(0)
  • 2020-12-09 04:11

    I dealt with the Same Problem for so many days this is my code:

    geolocator = Nominatim(user_agent="ny_explorer")
    location = geolocator.geocode(address_venue)
    

    ERROR Service timed out

    solution: Add a new attribute that declares the timeout:

    location = geolocator.geocode(address_venue,timeout=10000)
    
    0 讨论(0)
  • 2020-12-09 04:13

    Try this:

    from geopy.geocoders import Nominatim
    from geopy.exc import GeocoderTimedOut
    
    my_address = '1600 Pennsylvania Avenue NW Washington, DC 20500'
    
    geolocator = Nominatim()
    try:
        location = geolocator.geocode(my_address)
        print(location.latitude, location.longitude)
    except GeocoderTimedOut as e:
        print("Error: geocode failed on input %s with message %s"%(my_address, e.message))
    

    You can also consider increasing the timeout on the geocode call you are making to your geolocator. In my example it would be something like:

    location = geolocator.geocode(my_address, timeout=10)
    

    or

    location = geolocator.geocode(my_address, timeout=None)
    
    0 讨论(0)
提交回复
热议问题