Full catalog/sentinel-5p-l2-ch4-offl
sentinel-5p-l2-ch4-offl·dataset

Global methane concentrations, standard product (Copernicus)

Sentinel-5P Level 2 Methane (OFFL)
atmosphere ESA ESA Copernicus active
In plain English

What it measures. Shows how much methane is present in the atmosphere, mapped at high spatial detail worldwide.

How it's made. Built from TROPOMI observations on ESA Copernicus's Sentinel-5P satellite as a Level-2 offline product, processed for better accuracy than the rapid version.

How & where you'd use it. Used to locate and quantify methane emission hotspots and to track this greenhouse gas for climate and environmental policy.

What's measured

SentinelCopernicusESASatelliteGlobalAtmosphereL2CH4OFFLEUEC

Coverage & cadence

  • Time span2018-04-01 → 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-2 CH4 products, which contains high-resolution imagery of methane concentrations.

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