Full catalog/GPM_1CMETOPBMHS
GPM_1CMETOPBMHS·v07·dataset

Raw microwave brightness for weather (METOP-B)

GPM MHS on METOP-B Common Calibrated Brightness Temperature L1C 1.5 hours 17 km V07 (GPM_1CMETOPBMHS) at GES DISC
atmosphere NASA GES_DISC Level 1 active
In plain English

What it measures. Records how much microwave energy the surface and atmosphere give off at five frequencies, expressed as how 'warm' things look to the sensor. It's a basic, calibrated measurement rather than a finished weather product.

How it's made. Comes from the MHS microwave instrument on the METOP-B satellite, recalibrated to a common standard so it lines up with similar sensors on other satellites.

How & where you'd use it. A building-block input that feeds higher-level rain and humidity products; most people use it indirectly rather than on its own.

What's measured

ATMOSPHERE › ATMOSPHERIC WATER VAPORATMOSPHERE › PRECIPITATION

Coverage & cadence

  • Time span2012-09-25 → ongoing
  • Measured byMETOP-B (MHS)
  • Processing levelLevel 1
  • Spatial extent-180, -90, 180, 90
  • 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. All 1C products have a common L1C data structure, simple and generic. Each L1C swath includes scan time, latitude and longitude, scan status, quality, incidence angle, Sun glint angle, and the intercalibrated brightness temperature (Tc). One or more swaths are included in a product. The radiometer data are recalibrated to a common basis so that precipitation products derived from them are consistent. 1CMHS contains common calibrated brightness temperature from the MHS passive microwave instrument flown on the NOAA and METOPS satellites. Swath S1 is the only swath and has 5 channels (89.0GHzV, 157.0GHzV, 183.3GHz+/-250MHzH, 183.3GHz+/- 500MHzH, and 190.3 GHzV). MHS is very similar to AMSU-B. The scan period is 2.667s.

Get the data

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

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