Full catalog/sentinel-5p-l2-np-bd3-offl
sentinel-5p-l2-np-bd3-offl·dataset

Cloud and scene check, band 3 (Copernicus)

Sentinel-5P Level 2 NPP Cloud (band 3) (OFFL)
biosphere ESA ESA Copernicus active
In plain English

What it measures. Holds detailed cloud information and a measure of how uniform each scene is, drawn from one of the satellite's spectral bands. It is a technical helper dataset, not a stand-alone map.

How it's made. Produced from the TROPOMI instrument on ESA Copernicus's Sentinel-5P satellite using its near-infrared band 3, as a Level-2 offline product.

How & where you'd use it. A low-level input used by scientists to support and quality-check other Sentinel-5P measurements rather than a product for general readers.

What's measured

3500mAtmosphereCopernicusECESAEUGlobalL2L2__NP_BD3NP-BD3OFFLPT12HSatelliteSentinel

Coverage & cadence

  • Time span2018-04-30 → 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-5P Level-2 NP BD3 products, which contains information on cloud and scene homogeneity.

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-5p-l2-np-bd3-offl"],   # 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.