Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Access AGRICEM Data

EarthCODE data access example

ESA

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)
ds
Loading...
ds.b005.isel(time=0).plot()
<Figure size 640x480 with 2 Axes>