Full catalog/GPM_2AKu
GPM_2AKu·v07·dataset

Rain rate and storm structure by radar (GPM, Ku-band)

GPM DPR Ku Precipitation Profile 2A 1.5 hours 5 km V07 (GPM_2AKu) at GES DISC
atmosphere NASA GES_DISC Level 2 active
In plain English

What it measures. Profiles of rainfall, showing how hard it's raining and how precipitation is structured vertically through storms, sensed by radar.

How it's made. Produced from the Ku-band channel of the Dual-Frequency Precipitation Radar on the core GPM spacecraft, as a single-frequency Level-2 retrieval written one orbit swath at a time.

How & where you'd use it. Used to study storm structure and rainfall intensity, support precipitation research, and feed into broader global rainfall datasets.

What's measured

ATMOSPHERE › ATMOSPHERIC WATER VAPORATMOSPHERE › PRECIPITATIONSPECTRAL/ENGINEERING › RADAR

Coverage & cadence

  • Time span2014-03-08 → ongoing
  • Measured byGPM (DPR)
  • Processing levelLevel 2
  • Spatial extent-180, -70, 180, 70
  • StatusCOMPLETE

What you can do with it

  • Map air pollutants — NO₂, aerosols, ozone
  • Track greenhouse gases and Earth's energy budget
  • Feed weather and air-quality analysis
Official description

Version 07 is the current version of the data set. Older versions will no longer be available and have been superseded by Version 07. The 2AKu algorithm is a single-frequency retrieval that relies on Ku-band data only, and provides precipitation estimates from the Ku radar of the Dual-Frequency Precipitation Radar on the core GPM spacecraft. The Ku Level-2A product, 2AKu, ”Ku precipitation,” is written as a 1 swath structure. The swath is NS, normal scans. Since the Ku-band channel of the Dual-Frequency Precipitaiton Radar (DPR) is very similar to the TRMM PR, the principal challenge in the development of the DPR level 2 algorithms is to combine the new Ka-band data with the Ku-band data. It is important to note the difference between the single- and the dual-frequency (DF) algorithms. While this 2AKu dataset is a single-frequency retrieval, the DF algorithm employs both KuPR and KaPR L1B standard products as inputs. The DF algorithm cannot be executed unless both L1B products are available. Pixels observed by DPR can be categorized into three types: pixels in the inner swath of normal scans (observed both by KuPR and KaPR), pixels in the outer swath of normal scans (observed only by KuPR), and pixels in the interleaved scans (observed only by KaPR in the high-sensitivity mode). The KuPR algorithm is executed for pixels in both inner and outer swaths of normal scans. The KaPR algorithm is executed for pixels in the inner swath of normal scans and in the interleaved scans. The DF algorithm is executed for pixels of all the three kinds.

Get the data

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

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