Full catalog/SPL4SMLM
SPL4SMLM·v008·dataset

Fixed map settings for SMAP soil-moisture model (9 km)

SMAP L4 Global 9 km EASE-Grid Surface and Root Zone Soil Moisture Land Model Constants V008
land NASA NSIDC_CPRD Level 4 active HDF5
In plain English

What it measures. Fixed, unchanging map settings for the SMAP soil-moisture model, the static background values for each 9 km grid cell that stay the same over time, rather than any actual moisture measurement.

How it's made. Produced as a single companion file per data version alongside SMAP's Level-4 soil moisture products, which combine the satellite's L-band measurements with a land model.

How & where you'd use it. A reference layer that some users need to fully interpret the SMAP soil-moisture fields; not a measurement product on its own.

What's measured

LAND SURFACE › SOILS › SOIL CLASSIFICATIONLAND SURFACE › SOILS › SOIL DEPTHLAND SURFACE › SOILS › SOIL POROSITYLAND SURFACE › SOILS › SOIL TEXTURELAND SURFACE › TOPOGRAPHY › TERRAIN ELEVATION

Coverage & cadence

  • Time span2015-03-31 → ongoing
  • Measured byGEOS-5 (NOT APPLICABLE) · SMAP (SMAP L-BAND RADIOMETER)
  • Processing levelLevel 4
  • 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

SMAP Level-4 (L4) surface and root zone soil moisture (L4_SM) data are provided in three products. The SMAP L4 Global 3-hourly 9 km EASE-Grid Surface and Root Zone Soil Moisture Geophysical Data (SPL4SMGP, DOI: 10.5067/T5RUATAQREF8) product is a series of 3-hourly time average geophysical land surface fields that are output by the L4_SM algorithm. It is likely of primary interest to most users. The SMAP L4 Global 3-hourly 9 km EASE-Grid Surface and Root Zone Soil Moisture Analysis Update (SPL4SMAU, DOI: 10.5067/02LGW4DGJYRX) product provides diagnostics from the land surface analysis updates. It consists of a series of 3-hourly instantaneous (or snapshot) files that contain the assimilated SMAP observations, the corresponding land model predictions and analysis estimates, and additional data assimilation diagnostics. Lastly, the SMAP L4 Global 9 km EASE-Grid Surface and Root Zone Soil Moisture Land Model Constants (SPL4SMLM, DOI: 10.5067/PXQIBL2ALDZD) product provides static (time-invariant) land surface model constants that will be needed by some users for further interpretation of the geophysical land surface fields. This product consists of only one granule (file) per L4_SM data product version (as defined by a distinct Science Version ID). For each product, SMAP L-band brightness temperature data from descending and ascending half-orbit satellite passes (approximately 6:00 a.m. and 6:00 p.m. local solar time, respectively) are assimilated into a land surface model that is gridded using an Earth-fixed, global cylindrical 9 km Equal-Area Scalable Earth Grid, Version 2.0 (EASE-Grid 2.0) projection.

Get the data

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

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