Xarray Quadmesh#

Download this notebook from GitHub (right-click to download).


import xarray as xr
import geoviews as gv

gv.extension('bokeh')

Define data#

tiles = gv.tile_sources.EsriImagery
rasm = xr.tutorial.open_dataset('rasm').load()
qmeshes = gv.Dataset(rasm.Tair[::4, ::3, ::3]).to(gv.QuadMesh, groupby='time')

Plot#

tiles * qmeshes.opts(width=700, height=350)
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).