Google Earth Engine(GEE)——大尺度范围的GIMMS NDVI From AVHRR Sensors (3rd Generation)如何下载?

简介: Google Earth Engine(GEE)——大尺度范围的GIMMS NDVI From AVHRR Sensors (3rd Generation)如何下载?

问题:NOAA的GIMMS NDVI怎么下载吗?

今天有个粉丝问到数据如何下载,按我们简单写一篇博客来分析一下,其实很简单。


数据集:GIMMS NDVI From AVHRR Sensors (3rd Generation)

Dataset Availability

1981-07-01T00:00:00 - 2013-12-31T00:00:00

Dataset Provider

NASA/NOAA

Collection Snippet

Copied

ee.ImageCollection("NASA/GIMMS/3GV0")

Resolution

9277 meters

Bands Table

Name Description Min Max
ndvi NDVI -1 1
qa QA flag
qa Bitmask
  • Bits 0-2: QA flag values
    • 1: Good value
    • 2: Good value
    • 3: NDVI retrieved from spline interpolation
    • 4: NDVI retrieved from spline interpolation, possibly snow
    • 5: NDVI retrieved from average seasonal profile
    • 6: NDVI retrieved from average seasonal profile, possibly snow
    • 7: Missing data


代码:

var hh= ee.FeatureCollection("users/bqt2000204051/shanxijie");
var start = ee.Date.fromYMD(2000,1,1);
var end = ee.Date.fromYMD(2000,12,31);
var scol= ee.ImageCollection("NASA/GIMMS/3GV0")
          .filterBounds(hh)
          .filterDate(start,end);
var ndvi_before =scol.qualityMosaic('ndvi').clip(hh);
Map.addLayer(ndvi_before, {}, 'scolNDVI');
Export.image.toDrive({
    image: ndvi_before.select('ndvi'),
    region:hh,
    scale:1000,
    description: "shanxi_ndvi_2000",
    folder: 'shanxi_NDVI',
  })

大家换自己的矢量区域区下载就行了,不过分辨率很低,建议大家自己把握!


相关文章
|
7月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2692 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
7月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
252 0
|
7月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
662 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
7月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
124 0
|
7月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
101 0
|
7月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
165 0
|
7月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
88 0
|
7月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
291 0
|
7月前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
148 0
|
7月前
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
136 0