Full catalog/MODISA_L3b_FLH
MODISA_L3b_FLH·v2022.0·dataset

How much ocean plants fluoresce (Aqua MODIS)

Aqua MODIS Level-3 Global Binned Fluorescence Line Height (FLH) Data, version 2022.0
ocean NASA OB_CLOUD Level 3 active netCDF-4
In plain English

What it measures. Measures the faint red glow that ocean phytoplankton give off (fluorescence), expressed as how high that glow rises above the surrounding light. Higher values often mean active blooms.

How it's made. Computed from ocean-color readings by the MODIS instrument on the Aqua satellite, binned into a global Level-3 product.

How & where you'd use it. Widely used to detect and track harmful algal blooms, find productive waters, and gauge phytoplankton health, though it gets less reliable in murky coastal waters.

What's measured

Oceans › Ocean Optics › FluorescenceBIOSPHERE › ECOSYSTEMS › AQUATIC ECOSYSTEMSBIOSPHERE › VEGETATION › SOLAR INDUCED FLUORESCENCEBIOSPHERE › ECOSYSTEMS › AQUATIC ECOSYSTEMS › PLANKTON › PHYTOPLANKTON

Coverage & cadence

  • Time span2002-07-04 → ongoing
  • Measured byAqua (MODIS)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4
  • StatusACTIVE

What you can do with it

  • Watch sea-surface temperature and marine heatwaves
  • Spot algal blooms and ocean-colour shifts
  • Support fisheries and coastal monitoring
Official description

The Fluorescence Line Height (FLH) data suite quantifies the red chlorophyll-a fluorescence (~678–683 nm) emitted by phytoplankton, computed as the height of the measured water-leaving radiance above a spectrally interpolated baseline. FLH is widely used for HAB detection and tracking, identifying productive waters, and assessing phytoplankton physiology; values tend to be elevated in active blooms and can be reduced in complex waters. As with all ocean-color products, uncertainties increase in optically complex coastal/inland waters, so users should refer to mission/algorithm notes for details. Geophysical variables in this suite include: - nflh — Normalized Fluorescence Line Height (W m⁻² µm⁻¹ sr⁻¹) - ipar — Instantaneous Photosynthetically Available Radiation (mol photons m⁻² s⁻¹)

Get the data

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

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