Google Earth Engine(GEE)—— GRIDMET: 爱达荷大学网格化地表气象数据集

简介: Google Earth Engine(GEE)—— GRIDMET: 爱达荷大学网格化地表气象数据集

   GRIDMET: 爱达荷大学网格化地表气象数据集

格雷德地表气象数据集提供了1979年以来美国毗连地区的温度、降水、风、湿度和辐射的高空间分辨率(约4公里)的每日地表场。该数据集将来自PRISM的高分辨率空间数据与来自国家土地数据同化系统(NLDAS)的高时间分辨率数据相融合,以产生空间和时间上的连续场,用于额外的陆地表面建模。

该数据集包含临时产品,当完整的源数据可用时,会被更新的版本所取代。产品可以通过 "状态 "属性的值来区分。起初,资产是以status='early'的方式摄入的。几天后,它们会被状态='临时'的资产所取代。大约2个月后,它们会被状态='永久'的最终资产所取代。

Dataset Availability

1979-01-01T00:00:00 -

Dataset Provider

University of California Merced

Collection Snippet

ee.ImageCollection("IDAHO_EPSCOR/GRIDMET")

Resolution

4638.3 meters

Bands Table

Name Description Min* Max* Units
pr Precipitation amount 0 690.44 mm, daily total
rmax Maximum relative humidity 1.05 100 %
rmin Minimum relative humidity 0 100 %
sph Specific humididy 0 0.02 kg/kg
srad Surface downward shortwave radiation 0 455.61 W/m^2
th Wind direction Degrees clockwise from North
tmmn Minimum temperature 225.54 314.88 K
tmmx Maximum temperature 233.08 327.14 K
vs Wind velocity at 10m 0.14 29.13 m/s
erc Energy release component 0 131.85 NFDRS fire danger index
eto Daily reference evapotranspiration 0 17.27 grass, mm
bi Burning index 0 214.2 NFDRS fire danger index
fm100 100-hour dead fuel moisture 0.28 33.2 %
fm1000 1000-hour dead fuel moisture 0.36 47.52 %
etr Daily reference evapotranspiration 0 27.02 Alfalfa, mm
vpd Mean vapor pressure deficit 0 9.83 kPa

* = Values are estimated

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

This work (METDATA, by John Abatzoglou) is in the public domain and is free of known copyright restrictions. Users should properly cite the source used in the creation of any reports and publications resulting from the use of this dataset and note the date when the data was acquired.

数据引用:

Abatzoglou J. T., Development of gridded surface meteorological data for ecological applications and modelling, International Journal of Climatology. (2012) doi:10.1002/joc.3413

下载代码:

 

var table = ee.Geometry.Polygon([ [-111.28567358070336,37.88479180709053],[-110.73635717445336,37.88479180709053],[-111.28567358070336,38.265323220490416],[-111.28567358070336,37.88479180709053] ])
Map.centerObject(table)
var date1 = ee.Date('1999-01-01')
var date2 = ee.Date('1999-01-03')
var dataset = ee.ImageCollection('IDAHO_EPSCOR/GRIDMET')
                  .filter(ee.Filter.date(date1, date2))
                  .filterBounds(table);
var tmax_p97 = dataset.select('tmmx').reduce(ee.Reducer.percentile([97])).clip(table);
var tmax_p97Vis = {
  min: 300.0,
  max: 314.0,
  palette: ['blue', 'green', 'yellow', 'orange', 'red'],
};
Map.addLayer(tmax_p97, tmax_p97Vis, 'Maximum Temperature p97');
var image = dataset.select('tmmx').mean().clip(table);
var projection = image.projection().getInfo()
Export.image.toDrive({
  image: tmax_p97, 
  description: 'Max_temp_p97_',
  scale: 4638.3, 
  maxPixels: 1e13,
  crs: 'EPSG:3857',
  crsTransform: projection.transform, 
  region: table
});

image.png


相关文章
|
7月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2691 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
7月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
251 0
|
7月前
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
141 0
|
7月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
662 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
7月前
|
API Go 网络架构
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
369 4
|
7月前
|
机器学习/深度学习 存储 人工智能
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
255 3
|
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