Closed ahuang11 closed 1 year ago
I suspect that geoviews is trying to download the entire tileset, rather than just the region / level required to form a static image. Not sure if this is a GeoViews specific issue or HoloViews issue.
Maybe could adapt this: https://github.com/ahuang11/ahlive/blob/main/ahlive/data.py#L1272-L1334
Reproduce:
import geoviews as gv gv.extension() carto_dark = gv.tile_sources.OSM().opts(global_extent=True) gv.save(carto_dark, "test.png")
Fixed in https://github.com/holoviz/geoviews/pull/685
I suspect that geoviews is trying to download the entire tileset, rather than just the region / level required to form a static image. Not sure if this is a GeoViews specific issue or HoloViews issue.
Maybe could adapt this: https://github.com/ahuang11/ahlive/blob/main/ahlive/data.py#L1272-L1334
Reproduce: