Closed
Description
openedon Jun 4, 2024
Still an issue from #722
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.extension("bokeh")
import hvplot.xarray
ds = xr.tutorial.open_dataset("air_temperature").isel(time=0)
rasterize(gv.Image(ds, ["lon", "lat"], ["air"])) * gv.feature.coastline()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment