Full catalog/msuttp
msuttp·v6·dataset

Temperature swings near the tropopause, monthly

AMSU/MSU Tropopause Day/Month Temperature Anomalies and Annual Cycle V6
atmosphere NASA GHRC_DAAC Level 3 netCDF-4ASCII
In plain English

What it measures. Temperature ups and downs near the tropopause — the boundary between the lower atmosphere and the stratosphere — shown as departures from normal and the regular yearly cycle, going back to 1978.

How it's made. Derived from microwave sounding instruments (MSU and AMSU-A) flown on a long series of NOAA and NASA satellites, which read the atmosphere's natural microwave glow.

How & where you'd use it. Provides a decades-long record for studying long-term temperature trends and climate change in the upper atmosphere.

What's measured

Atmosphere › Atmospheric Temperature › Surface Temperature › Air Temperature

Coverage & cadence

  • Time span1978-01-01 → ongoing
  • Measured byNOAA-9 (MSU) · NOAA-11 (MSU) · TIROS-N (MSU) · NOAA-18 (AMSU-A) · NOAA-7 (MSU) · NOAA-8 (MSU) · NOAA-6 (MSU) · NOAA-12 (MSU) · NOAA-19 (AMSU-A) · NOAA-15 (AMSU-A) · NOAA-10 (MSU) · Aqua (AMSU-A) · NOAA-14 (MSU)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4, ASCII
  • StatusACTIVE

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 AMSU/MSU Tropopause Day/Month Temperature Anomalies and Annual Cycle V6 dataset consists of temperature anomalies and annual cycle temperatures derived from the Microwave Sounding Unit (MSU) and the Advanced Microwave Sounding Unit-A (AMSU-A) radiance data since January 1978. All products are derived for the tropopause. The dataset begins on January 1, 1978 and is still currently ongoing. The data are available in netCDF-4 and ASCII formats.

Get the data

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

results = earthaccess.search_data(
    short_name="msuttp",
    version="6",
    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 GHRC_DAAC
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.