Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
GIMMS NDVI From AVHRR Sensors (3rd Generation)
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
说明
GIMMS NDVI 是根据 NOAA 的多个 AVHRR 传感器生成的,适用于全球 1/12 度经纬度网格。GIMMS NDVI 数据集的最新版本名为 NDVI3g(来自 AVHRR 传感器的第三代 GIMMS NDVI)。
频段
波段
像素大小:9277 米(所有波段)
| 名称 |
最小值 |
最大值 |
像素大小 |
说明 |
ndvi |
-1
|
1
|
9277 米
|
NDVI |
qa |
|
|
9277 米
|
QA 标志 |
|
质量保证位掩码
-
位 0-2:QA 标志值
- 1:性价比高
- 2:性价比高
- 3:从样条插值中检索到的 NDVI
- 4:从样条插值检索到的 NDVI,可能存在积雪
- 5:从平均季节性剖面检索到的 NDVI
- 6:从平均季节性剖面检索到的 NDVI,可能为雪
- 7:缺少数据
|
通过 Earth Engine 探索
代码编辑器 (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');
在代码编辑器中打开
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],[],[],[]]