Full catalog/TOVSAMNG
TOVSAMNG·v01·dataset

Monthly weather and temperature grids (NOAA-10, 1980s)

TOVS GLA MONTHLY GRIDS from NOAA-10 V01 (TOVSAMNG) at GES DISC
atmosphere NASA GES_DISC Level 3
In plain English

What it measures. Monthly gridded maps of the atmosphere from the 1980s, including 3-D temperature and moisture structure plus quantities like land and sea surface temperature, outgoing heat, cloud cover, cloud-top height, total ozone, and rainfall estimates.

How it's made. Derived from the HIRS2 infrared and MSU microwave sounders on the NOAA-10 polar-orbiting satellite, processed through a model-assisted forecast-and-retrieval cycle into monthly grids.

How & where you'd use it. A historical climate record useful for studying past atmospheric and surface conditions and for extending long-term weather and climate time series back into the 1980s.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONEATMOSPHERE › ATMOSPHERIC PRESSURE › ATMOSPHERIC PRESSURE MEASUREMENTSATMOSPHERE › ATMOSPHERIC RADIATION › OUTGOING LONGWAVE RADIATIONATMOSPHERE › ATMOSPHERIC TEMPERATURE › SURFACE TEMPERATURE › AIR TEMPERATUREATMOSPHERE › ATMOSPHERIC WATER VAPOR › WATER VAPOR INDICATORS › HUMIDITYATMOSPHERE › CLOUDS › CLOUD PROPERTIES › CLOUD FREQUENCYATMOSPHERE › CLOUDS › CLOUD PROPERTIES › CLOUD HEIGHTATMOSPHERE › PRECIPITATION › PRECIPITATION AMOUNTLAND SURFACE › SURFACE THERMAL PROPERTIES › LAND SURFACE TEMPERATUREOCEANS › OCEAN PRESSURE › SEA LEVEL PRESSUREOCEANS › OCEAN TEMPERATURE › SEA SURFACE TEMPERATUREOCEANS › SEA SURFACE TOPOGRAPHY › SEA SURFACE HEIGHTSPECTRAL/ENGINEERING › INFRARED WAVELENGTHS › INFRARED IMAGERYSPECTRAL/ENGINEERING › MICROWAVE › BRIGHTNESS TEMPERATURE

Coverage & cadence

  • Time span1986-11-30 → 1991-09-01
  • Measured byNOAA-10 (HIRS/2, MSU, TOVS)
  • Processing levelLevel 3
  • 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

This dataset (TOVSAMNG) contains the TIROS Operational Vertical Sounder (TOVS) level 3 geophysical parameters derived using data from NOAA-10 and the physical retrieval method of Susskind et al. (1984) and processed by the Satellite Data Utilization Office of the Goddard Laboratory for Atmospheres at NASA/GSFC. This method, which is hydrodynamic model- and a priori data-dependent, is designated as the so-called Path A scheme by the TOVS Pathfinder Science Working Group. The 20 channel High resolution Infrared Radiation Sounder 2 (HIRS2) and the 4 channel Microwave Sounding Unit (MSU) aboard the NOAA-xx series of Polar Orbiting Satellites are used to produce global fields of the 3-dimensional temperature-moisture structure of the atmosphere. In addition to profiles of temperature and moisture, the HIRS2/MSU data are used to derive important quantities such as land and sea surface temperature, outgoing longwave radiation, cloud fraction, cloudtop height, total ozone overburden and precipitation estimates. The Path A system steps through an interactive forecast-retrieval-analysis cycle. In each 6 hour synoptic period, a 2nd order General Circulation Model (Takacs et al., 1994) is used to generate the 6 hour forecast fields of temperature and humidity. These global fields are used as the first guess for all soundings occuring within a 6 hour time window centered upon the forecast time. These retrievals are then assimilated with all available insitu measurements (such as radiosonde and ship reports) in the 6 hour interval using an Optimal Interpolation (OI) analysis scheme developed by the Data Assimilation Office of the Goddard Laboratory for Atmospheres. This analysis is then used to specify the initial conditions for the next 6 hour forecast, thus completing the cycle. The retrieval algorithm itself is a physical method based on the iterative relaxation technique originally proposed by Chahine (1968). The basic approach consists of modifying the temperature profile from the previous iteration by an amount proportional to the difference between the observed brightness temperatures and the brightness temperatures computed from the trial parameters using the full radiative transfer equation applied at the observed satellite zenith angle. For the case of the temperature profile, the updated layer mean temperatures are given as a linear combination of multichannel brightness temperature differences with the coefficients given by the channel weighting functions. Constraints are imposed upon the solution in order to ensure stability and convergence of the iterative process. For more details see Susskind et al (1984). There are 6 level 3 data product files, each of which is in the HDF format and each representative of a different averaging time period. All files contain the same number of geophysical parameter arrays stored as HDF Scientific Data Sets (SDSs). The time periods include daily, 5 day (pentad) and monthly, with the AM and PM portions of the orbits treated separately. All data are mapped to a 1 degree longitude by 1 degree latitude global grid.

Get the data

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

results = earthaccess.search_data(
    short_name="TOVSAMNG",
    version="01",
    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.