Full catalog/SPL3SMA
SPL3SMA·v003·dataset

How wet the soil is (SMAP radar, daily, 3 km)

SMAP L3 Radar Global Daily 3 km EASE-Grid Soil Moisture V003
land NASA NSIDC_CPRD Level 3 HDF5
In plain English

What it measures. How wet the soil is across the world's land surfaces, estimated daily at a fine 3 km scale.

How it's made. Retrieved from the radar on NASA's SMAP satellite plus supporting data, then mapped onto a global equal-area grid.

How & where you'd use it. Soil moisture matters for farming, drought monitoring, flood forecasting, and understanding how water cycles between land and air.

What's measured

SPECTRAL/ENGINEERING › RADAR › SIGMA NAUGHTLAND SURFACE › SOILS › SOIL MOISTURE/WATER CONTENT

Coverage & cadence

  • Time span2015-04-13 → 2015-07-07
  • Measured bySMAP (SMAP L-BAND RADAR)
  • Processing levelLevel 3
  • Spatial extent-180, -85.044, 180, 85.044
  • FormatsHDF5
  • 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

This Level-3 (L3) soil moisture product provides a composite of daily estimates of global land surface conditions retrieved by the Soil Moisture Active Passive (SMAP) radar as well as a variety of ancillary data sources. SMAP L-band soil moisture data are resampled to an Earth-fixed, global, cylindrical 3 km Equal-Area Scalable Earth Grid, Version 2.0 (EASE-Grid 2.0).

Get the data

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

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