- Dataset Availability
- 2001-01-01T00:00:00Z–2021-12-19T00:00:00Z
- Dataset Provider
- University of Montana Numerical Terradynamic Simulation Group (NTSG)
- Earth Engine Snippet
-
ee.ImageCollection("UMT/NTSG/v2/MODIS/GPP")
- Tags
Description
The MODIS Gross Primary Production (GPP) CONUS dataset estimates GPP using MODIS Surface Reflectance for CONUS. GPP is the amount of carbon captured by plants in an ecosystem and is an essential component in the calculations of Net Primary Production (NPP). GPP is calculated using the MOD17 algorithm (see MOD17 User Guide) with MODIS Surface Reflectance, gridMET, and the National Land Cover Database.
Bands
Resolution
250 meters
Bands
Name | Units | Min | Max | Scale | Description |
---|---|---|---|---|---|
GPP |
kg*C/m^2/8-day | 0 | 65535 | 0.0001 | 8-day gross primary production |
QC |
0 | 1 | Indicates if the original NDVI value was adjusted through the smoothing algorithm. 0 denotes the value was not adjusted. 1 indicates the value was adjusted. |
Terms of Use
Terms of Use
This work is in the public domain and is free of known copyright restrictions. Users should properly cite the source used in the creation of any reports and publications resulting from the use of this dataset and note the date when the data was acquired.
Citations
Robinson, N.P., B.W. Allred, W.K. Smith, M.O. Jones, A. Moreno, T.A. Erickson, D.E. Naugle, and S.W. Running. 2018. Terrestrial primary production for the conterminous United States derived from Landsat 30 m and MODIS 250 m. Remote Sensing in Ecology and Conservation. doi:10.1002/rse2.74
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('UMT/NTSG/v2/MODIS/GPP') .filter(ee.Filter.date('2017-05-01', '2017-05-31')); var gpp = dataset.select('GPP'); var gppVis = { min: 0.0, max: 1000.0, palette: ['bbe029', '0a9501', '074b03'], }; Map.setCenter(-98.26, 39.32, 5); Map.addLayer(gpp, gppVis, 'GPP');