Full catalog/SWDB_L3M10
SWDB_L3M10·v004·dataset

Haze, dust and smoke in the air, monthly (SeaWiFS, 1°)

SeaWiFS Deep Blue Aerosol Optical Depth and Angstrom Exponent Monthly Level 3 Data Gridded at 1.0 Degrees V004 (SWDB_L3M10) at GES DISC
atmosphere NASA GES_DISC Level 3
In plain English

What it measures. A monthly global map of how much haze, dust, and smoke is in the air, on a 1-degree grid. It reports aerosol optical thickness (a measure of how much the haze dims light) and a companion figure indicating particle size.

How it's made. Built from the SeaWiFS instrument on the OrbView-2 satellite using the 'Deep Blue' method, by averaging daily gridded readings into monthly values at the same resolution.

How & where you'd use it. Useful for studying air pollution and dust over time and supporting climate and air-quality research.

What's measured

ATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESS › AODATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESS › ANGSTROM EXPONENTATMOSPHERE › ATMOSPHERIC RADIATION › OPTICAL DEPTH/THICKNESS

Coverage & cadence

  • Time span1997-09-01 → 2010-12-31
  • Measured byOrbView-2 (SeaWiFS)
  • 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 SeaWiFS Deep Blue Level 3 monthly product contains monthly global gridded (1 x 1 deg) data derived from SeaWiFS Deep Blue Level 3 daily gridded data at the same resolution. The primary data parameters are aerosol optical thickness, and Angstrom exponent.

Get the data

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

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