- Dataset Availability
- 2000-02-18T00:00:00Z–2021-01-01T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Earth Engine Snippet
-
ee.ImageCollection("MODIS/006/MOD17A3HGF")
- Tags
Description
The MOD17A3HGF V6 product provides information about annual Net Primary Productivity (NPP) at 500m pixel resolution. Annual NPP is derived from the sum of all 8-day Net Photosynthesis (PSN) products (MOD17A2H) from the given year. The PSN value is the difference of the Gross Primary Productivity (GPP) and the Maintenance Respiration (MR) (GPP-MR).
Bands
Resolution
500 meters
Bands
Name | Units | Min | Max | Scale | Description |
---|---|---|---|---|---|
Npp |
kg*C/m^2 | -30000 | 32700 | 0.0001 | Net primary productivity |
Npp_QC |
% | 0 | 100 | Quality control percentage |
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:
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/MOD17A3HGF'); var visualization = { bands: ['Npp'], min: 0, max: 19000, palette: ['bbe029', '0a9501', '074b03'] }; Map.setCenter(6.746, 46.529, 3); Map.addLayer(dataset, visualization, 'NPP');