Full catalog/clms_sce_europe_500m_daily_v1
clms_sce_europe_500m_daily_v1·dataset

Daily snow cover map of Europe (Copernicus)

CLMS SCE Europe 500m daily V1
cryosphere ESA ESA Copernicus active COGNetCDF
In plain English

What it measures. For each 500-metre patch of ground across Europe, it shows what share is covered by snow, from 0 to 100 percent. It even accounts for snow lying under forest canopy.

How it's made. ESA Copernicus builds it from the MODIS instrument aboard NASA's Terra satellite, updated daily in near real time.

How & where you'd use it. Helps forecasters, water managers, and ski regions track where snow is sitting and melting, and feeds flood and water-supply predictions.

What's measured

CopernicusCLMSSCESnow Cover ExtentcryosphereEuropedaily500mTERRAMODIS

Coverage & cadence

  • Time span2017-03-01 → ongoing
  • Spatial extent-11, 35, 50, 72
  • FormatsCOG, NetCDF

What you can do with it

  • Measure sea ice, snow cover and glaciers
  • Watch ice-sheet elevation change
  • Track freeze/thaw and permafrost
Official description

Provides for Europe daily updates of the fraction of snow cover on the ground (also in forested areas) per pixel in percentage (0% to 100%). The data is available in near real time in the spatial resolution of 500 m and with the temporal extent from March 2017 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_sce_europe_500m_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.