AI-generated Key Takeaways
-
This MOD17A3H V6 product provides annual Net Primary Productivity (NPP) data at 500m resolution, derived from 8-day Net Photosynthesis products.
-
The dataset covers the period from 2000-01-01 to 2014-01-01 and has been superseded by a newer version (MODIS/006/MOD17A3HGF).
-
It's a NASA version, with an alternative 1km resolution version by NTSG addressing cloud contamination issues.
-
MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

- Dataset Availability
- 2000-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 MOD17A3H 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 (MOD17A2H) 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/MOD17A3H') .filter(ee.Filter.date('2014-01-01', '2015-05-01')); var npp = dataset.select('Npp'); var nppVis = { min: 0, max: 19000, palette: ['bbe029', '0a9501', '074b03'], }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(npp, nppVis, 'NPP');