Full catalog/AERDT_L2_VIIRS_SNPP
AERDT_L2_VIIRS_SNPP·v2.1·dataset

Haze, dust, and smoke over dark land and water (VIIRS, Suomi-NPP)

SNPP VIIRS Dark Target Aerosol Level-2 6-Minute Swath 6 km V2.1
atmosphere NASA LAADS Level 2 active NetCDF-4
In plain English

What it measures. How much haze, dust, and smoke is in the air, measured as the thickness of airborne particles over both land and ocean, with extra detail on particle size over the sea.

How it's made. Derived from the VIIRS instrument on the Suomi-NPP satellite using the long-established Dark Target method, which works best over dark surfaces like oceans and vegetation, producing snapshots every six minutes at about 6 km resolution.

How & where you'd use it. Useful for tracking air-pollution events, dust storms, and wildfire smoke, and for studying how tiny airborne particles affect health, weather, and climate.

What's measured

ATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESSATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESS › ANGSTROM EXPONENTATMOSPHERE › AEROSOLSATMOSPHERE › AEROSOLS › AEROSOL PARTICLE PROPERTIES

Coverage & cadence

  • Time span2012-03-01 → ongoing
  • Measured bySuomi-NPP (VIIRS)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • FormatsNetCDF-4
  • 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 SNPP Visible Infrared Imaging Radiometer Suite (VIIRS) NASA standard Level-2 (L2) dark target (DT) aerosol product provides satellite-derived measurements of Aerosol Optical Thickness (AOT) and their properties over land and ocean, and spectral AOT and their size parameters over oceans every 6 minutes, globally. The VIIRS incarnation of the DT aerosol product is based on the same DT algorithm that was developed and used to derive products from the Terra and Aqua missions’ Moderate Imaging Spectroradiometer (MODIS) instruments. Two separate and distinct DT algorithms exist. One helps retrieve aerosol information over ocean (dark in visible and longer wavelengths), while the second aids retrievals over vegetated/dark-soiled land (dark in the visible wavelengths). This orbit-level product (Short-name: AERDT_L2_VIIRS_SNPP) has an at-nadir resolution of 6 km x 6 km, and progressively increases away from nadir given the sensor’s scanning geometry and Earth’s curvature. Viewed differently, this product’s resolution accommodates 8 x 8 native VIIRS moderate-resolution (M-band) pixels that nominally have ~750 m horizontal pixel size. Hence, the Level-2 Dark Target Aerosol Optical Thickness data product incorporates 64 (750 m) pixels over a 6-minute acquisition. Version 2.1 constitutes the latest collection of the SNPP VIIRS L2 Dark Target Aerosol product and contains improvements over its previous collection (v2.0). For more information consult LAADS product description page at: https://ladsweb.modaps.eosdis.nasa.gov/missions-and-measurements/products/AERDT_L2_VIIRS_SNPP Or, Dark Target aerosol team Page at: https://darktarget.gsfc.nasa.gov/

Get the data

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

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