This notebook opens an AGRICEM agriculture-focused Zarr data cube from EarthCODE object storage and plots selected band and time slices.
import xarray as xr
data_url = 'https://s3.services.earthcode.eox.at/agricem/main/datacube.zarr'
ds = xr.open_zarr(data_url)
dsLoading...
ds.b005.isel(time=0).plot()