How tall the tree canopy is, from aircraft (G-LiHT)
What it measures. Maps the maximum height of the tree canopy and how much that height varies across an area, giving a picture of forest structure.
How it's made. Built from laser (LiDAR) measurements flown by NASA's airborne G-LiHT system over specific areas, delivered as a 1-meter-resolution map.
How & where you'd use it. Supports studies of biodiversity, forest carbon, and climate change by showing how tall and uneven forests are across North American sites.
What's measured
Coverage & cadence
- Time span2011-06-30 → ongoing
- Measured byG-LiHT (Headwall, Riegl Airborne Lidar)
- Processing levelLevel 3
- Spatial extent-170, 10, -50, 73
- FormatsGeoTIFF
- StatusACTIVE
What you can do with it
- Map vegetation, forests and biomass
- Monitor ecosystem productivity and carbon
- Support habitat and biodiversity studies
Official description
Goddard’s LiDAR, Hyperspectral, and Thermal Imager ([G-LiHT](https://gliht.gsfc.nasa.gov/)) mission utilizes a portable, airborne imaging system that aims to simultaneously map the composition, structure, and function of terrestrial ecosystems. G-LiHT primarily focuses on a broad diversity of forest communities and ecoregions in North America, mapping aerial swaths over the Conterminous United States (CONUS), Alaska, Puerto Rico, and Mexico. The purpose of G-LiHT’s Canopy Height Model data product (GLCHMT) is to provide LiDAR-derived maximum canopy height and canopy variability information to aid in the study and analysis of biodiversity and climate change. Scientists at NASA’s Goddard Space Flight Center began collecting data over locally-defined areas in 2011 and that the collection will continue to grow as aerial campaigns are flown and processed. GLCHMT data are processed as a raster data product (GeoTIFF) at a nominal 1 meter spatial resolution over locally-defined areas. A low resolution browse is also provided showing the canopy height with a color map applied in JPEG format.
Get the data
import earthaccess
earthaccess.login(strategy="netrc") # free Earthdata Login
results = earthaccess.search_data(
short_name="GLCHMT",
version="001",
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 LPCLOUD Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.