AI-generated Key Takeaways
-
This MODIS dataset (MYD17A3H V6) provides annual Net Primary Productivity (NPP) data at 500m resolution from 2002 to 2014.
-
NPP is calculated from the sum of 8-day Net Photosynthesis (PSN) values, derived as the difference between Gross Primary Productivity (GPP) and Maintenance Respiration (MR).
-
This dataset has been superseded by a newer version, MODIS/006/MYD17A3HGF, which users are encouraged to utilize instead.
-
The data is freely available for use, sale, or redistribution without restrictions.
-
An alternative version of this product with 1km resolution, produced by the Numerical Terradynamic Simulation Group (NTSG), is available as MODIS/055/MOD17A3.

- Dataset Availability
- 2002-01-01T00:00:00Z–2014-01-01T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 1 Year
- Tags
Description
The MYD17A3H V6 product provides information about annual Net Primary Productivity (NPP) at 500m pixel resolution. Annual NPP is derived from the sum of the 45 8-day Net Photosynthesis (PSN) products (MYD17A2H) from the given year. The PSN value is the difference of the GPP and the Maintenance Respiration (MR) (GPP-MR).
This is a NASA version of this product. Another version is produced by the Numerical Terradynamic Simulation Group (NTSG), University of Montana (UMT). The NTSG version corrects the problem with cloud-contaminated MODIS LAI-FPAR inputs to the MOD17 algorithm, but its resolution is 1km. It is ingested into Earth Engine as MODIS/055/MOD17A3.
For further details regarding the differences between the NTSG and NASA versions of this product, please consult this document .
Bands
Pixel Size
500 meters
Bands
Name | Units | Min | Max | Scale | Pixel Size | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Npp |
kg*C/m^2 | -3000 | 32700 | 0.0001 | meters | Net primary productivity |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Npp_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/006/MYD17A3H') .filter(ee.Filter.date('2014-01-01', '2014-05-01')); var npp = dataset.select('Npp'); var nppVis = { min: 0.0, max: 19000.0, palette: ['bbe029', '0a9501', '074b03'], }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(npp, nppVis, 'NPP');