Sentinel-1 ARD for relative orbit 124 on UTM 33N

Sentinel-1 ARD for relative orbit 124 on UTM 33N. The dataset is formatted as a Zarr archive optimised for time analysis.

How to download the data

The default (and preferred) way to access the data requires accessing the api.earthdatahub.destine.eu domain and a valid API key.

Method 1: quick access

It is possible to include the token directly in the URL.

1import xarray as xr
2
3xr.open_dataset(
4    "https://edh:<your personal access token>@api.earthdatahub.destine.eu/sentinel-1-ard/IW-UTM-RO-italy-v0/Z33N/O124",
5    chunks={},
6    engine="zarr",
7    decode_coords="all",
8)

Method 2: advanced access

The Python snippet gather the token from a netrc file.

It's required to before running the code snippet below.
1import xarray as xr
2
3xr.open_dataset(
4    "https://api.earthdatahub.destine.eu/sentinel-1-ard/IW-UTM-RO-italy-v0/Z33N/O124",
5    storage_options={"client_kwargs":{"trust_env":True}},
6    chunks={},
7    engine="zarr",
8    decode_coords="all",
9)

Variables

Short NameUnitsDescription
nrb
m2 m-2

normalised radar backscatter

simulation
m2 m-2

simulated beta nought

DestinE platform