AI-generated Key Takeaways
-
The MOD17A2HGF V6.1 product provides an 8-day composite of Gross Primary Productivity (GPP) at 500m resolution, derived using the radiation use efficiency concept.
-
This dataset, spanning from 2021-01-01 to 2023-12-27, offers insights into terrestrial energy, carbon, water cycles, and vegetation biogeochemistry.
-
Key bands include GPP, Net Photosynthesis (PsnNet), and a quality control band (Psn_QC).
-
Data is freely available for use, sale, or redistribution with proper citation attributed to NASA LP DAAC at the USGS EROS Center.
-
Users can access and analyze the dataset via Google Earth Engine, with code snippets provided for seamless integration.

- Dataset Availability
- 2021-01-01T00:00:00Z–2024-12-26T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MOD17A2HGF Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day composite of values with 500 meter (m) pixel size based on the radiation use efficiency concept that can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation.
Documentation:
Bands
Pixel Size
500 meters
Bands
Name | Units | Min | Max | Scale | Pixel Size | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Gpp |
kg*C/m^2 | 0 | 3000 | 0.0001 | meters | Gross primary production |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PsnNet |
kg*C/m^2 | -3000 | 3000 | 0.0001 | meters | Net photosynthesis; GPP minus the maintenance respiration (MR) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Psn_QC |
meters | Quality control bits |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terms of Use
Terms of Use
MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.
Citations
Please visit LP DAAC 'Citing Our Data' page for information on citing LP DAAC datasets.
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('MODIS/061/MOD17A2HGF') .filter(ee.Filter.date('2021-01-01', '2021-05-01')); var gpp = dataset.select('Gpp'); var gppVis = { min: 0, max: 600, palette: ['bbe029', '0a9501', '074b03'], }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(gpp, gppVis, 'GPP');