Full catalog/MIB2GEOP
MIB2GEOP·v002·dataset

Viewing-angle geometry for the multi-angle camera (MISR)

MISR Geometric Parameters V002
land NASA LARC_CLOUD Level 1B HDF-EOS2
In plain English

What it measures. The sun and viewing angles for the MISR instrument's nine differently-pointed cameras, measured at Earth's reference surface.

How it's made. Produced from the multi-angle MISR camera system on NASA's Terra satellite, which images each spot on the ground from nine directions.

How & where you'd use it. A geometry helper layer used to correctly interpret MISR's multi-angle imagery rather than a standalone science product.

What's measured

SPECTRAL/ENGINEERING › PLATFORM CHARACTERISTICS › VIEWING GEOMETRY

Coverage & cadence

  • Time span1999-12-18 → 2022-10-12
  • Measured byTerra (MISR)
  • Processing levelLevel 1B
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS2
  • StatusCOMPLETE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

Multi-angle Imaging SpectroRadiometer (MISR) is designed to view Earth with cameras pointed in 9 different directions. As the instrument flies overhead, each piece of Earth's surface below is successfully imaged by all nine cameras in 4 wavelengths (blue, green, red, and near-infrared). The goal of MISR is to improve our understanding of the fate of sunlight in Earth's environment and distinguish different types of clouds, particles, and surfaces. Specifically, MISR monitors the monthly, seasonal, and long-term trends in three areas: 1) amount and type of atmospheric particles (aerosols), including those formed by natural sources and by human activities; 2) amounts, types, and heights of clouds, and 3) distribution of land surface cover, including vegetation canopy structure. MISR Geometric Parameters V002 contains the Geometric Parameters which measure the sun and view angles at the reference ellipsoid

Get the data

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

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