Total water vapor in the air (MODIS Aqua, near-real-time)
What it measures. The total amount of water vapor in a column of air from the ground to the top of the atmosphere, over clear land, sun-lit ocean, and above clouds.
How it's made. Produced from the MODIS instrument on NASA's Aqua satellite as an improved Collection 6.1 near-real-time product, measuring how water vapor weakens near-infrared and infrared light.
How & where you'd use it. Helps with weather monitoring and atmospheric research; the near-real-time delivery makes it handy for keeping an eye on rapidly changing moisture conditions.
What's measured
Coverage & cadence
- Time span2017-10-20 → ongoing
- Measured byAQUA (MODIS)
- Processing levelLevel 2
- Spatial extent-180, -90, 180, 90
- FormatsHDF-EOS
- StatusACTIVE
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
The MODIS Adaptive Processing System (MODAPS) is currently generating an improved Collection 6.1 (061) for all MODIS Level-1 (L1) and higher-level Level-2 (L2) and Level-3 (L3) Atmosphere products. This decision to create a new improved Collection 6.1 (061) was driven by the need to address a number of issues in the current Collection 6 (006) Level-1B (L1B) data. These L1B issues had a negative impact in varying degrees in downstream products. The MODIS level-2 atmospheric precipitable water product consists of total atmospheric column water vapor amounts (and ancillary parameters) over clear land areas of the globe, over extended clear oceanic areas with the Sun glint, and above clouds over both land and ocean. The shortname for this level-2 MODIS total precipitable water vapor product is MYD05_L2. In Collection 6, MODIS column water vapor (MYD05) datasets continue to be separately available from infrared and near-infrared methods. The estimates based on a near-infrared algorithm uses only daytime measurements with solar zenith angle less than 72 degrees. The retrieval algorithm relies on observations of water vapor attenuation of near-infrared solar radiation reflected by surfaces and clouds. The product is produced only over areas that have reflective surfaces in the near-infrared. The near-infrared algorithm refinement for this product is no longer being supported by NASA and as such there has been no update to this algorithm for C6.1. For more information visit MODIS Atmosphere product website at: https://modis-atmos.gsfc.nasa.gov/products/water-vapor
Get the data
import earthaccess
earthaccess.login(strategy="netrc") # free Earthdata Login
results = earthaccess.search_data(
short_name="MYD05_L2",
version="6.1NRT",
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 LANCEMODIS Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.