Google Earth Engine ——Gridded Surface Meteorological 数据集提供了 1979 年以来美国本土的温度、降水、风、湿度和辐射的高空间分辨率(~4 公里)

简介: Google Earth Engine ——Gridded Surface Meteorological 数据集提供了 1979 年以来美国本土的温度、降水、风、湿度和辐射的高空间分辨率(~4 公里)

GRIDMET: University of Idaho Gridded Surface Meteorological Dataset

The Gridded Surface Meteorological dataset provides high spatial resolution (~4-km) daily surface fields of temperature, precipitation, winds, humidity and radiation across the contiguous United States from 1979. The dataset blends the high resolution spatial data from PRISM with the high temporal resolution data from the National Land Data Assimilation System (NLDAS) to produce spatially and temporally continuous fields that lend themselves to additional land surface modeling.

This dataset contains provisional products that are replaced with updated versions when the complete source data become available. Products can be distinguished by the value of the 'status' property. At first, assets are ingested with status='early'. After several days, they are replaced by assets with status='provisional'. After about 2 months, they are replaced by the final assets with status='permanent'.

Gridded Surface Meteorological 数据集提供了 1979 年以来美国本土的温度、降水、风、湿度和辐射的高空间分辨率(~4 公里)每日表面场。该数据集将来自 PRISM 的高分辨率空间数据与高时间来自国家土地数据同化系统 (NLDAS) 的分辨率数据,以产生空间和时间连续的场,这些场有助于额外的地表建模。

此数据集包含在完整源数据可用时替换为更新版本的临时产品。可以通过“状态”属性的值来区分产品。首先,资产以 status='early' 被摄取。几天后,它们被 status='provisional' 的资产取代。大约 2 个月后,它们将被 status='permanent' 的最终资产所取代。

Dataset Availability

1979-01-01T00:00:00 - 2021-09-09T00:00:00

Dataset Provider

University of California Merced

Collection Snippet

ee.ImageCollection("IDAHO_EPSCOR/GRIDMET")

Resolution

2.5 arc minutes

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 dataset = ee.ImageCollection('IDAHO_EPSCOR/GRIDMET')
                  .filter(ee.Filter.date('2018-08-01', '2018-08-15'));
var maximumTemperature = dataset.select('tmmx');
var maximumTemperatureVis = {
  min: 290.0,
  max: 314.0,
  palette: ['d8d8d8', '4addff', '5affa3', 'f2ff89', 'ff725c'],
};
Map.setCenter(-115.356, 38.686, 5);
Map.addLayer(maximumTemperature, maximumTemperatureVis, 'Maximum Temperature');

最大气温影像数据展示:


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