Full catalog/clms_swi_europe_1km_daily_v1
clms_swi_europe_1km_daily_v1·dataset

Daily soil moisture at depth across Europe (Copernicus)

CLMS SWI Europe 1km daily V1
hydrosphere ESA ESA Copernicus COGNetCDF
In plain English

What it measures. Estimates how moist the soil is at several depths, not just the surface, giving a fuller picture of water in the ground.

How it's made. ESA Copernicus combines Sentinel-1 radar (C-SAR) with ASCAT data from the Metop satellites to map continental Europe daily at 1 kilometre, covering 2015 to 2025.

How & where you'd use it. Supports agriculture, drought monitoring, and flood prediction by showing where the ground is becoming saturated or parched.

What's measured

CopernicusCLMSSWISoil Water Indexsoil moistureEuropedaily1kmSentinel-1C-SARMetopASCAT

Coverage & cadence

  • Time span2014-12-31 → 2025-07-12
  • 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

Quantifies the moisture condition at various depths in the soil. Daily observations are available for continental Europe in the spatial resolution of 1 km and with the temporal extent from January 2015 to 2025.

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_swi_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.