Full catalog/sentinel-5p-l1-ra-bd7-nrti
sentinel-5p-l1-ra-bd7-nrti·dataset

Air-monitoring raw light, near-infrared band 7, fast (Copernicus)

Sentinel-5P Level 1 Radiance Band 7 (NRTI)
atmosphere ESA ESA Copernicus active
In plain English

What it measures. Earth's measured light spectrum in spectral band 7, in the near-infrared range, recorded as calibrated brightness values rather than a finished result.

How it's made. Observed by the TROPOMI instrument on ESA Copernicus's Sentinel-5P satellite and delivered as Level-1 data in near-real-time.

How & where you'd use it. Used as raw input for products such as methane and cloud measurements; a building block rather than a standalone dataset.

What's measured

SentinelCopernicusESASatelliteGlobalAtmosphereL1RA-BD7NRTIEUEC

Coverage & cadence

  • Time span2018-04-30 → ongoing
  • Spatial extent-180, -90, 180, 90

What you can do with it

  • Map air pollutants — NO₂, aerosols, ozone
  • Track greenhouse gases and Earth's energy budget
  • Feed weather and air-quality analysis
Official description

This Collection provides Sentinel-5P Level-1 RA BD7 products, which contains Earth radiance spectra for spectral band 7.

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-l1-ra-bd7-nrti"],   # 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.