Full catalog/g3asspb
g3asspb·v004·dataset

Gases in the upper air at sunrise/sunset (Meteor-3M, native)

SAGE III Meteor-3M L2 Solar Event Species Profiles (Native) V004
atmosphere NASA LARC_CLOUD Level 2 Binary
In plain English

What it measures. The same upper-atmosphere gas profiles taken at sunrise or sunset, here stored in the instrument's original (native) file format rather than a converted one.

How it's made. Derived from the SAGE III instrument on the Meteor-3M satellite for each solar event, kept in its native format.

How & where you'd use it. Used by atmospheric chemists studying ozone and trace gases, typically those who prefer working with the data in its original form.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › NITROGEN COMPOUNDS › CLOUD-SCREENED TOTAL COLUMN NITROGEN DIOXIDE (NO2)ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONE › OZONE PROFILES

Coverage & cadence

  • Time span2001-12-10 → 2005-11-13
  • Measured byMeteor-3M (SAGE III)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • FormatsBinary
  • 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

A Level 2 data file containing all the species products for a single solar event

Get the data

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

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