Full catalog/GRACE_GSM_L2_GRAV_GFZ_RL06
GRACE_GSM_L2_GRAV_GFZ_RL06·v6.0·dataset

Monthly shifts in Earth's gravity from moving water (GRACE, GFZ)

GRACE FIELD GEOPOTENTIAL COEFFICIENTS GFZ RELEASE 6.0
deformation NASA POCLOUD Level 2 ASCII
In plain English

What it measures. Monthly snapshots of Earth's gravity field, which shift as water and ice move around the planet, stored as mathematical coefficients rather than a readable map. This is the version processed in Germany.

How it's made. Derived from the twin GRACE satellites, which sense tiny changes in the distance between them as they orbit, with the monthly gravity estimates produced by the German Research Centre for Geosciences.

How & where you'd use it. Labeled for expert use only; researchers convert it into maps of groundwater, ice loss, and ocean change, but it isn't designed for direct reading by non-specialists.

What's measured

SOLID EARTH › GRAVITY/GRAVITATIONAL FIELD › GRAVITY ANOMALIES

Coverage & cadence

  • Time span2002-04-05 → 2017-07-01
  • Measured byGRACE
  • Processing levelLevel 2
  • Spatial extent-180, -88, 180, 88
  • FormatsASCII
  • StatusCOMPLETE

What you can do with it

  • Measure ground motion and subsidence (InSAR)
  • Track earthquakes, volcanoes and landslides
  • Map elevation and terrain change
Official description

FOR EXPERT USE ONLY. This dataset contains estimates of static field geopotential of the Earth, derived from the Gravity Recovery and Climate Experiment (GRACE) mission measurements, produced by the German Research Centre for Geosciences (GFZ). The data are in spherical harmonics averaged over approximately a month. The primary objective of the GRACE mission is to obtain accurate estimates of the mean and time-variable components of the gravity field variations. This objective is achieved by making continuous measurements of the change in distance between twin spacecraft, co-orbiting in about 500 km altitude, near circular, polar orbit, spaced approximately 200 km apart, using a microwave ranging system. In addition to these range change, the non-gravitional forces are measured on each satellite using a high accuracy electrostatic, room-temperature accelerometer. The satellite orientation and position (and timing) are precisely measured using twin star cameras and a GPS receiver, respectively. Spatial and temporal variations in the gravity field affect the orbits (or trajectories) of the twin spacecraft differently. These differences are manifested as changes in the distance between the spacecraft, as they orbit the Earth. This change in distance is reflected in the time-of-flight of microwave signals transmitted and received nearly simultaneously between the two spacecraft. The change in this time of fight is continuously measured by tracking the phase of the microwave carrier signals. The so called dual-one-way range change measurements can be reconstructed from these phase measurements. This range change (or its numerically derived derivatives), along with other mission and ancillary data, is subsequently analyzed to extract the parameters of an Earth gravity field model.

Get the data

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

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