Full catalog/TELLUS_GRAC_L3_GFZ_RL06_LND_v04
TELLUS_GRAC_L3_GFZ_RL06_LND_v04·vRL06v04·dataset

Monthly changes in stored land water (GRACE, GFZ)

GFZ TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass Anomaly Release 6.0 version 04
hydrosphere NASA POCLOUD Level 3 netCDF-4
In plain English

What it measures. Monthly maps of how much water stored on and under land has changed versus a reference period, given as an equivalent thickness of water and lumping together soil moisture, snow, surface water, and groundwater.

How it's made. Derived by the German Research Centre for Geosciences from tiny month-to-month gravity changes measured by the GRACE and GRACE-FO missions, with multiple corrections applied.

How & where you'd use it. Tracks droughts, groundwater loss, and changes in regional water storage, supporting water management and climate research.

What's measured

TERRESTRIAL HYDROSPHERE › WATER BUDGET › TERRESTRIAL WATER STORAGE

Coverage & cadence

  • Time span2002-04-05 → 2017-10-18
  • Measured byGRACE
  • Processing levelLevel 3
  • Spatial extent-180, -89.5, 180, 89.5
  • FormatsnetCDF-4
  • StatusCOMPLETE

What you can do with it

  • Follow rainfall, floods and surface-water extent
  • Track soil moisture and the onset of drought
  • Monitor lakes, rivers and groundwater storage
Official description

The monthly land mass grids contain water mass anomalies given as equivalent water thickness derived from GRACE & GRACE-FO time-variable gravity observations during the specified timespan, and relative to the specified time-mean reference period. The Equivalent water thickness represents the total terrestrial water storage anomalies from soil moisture, snow, surface water (incl. rivers, lakes, reservoirs etc.), as well as groundwater and aquifers. A glacial isostatic adjustment (GIA) correction has been applied, and standard corrections for geocenter (degree-1), C20 (degree-20) and C30 (degree-30) are incorporated. Post-processing filters have been applied to reduce correlated errors. Version 04 (v04) of the terrestrial water storage data uses updated and consistent C20 and Geocenter corrections (i.e., Technical Notes TN-14 and TN-13), as well as an ellipsoidal correction to account for the non-spherical shape of the Earth when mapping gravity anomalies to surface mass change. Data grids are provided in ASCII/netCDF/GeoTIFF formats. For the RL06 version, all GRACE products in the ASCII format have adopted the YAML encoding header, which is in full compliance with the PODAAC metadata best practices.

Get the data

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

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