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',
  })

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


相关文章
|
11天前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
737 0
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
11天前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
119 0
|
11天前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
280 0
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
11天前
|
API Go 网络架构
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
110 4
|
11天前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
36 0
|
11天前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
51 0
|
11天前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
28 0
|
11天前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
56 0
|
11天前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
29 0
|
11天前
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“.
49 0

热门文章

最新文章