Google Earth Engine——NOAA气候数据记录(CDR)的AVHRR归一化植被指数(NDVI)包含从NOAA AVHRR表面反射产品中得到的网格化的每日NDVI

简介: Google Earth Engine——NOAA气候数据记录(CDR)的AVHRR归一化植被指数(NDVI)包含从NOAA AVHRR表面反射产品中得到的网格化的每日NDVI

The NOAA Climate Data Record (CDR) of AVHRR Normalized Difference Vegetation Index (NDVI) contains gridded daily NDVI derived from the NOAA AVHRR Surface Reflectance product. It provides a measurement of surface vegetation coverage activity, gridded at a resolution of 0.05° and computed globally over land surfaces.

Known issues with this dataset include:

  • TIMEOFDAY variable contains values that are too large by 1 day
  • Latitude values are not correctly associated with the center of the grid cell, error is < 0.002 degrees
  • Longitude values are not correctly associated with the center of the grid cell, error is < 0.02 degrees

See technical note from the data provider.


NOAA气候数据记录(CDR)的AVHRR归一化植被指数(NDVI)包含从NOAA AVHRR表面反射产品中得到的网格化的每日NDVI。它提供了地表植被覆盖活动的测量,网格化的分辨率为0.05°,在全球范围内对陆地表面进行计算。

这个数据集的已知问题包括。

TIMEOFDAY变量包含的数值过大,超过1天。

纬度值与网格单元的中心没有正确关联,误差<0.002度

经度值与网格单元的中心没有正确关联,误差< 0.02度

见数据提供者的技术说明。

Dataset Availability

1981-06-24T00:00:00 - 2019-05-16T00:00:00

Dataset Provider

NOAA

Collection Snippet

ee.ImageCollection("NOAA/CDR/AVHRR/NDVI/V4")

Resolution

5566 meters

Bands Table

Name Description Min* Max* Units Scale
NDVI Normalized difference vegetation index -9998 9998 0.0001
TIMEOFDAY Hours since start of day 0 2400 hours 0.01
QA Quality control bit flags 0
QA Bitmask
  • Bit 0: Unused
    • 0: No
    • 1: Yes
  • Bit 1: Pixel is cloudy
    • 0: No
    • 1: Yes
  • Bit 2: Pixel contains cloud shadow
    • 0: No
    • 1: Yes
  • Bit 3: Pixel is over water
    • 0: No
    • 1: Yes
  • Bit 4: Pixel is over sunglint
    • 0: No
    • 1: Yes
  • Bit 5: Pixel is over dense dark vegetation
    • 0: No
    • 1: Yes
  • Bit 6: Pixel is at night (high solar zenith)
    • 0: No
    • 1: Yes
  • Bit 7: Channels 1-5 are valid
    • 0: No
    • 1: Yes
  • Bit 8: Channel 1 value is invalid
    • 0: No
    • 1: Yes
  • Bit 9: Channel 2 value is invalid
    • 0: No
    • 1: Yes
  • Bit 10: Channel 3 value is invalid
    • 0: No
    • 1: Yes
  • Bit 11: Channel 4 value is invalid
    • 0: No
    • 1: Yes
  • Bit 12: Channel 5 value is invalid
    • 0: No
    • 1: Yes
  • Bit 13: RHO3 value is invalid
    • 0: No
    • 1: Yes
  • Bit 14: BRDF correction is invalid
    • 0: No
    • 1: Yes
  • Bit 15: Polar flag, latitude over 60 degrees (land) or 50 degrees (ocean)
    • 0: No
    • 1: Yes

* = Values are estimated

影像属性:

Name Type Description
status String 'provisional' or 'permanent'


使用说明:

The NOAA CDR Program’s official distribution point for CDRs is NOAA’s National Climatic Data Center which provides sustained, open access and active data management of the CDR packages and related information in keeping with the United States’ open data policies and practices as described in the President's Memorandum on "Open Data Policy" and pursuant to the Executive Order of May 9, 2013, "Making Open and Machine Readable the New Default for Government Information". In line with these policies, the CDR data sets are nonproprietary, publicly available, and no restrictions are placed upon their use. For more information, see the Fair Use of NOAA's CDR Data Sets, Algorithms and Documentation pdf


引用:

Eric Vermote, Chris Justice, Ivan Csiszar, Jeff Eidenshink, Ranga Myneni, Frederic Baret, Ed Masuoka, Robert Wolfe, Martin Claverie and NOAA CDR Program (2014): NOAA Climate Data Record (CDR) of Normalized Difference Vegetation Index (NDVI), Version 4. [indicate subset used]. NOAA National Climatic Data Center. doi:10.7289/V5PZ56R6


代码:

var dataset = ee.ImageCollection('NOAA/CDR/AVHRR/NDVI/V4')
                  .filter(ee.Filter.date('2018-05-01', '2018-06-01'));
var ndvi = dataset.select('NDVI');
var ndviVis = {
  min: -1000.0,
  max: 5000.0,
  palette: [
    'ffffff', 'ce7e45', 'fcd163', 'c6ca02', '22cc04', '99b718', '207401',
    '012e01'
  ],
};
Map.setCenter(7.71, 17.93, 2);
Map.addLayer(ndvi, ndviVis, 'NDVI');

代码:

var dataset = ee.ImageCollection('NOAA/CDR/AVHRR/NDVI/V5')
                  .filter(ee.Filter.date('2018-05-01', '2018-06-01'));
var ndvi = dataset.select('NDVI');
var ndviVis = {
  min: -1000.0,
  max: 5000.0,
  palette: [
    'ffffff', 'ce7e45', 'fcd163', 'c6ca02', '22cc04', '99b718', '207401',
    '012e01'
  ],
};
Map.setCenter(7.71, 17.93, 2);
Map.addLayer(ndvi, ndviVis, 'NDVI');

 


相关文章
|
7月前
|
传感器 编解码 API
Google Earth Engine(GEE)——如何进行NDVI和EVI指数的图表展示?
Google Earth Engine(GEE)——如何进行NDVI和EVI指数的图表展示?
152 0
|
7月前
|
传感器 编解码 区块链
Google Earth Engine(GEE)——Landsat8/modis/sentinel2 NDVI时序影像差异对比分析图表
Google Earth Engine(GEE)——Landsat8/modis/sentinel2 NDVI时序影像差异对比分析图表
194 0
|
6月前
|
机器学习/深度学习 人工智能 数据处理
人工智能平台PAI产品使用合集之PAI-DSW实例服务器ping不通google.com,该如何排查
阿里云人工智能平台PAI是一个功能强大、易于使用的AI开发平台,旨在降低AI开发门槛,加速创新,助力企业和开发者高效构建、部署和管理人工智能应用。其中包含了一系列相互协同的产品与服务,共同构成一个完整的人工智能开发与应用生态系统。以下是对PAI产品使用合集的概述,涵盖数据处理、模型开发、训练加速、模型部署及管理等多个环节。
|
7月前
|
分布式计算 Kubernetes 监控
容器服务Kubernetes版产品使用合集之registry.aliyuncs.com/google_containers 镜像仓库的地址是什么
容器服务Kubernetes版,作为阿里云提供的核心服务之一,旨在帮助企业及开发者高效管理和运行Kubernetes集群,实现应用的容器化与微服务化。以下是关于使用这些服务的一些建议和合集,涵盖基本操作、最佳实践、以及一些高级功能的使用方法。
724 0
|
7月前
|
数据可视化 数据挖掘 数据建模
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
|
7月前
|
传感器 编解码 人工智能
Google Earth Engine(GEE)——存档的NRT FIRMS全球VIIRS和MODIS火灾产品矢量数据
Google Earth Engine(GEE)——存档的NRT FIRMS全球VIIRS和MODIS火灾产品矢量数据
158 0
|
7月前
|
编解码 开发框架 人工智能
Google Earth Engine(GEE)——基于粮农组织秘鲁Penman-Monteith的参考ET网格化数据库(PISCOeo_pm)
Google Earth Engine(GEE)——基于粮农组织秘鲁Penman-Monteith的参考ET网格化数据库(PISCOeo_pm)
47 0
|
7月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2690 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
7月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
101 0
|
7月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
165 0