Closed
Description
openedon Sep 18, 2023
import xarray as xr
import panel as pn
import holoviews as hv
from holoviews.operation.datashader import rasterize
import geoviews as gv
import cartopy.crs as ccrs
hv.renderer("bokeh").webgl = False
import hvplot.xarray
ds = xr.tutorial.open_dataset("air_temperature").isel(time=0)
rasterize((gv.Image(ds, ["lon", "lat"], ["air"]))) * gv.feature.coastline()
Data disappears on zoom.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment