Full catalog/TRPSCRHNO32H2D
TRPSCRHNO32H2D·v1·dataset

Reanalyzed nitric-acid gas at the surface, every 2 hours

TROPESS Chemical Reanalysis Surface HNO3 2-Hourly 2-dimensional Product V1 (TRPSCRHNO32H2D) at GES DISC
atmosphere NASA GES_DISC Level 4
In plain English

What it measures. Surface levels of nitric acid, a gas tied to air pollution, given every two hours across a global grid for the years 2005 to 2021.

How it's made. Produced by a chemical reanalysis that blends multiple satellite measurements with computer models to estimate both the amounts and the sources of pollutant gases, rather than from a single instrument.

How & where you'd use it. Useful for studying air quality and atmospheric chemistry over time, and for tracking how pollutant concentrations and emissions have changed.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › NITROGEN COMPOUNDS › ATMOSPHERIC NITRIC ACID

Coverage & cadence

  • Time span2005-01-01 → 2021-12-31
  • Measured byREANALYSIS MODELS (NOT APPLICABLE)
  • Processing levelLevel 4
  • Spatial extent-180, -90, 180, 90
  • StatusCOMPLETE

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

The TROPESS Chemical Reanalysis HNO3 2-Hourly 2-dimensional Product contains surface concentrations of nitric acid. The data are part of the Tropospheric Chemical Reanalysis v2 (TCR-2) for the period 2005-2021. TCR-2 uses JPL's Multi-mOdel Multi-cOnstituent Chemical (MOMO-Chem) data assimilation framework that simultaneously optimizes both concentrations and emissions of multiple species from multiple satellite sensors. The data files are written in the netCDF version 4 file format, and each file contains a year of data at 2-hourly resolution, and a spatial resolution of 1.125 x 1.125 degrees. The principal investigator for the TCR-2 data is Miyazaki, Kazuyuki.

Get the data

trpscrhno32h2d_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="TRPSCRHNO32H2D",
    version="1",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from GES_DISC
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.