Full catalog/clms_swi-static_global_12.5km_daily_v3
clms_swi-static_global_12.5km_daily_v3·dataset

Helper masks for global soil-moisture data (Copernicus)

CLMS SWI Static Global 12.5km V3
hydrosphere ESA ESA Copernicus COGNetCDF
In plain English

What it measures. This is not a measurement layer itself but a set of static reference masks and supporting files that go with the global Soil Water Index products.

How it's made. ESA Copernicus provides these auxiliary files alongside the ASCAT-based Soil Water Index series at 12.5-kilometre spacing.

How & where you'd use it. A behind-the-scenes input: analysts use it to correctly read and interpret the daily, 10-daily, and time-series soil moisture data, not for standalone results.

What's measured

CopernicusCLMSSWISoil Water Index static layerssoil moistureglobalstatic12.5kmMetopASCAT

Coverage & cadence

  • Time span2007-01-01 → 2017-12-31
  • Spatial extent-180, -90, 180, 90
  • 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 static masks and ancillary files that aid in the analysis of the global daily Soil Water Index data, the global 10-daily Soil Water Index and the global Soil Water Index time series products.

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-static_global_12.5km_daily_v3"],   # 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.