Full catalog/clms_vlcc_bare-soil-before-confidence-layer_europe_10m_yearly_v1
clms_vlcc_bare-soil-before-confidence-layer_europe_10m_yearly_v1·dataset

Reliability scores for pre-emergence bare-soil maps (Copernicus)

CLMS VLCC Bare Soil Before Confidence Layer (CPBSBCL) Europe 10m yearly V1
biosphere ESA ESA Copernicus active
In plain English

What it measures. Expresses how uncertain the bare-soil-before estimates are, in days (1 to 80), based on the confidence in detected crop emergence and harvest dates.

How it's made. ESA Copernicus generates it annually at 10-metre resolution across the EEA-38 countries as a quality companion to the bare-soil-before layer.

How & where you'd use it. A supporting quality measure that tells analysts how much to trust the timing of pre-planting bare-soil periods.

What's measured

CLMSCopernicusEuropeRasterLand coverCroplandBare SoilConfidence LayerCPLand use

Coverage & cadence

  • Time span2017-01-01 → ongoing
  • Spatial extent-180, -90, 180, 90

What you can do with it

  • Map vegetation, forests and biomass
  • Monitor ecosystem productivity and carbon
  • Support habitat and biodiversity studies
Official description

The Bare Soil Before Confidence Layer (CPBSBCL) is an ancillary dataset accompanying the CPBSB layer. It quantifies the uncertainty of the bare soil period before the emergence of the main annual crop, expressed in days (range: 1–80). The uncertainty is based on the uncertainty of the emergence and/or harvest events that define the bare soil period. Emergence events occurring after the calendar year that marks the end of the bare soil period will not be included in the uncertainty calculation. This dataset is provided annually starting with 2017 in 10-metre rasters (fully conformant with the EEA reference grid) in 100 × 100 km tiles covering the EEA-38 countries. The HRL Bare Soil Before Confidence Layer product is part of the European Union's Copernicus Land Monitoring Service. This dataset includes data from the French Overseas Territories (DOMs).

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_vlcc_bare-soil-before-confidence-layer_europe_10m_yearly_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.