Full catalog/clms_lie_baltic_250m_daily_v1
clms_lie_baltic_250m_daily_v1·dataset

Daily lake ice and snow map for northern Europe, from Copernicus satellites (250 m detail)

CLMS LIE Baltic 250m daily V1
cryosphere ESA ESA Copernicus COGNetCDF
In plain English

What it measures. Each day labels Northern European lakes and freshwater bodies as fully snow-covered ice, partly snow-covered or bare ice, or open water, mapped pixel by pixel.

How it's made. Produced by ESA Copernicus from the MODIS satellite instrument at about 250-metre detail, delivered close to real time.

How & where you'd use it. Helps track winter freeze-up and spring thaw on lakes, supporting cold-region research, navigation and climate monitoring. This version covers March 2017 to June 2024.

What's measured

CopernicusCLMSLIELake Ice ExtentcryosphereBalticdaily250mMODIS

Coverage & cadence

  • Time span2017-03-14 → 2024-06-30
  • Spatial extent4.99625, 44.99875, 45.00125, 71.00375
  • 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

On daily basis for Northern Europe classifies, in pixels, inland/freshwater bodies as 1) Fully snow-covered ice, 2) Partially snow-covered or snow-free ice, 3) Open water. The data is available in near real time in the spatial resolution of 250 m and with the temporal extent from March 2017 to June 2024.

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