Full catalog/sentinel-3-olci-2-lrr-ntc
sentinel-3-olci-2-lrr-ntc·dataset

Coarse vegetation and land products, refined (Copernicus)

Sentinel-3 OLCI Land Reduced Resolution (NTC)
biosphere ESA ESA Copernicus active
In plain English

What it measures. Carefully processed land data on vegetation greenness, chlorophyll, and water vapor at about 1.2-km resolution across the globe.

How it's made. Made by ESA Copernicus from the Sentinel-3 Ocean and Land Color Instrument as non-time-critical Level-2 reduced-resolution land products.

How & where you'd use it. Suited to broad-scale, long-term environmental and climate research on land vegetation and moisture.

What's measured

1200mBiomassCopernicusECESAEUGlobalLandOLCIOL_2_LRR____P1MSatelliteSentinelSentinel-3

Coverage & cadence

  • Time span2016-04-25 → 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

This collection provides Sentinel-3 OLCI Level-2 Land Reduced Resolution products containing data on global vegetation, chlorophyll, and water vapor.

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=["sentinel-3-olci-2-lrr-ntc"],   # 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.