You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently discovered that in some setups (for me specifically: WSL in my company VPN), add_basemap gets stuck forever. It seems to fail to load the tiles and there is no way to specify a timeout.
This is my current workaround but it would be much more convenient to just be able to specify timeout=5 in add_basemap:
import signal
class TimeoutError(Exception):
pass
def timeout_handler(signum, frame):
raise TimeoutError("Timed out")
ax = gdf().to_crs(3857).plot()
# Set a timer for 5 seconds
try: # SIGALRM is only available on UNIX
signal.signal(signal.SIGALRM, timeout_handler)
signal.alarm(5)
except AttributeError:
pass
try: # add_basemap gets stuck on WSL when in VPN, therefore
cx.add_basemap(ax)
except TimeoutError:
print("Timed out while running add_basemap")
ax.figure.savefig('plot.png')
The text was updated successfully, but these errors were encountered:
I recently discovered that in some setups (for me specifically: WSL in my company VPN),
add_basemap
gets stuck forever. It seems to fail to load the tiles and there is no way to specify a timeout.This is my current workaround but it would be much more convenient to just be able to specify
timeout=5
inadd_basemap
:The text was updated successfully, but these errors were encountered: