Full catalog/SPL2SMP_NRT
SPL2SMP_NRT·v107·dataset

How wet the soil is, near-real-time (SMAP, 36 km)

Near Real-time SMAP L2 Radiometer Half-Orbit 36 km EASE-Grid Soil Moisture V107
land NASA NSIDC_CPRD Level 2 active HDF5
In plain English

What it measures. Estimates of how wet the soil is across global land, on a 36-kilometer grid, delivered quickly after each satellite pass.

How it's made. Derived from SMAP's L-band microwave radiometer; this near-real-time version uses the latest available supporting data to produce results within about three hours of observation.

How & where you'd use it. Aimed at fast, operational needs like weather forecasting, drought and flood monitoring, and agriculture. For top scientific quality rather than speed, users are pointed to the standard version of this product.

What's measured

SPECTRAL/ENGINEERING › MICROWAVE › BRIGHTNESS TEMPERATURELAND SURFACE › SOILS › SOIL MOISTURE/WATER CONTENT › SURFACE SOIL MOISTURE

Coverage & cadence

  • Time span2025-06-26 → ongoing
  • Measured bySMAP (SMAP L-BAND RADIOMETER)
  • Processing levelLevel 2
  • Spatial extent-180, -85.044, 180, 85.044
  • FormatsHDF5
  • StatusACTIVE

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 Near Real-Time (NRT) data set corresponds to the standard SMAP L2 Radiometer Half-Orbit 36 km EASE-Grid Soil Moisture (SPL2SMP) product. The data provide estimates of global land surface conditions measured by the Soil Moisture Active Passive (SMAP) passive microwave radiometer, the SMAP L-band radiometer. These Near Real-Time data are available within three hours of satellite observation. The data are created using the latest available ancillary data and spacecraft and antenna attitude data to reduce latency. The SMAP satellite orbits Earth every two to three days, providing half-orbit, ascending and descending, coverage from 86.4°S to 86.4°N in swaths 1000 km across. Data are stored for approximately two to three weeks. Thus, at any given time, users have access to at least fourteen consecutive days of Near Real-Time data through the NSIDC DAAC. Users deciding between the NRT and standard SMAP products should consider the immediacy of their needs versus the quality of the data required. Near real-time data are provided for operational needs whereas standard products meet the quality needs of scientific research. If latency is not a primary concern, users are encouraged to use the standard science product SPL2SMP (<a href="https://doi.org/10.5067/LPJ8F0TAK6E0">https://doi.org/10.5067/LPJ8F0TAK6E0</a>).

Get the data

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

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