Full catalog/AE_L2A
AE_L2A·v4·dataset

Microwave brightness used to map ice and water (Aqua AMSR-E)

AMSR-E/Aqua L2A Global Swath Spatially-Resampled Brightness Temperatures V004
land NASA NSIDC_CPRD Level 2A HDF-EOS2
In plain English

What it measures. Records natural microwave energy coming up from Earth across six channels, expressed as brightness temperature (how warm a surface looks to the sensor at each frequency), in half-orbit swaths.

How it's made. Comes from the AMSR-E instrument on the Aqua satellite, resampled to consistent spatial resolutions and packaged with location and quality information (Level 2A).

How & where you'd use it. A building-block input used to map sea ice, snow, soil moisture, and open water; most people use those derived products rather than the raw brightness temperatures.

What's measured

SPECTRAL/ENGINEERING › MICROWAVE › BRIGHTNESS TEMPERATURESPECTRAL/ENGINEERING › MICROWAVE › MICROWAVE IMAGERY

Coverage & cadence

  • Time span2002-06-01 → 2011-10-04
  • Measured byAqua (AMSR-E)
  • Processing levelLevel 2A
  • Spatial extent-180, -89.24, 180, 89.24
  • FormatsHDF-EOS2
  • StatusCOMPLETE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

The AMSR-E Level-2A product (AE_L2A) contains daily 50 minute half-orbit swath brightness temperatures for six channels ranging from 6.9 GHz through 89 GHz. Data are resampled to spatial resolutions ranging from 5.4 km to 56 km. Each file is packaged with geolocation and quality information as well as ancillary data.

Get the data

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

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