- Dataset Availability
- 1981-07-01T00:00:00Z–2013-12-16T00:00:00Z
- Dataset Provider
- NASA/NOAA
- Earth Engine Snippet
-
ee.ImageCollection("NASA/GIMMS/3GV0")
- Tags
Description
GIMMS NDVI is generated from several NOAA's AVHRR sensors for a global 1/12-degree lat/lon grid. The latest version of the GIMMS NDVI dataset is named NDVI3g (third generation GIMMS NDVI from AVHRR sensors).
Bands
Resolution
9277 meters
Bands
Name | Min | Max | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ndvi |
-1 | 1 | NDVI |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
qa |
QA flag |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terms of Use
Terms of Use
This dataset is in the public domain and is available without restriction on use and distribution. See NASA's Earth Science Data & Information Policy for additional information.
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('NASA/GIMMS/3GV0') .filter(ee.Filter.date('2013-06-01', '2013-12-31')); var ndvi = dataset.select('ndvi'); var ndviVis = { min: -1.0, max: 1.0, palette: ['000000', 'f5f5f5', '119701'], }; Map.setCenter(-88.6, 26.4, 1); Map.addLayer(ndvi, ndviVis, 'NDVI');