Full catalog/clms_gpp_global_300m_10daily_v1
clms_gpp_global_300m_10daily_v1·dataset

Carbon captured by plants worldwide, 300m (Copernicus, 2023-2026)

CLMS GPP Global 300m 10-daily V1
biosphere ESA ESA Copernicus COGNetCDF
In plain English

What it measures. Estimates how much carbon plants pull from the air and lock into new growth through photosynthesis over each period, an indicator of an ecosystem's carbon uptake.

How it's made. Produced by ESA Copernicus from the Sentinel-3 satellites' OLCI instrument, with a value every ten days at about 300-metre detail.

How & where you'd use it. Useful for carbon-cycle research, climate modelling and tracking how productive ecosystems are. This version covers 2023 through 2026.

What's measured

CopernicusCLMSGPPGross Primary Productioncarbon fluxglobal10-daily300mSentinel-3OLCI

Coverage & cadence

  • Time span2023-06-21 → 2026-02-28
  • Spatial extent-179.9999999, -59.9985119, 179.9985119, 80.0014881
  • FormatsCOG, NetCDF

What you can do with it

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

Provides the total amount of carbon compounds produced by photosynthesis of plants in an ecosystem in a given period of time. 10-daily observations are available at global scale in the spatial resolution of 300 m and with the temporal extent from 2023 to 2026.

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