MOD17A2H.006: Terra Gross Primary Productivity 8-Day Global 500m [deprecated]

  • This MOD17A2H V6 dataset provides Gross Primary Productivity (GPP) data, an 8-day composite at 500m resolution, calculated using the radiation-use efficiency concept.

  • This dataset has been superseded by a newer version, MODIS/061/MOD17A2H, which users are encouraged to utilize instead.

  • It covers the period from 2000-02-18 to 2023-02-10 and includes bands for GPP, Net Photosynthesis (PsnNet), and quality control.

  • MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

  • Users can explore and analyze this dataset further using Google Earth Engine.

MODIS/006/MOD17A2H
Dataset Availability
2000-02-18T00:00:00Z–2023-02-10T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/006/MOD17A2H")
Cadence
8 Days
Tags
8-day
global
gpp
mod17a2
modis
nasa
photosynthesis
plant-productivity
productivity
psn
terra
usgs

Description

The MOD17A2H V6 Gross Primary Productivity (GPP) product is a cumulative 8-day composite with a 500m pixel size. The product is based on the radiation-use efficiency concept and 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

Citations:

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('MODIS/006/MOD17A2H')
                  .filter(ee.Filter.date('2018-01-01', '2018-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');
Open in Code Editor