Full catalog/AMDBLWV
AMDBLWV·v1·dataset

Water vapor in the lowest air layer (daily, 1 degree, v1)

AMSR-MODIS Boundary Layer Water Vapor L3 Daily 1 degree x 1 degree V1 (AMDBLWV) at GES DISC
atmosphere NASA GES_DISC Level 3
In plain English

What it measures. Estimates how much water vapor sits in the lowest layer of air over the ocean, beneath uniform cloud cover, mapped daily at 1-degree resolution.

How it's made. Created by subtracting MODIS near-infrared estimates of moisture above the clouds from AMSR microwave estimates of total column moisture, leaving the near-surface amount.

How & where you'd use it. Useful for studying the marine boundary layer and the moisture that drives clouds and weather over the ocean.

What's measured

ATMOSPHERE › ATMOSPHERIC WATER VAPOR

Coverage & cadence

  • Time span2002-07-04 → 2016-12-31
  • Measured byAqua (AMSR-E, MODIS) · GCOM-W1 (AMSR2)
  • 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 data set provides an estimate the marine boundary layer water vapor beneath uniform cloud fields. Microwave radiometry from AMSR-E and AMSR-2 provides the total column water vapor, while the near-infrared imagery from MODIS provides the water vapor above the cloud layers. The difference between the two gives the vapor between the surface and the cloud top, which may be interpreted as the boundary layer water vapor.

Get the data

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

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