Full catalog/clms_ssm_europe_1km_daily_v1
clms_ssm_europe_1km_daily_v1·dataset

Daily topsoil wetness across Europe (Copernicus)

CLMS SSM Europe 1km daily v1
hydrosphere ESA ESA Copernicus active COGNetCDF
In plain English

What it measures. Tells you how wet or dry the very top few centimetres of soil are, given as a percentage of how saturated the soil is.

How it's made. ESA Copernicus derives it from the C-band radar (C-SAR) on the Sentinel-1 satellites, providing daily 1-kilometre coverage of continental Europe.

How & where you'd use it. Valuable for farmers planning irrigation, for drought and wildfire risk warnings, and for flood forecasting.

What's measured

CopernicusCLMSSSMSurface Soil Moisturesoil moistureEuropedaily1kmSentinel-1C-SAR

Coverage & cadence

  • Time span2014-10-04 → ongoing
  • Spatial extent-11, 35, 50, 72
  • FormatsCOG, NetCDF

What you can do with it

  • Follow rainfall, floods and surface-water extent
  • Track soil moisture and the onset of drought
  • Monitor lakes, rivers and groundwater storage
Official description

Provides information on the relative water content of the top few centimeters soil, describing how wet or dry the soil is in its topmost layer, expressed in percent saturation. Daily observations are available for the continental Europe in the spatial resolution of 1 km and with the temporal extent from October 2014 to present.

Get the data

copernicus_access.py
# ESA Copernicus Data Space — open STAC API (free account)
from pystac_client import Client

cat = Client.open("https://stac.dataspace.copernicus.eu/v1")
search = cat.search(
    collections=["clms_ssm_europe_1km_daily_v1"],   # add _cog or _nc for a format variant
    bbox=(-10, 35, 30, 60),             # your area (W,S,E,N)
    datetime="2024-01-01/2024-12-31",
)
items = list(search.items())            # then read assets with rioxarray / xarray
Browsing the Copernicus STAC is open; downloading bytes needs a free Copernicus Data Space account.