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 SMART-CH4 Data

EarthCODE data access example

ESA

This notebook opens a SMART-CH4 methane isotope signal Zarr dataset from EarthCODE object storage and plots selected variables for quick inspection.

import xarray as xr
data_url = 'https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/smart-ch4/smart_ch4_d13c.zarr'
ds = xr.open_zarr(data_url)
ds
Loading...
import cartopy.crs as ccrs
ds['sign_d13c_bb'].isel(time=0).plot()
Loading...
Loading...
Loading...
Loading...
<Figure size 640x480 with 2 Axes>
import cartopy.crs as ccrs
ds['sign_d13c_wet'].isel(time=-1).plot()
<Figure size 640x480 with 2 Axes>