前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >GEE数据集——NOAA全球蒸发应力指数 (ESI)

GEE数据集——NOAA全球蒸发应力指数 (ESI)

作者头像
此星光明
发布2024-02-02 09:16:42
2400
发布2024-02-02 09:16:42
举报

NOAA 蒸发应力指数 (ESI)

蒸发应力指数 (ESI) 由 NOAA 卫星应用与研究中心 (STAR) 和 USDA-ARS 水文与遥感实验室制定。蒸发应力指数 (ESI) 是异常蒸散条件的热指标,可用于干旱监测。蒸发压力指数 (ESI) 描述蒸散量 (ET) 的时间异常,突出显示地表用水率异常高或低的区域。此处,ET 是使用遥感地表温度 (LST) 时间变化信号通过能量平衡来检索的。LST 是一个快速响应变量,以相对较高的空间分辨率提供有关快速变化的表面土壤湿度和作物胁迫条件的代理信息。ESI 还展示了捕捉“突发干旱”早期信号的能力,“突发干旱”是由于长时间的炎热、干燥和多风条件导致土壤水分快速消耗而引起的。您可以在此处获取有关此数据集的更多信息前言 – 人工智能教程,并在此处获取气候引擎组织数据页面

Evaporative Stress Index(ESI)是一项用于测量植物在区域层面上干旱或水分压力的工具。它是一种干旱指数,利用卫星数据估计土壤和植物表面水分蒸发的速率。ESI计算使用空气温度、湿度、风速和太阳辐射的数据。该指数的范围为0到5,其中0表示没有压力,5表示严重压力。ESI有助于监测和预测农业地区的干旱情况、作物产量和水资源可用性。

蒸发压力指数 (ESI) 描述蒸散量 (ET) 的时间异常,突出显示地表用水率异常高或低的区域。此处,ET 是使用遥感地表温度 (LST) 时间变化信号通过能量平衡来检索的。LST 是一个快速响应变量,以相对较高的空间分辨率提供有关快速变化的表层土壤湿度和作物胁迫条件的代理信息。ESI 还展示了捕捉“突发干旱”早期信号的能力,“突发干旱”是由于长时间的炎热、干燥和多风条件导致土壤水分快速消耗而引起的。

空间信息

范围

价值

空间范围

全球的

空间分辨率

4 公里(1/24 度)

时间分辨率

每周

时间跨度

2001年1月1日至今

更新频率

每周更新,滞后 1 周

变量

多变的

细节

4 周蒸发应力指数 ('ESI_4wk')

- 单位:无单位

- 比例因子:1.0

12 周蒸发应力指数 ('ESI_12wk')

- 单位:无单位

- 比例因子:1.0

引文
代码语言:javascript
复制
- Anderson, M. C., J. M. Norman, G. R. Diak, W. P. Kustas, and J. R. Mecikalski, 1997: A two-source time-integrated model for estimating surface
fluxes using thermal infrared remote sensing. Remote Sens. Environ., 60, 195-216.

- Anderson, M. C., J. M. Norman, J. R. Mecikalski, J. P. Otkin, and W. P. Kustas, 2007a: A climatological study of evapotranspiration and moisture
stress across the continental U.S. based on thermal remote sensing: I. Model formulation. J. Geophys. Res., 112, D10117, doi:10110.11029/
12006JD007506.

- Anderson, M. C., J. M. Norman, J. R. Mecikalski, J. P. Otkin, and W. P. Kustas, 2007b: A climatological study of evapotranspiration and moisture
stress across the continental U.S. based on thermal remote sensing: II. Surface moisture climatology. J. Geophys. Res., 112, D11112, doi:11110.11029/
12006JD007507.

- Anderson, M. C., C. R. Hain, B. Wardlow, J. R. Mecikalski, and W. P. Kustas (2011), Evaluation of a drought index based on thermal remote sensing
of evapotranspiration over the continental U.S., J. Climate, 24, 2025-2044.

- McKee, T. B., N. J. Doesken, and J. Kleist, 1993: The relationship of drought frequency and duration to time scales. AMS Eighth conf. on Applied
Climatology, Anaheim, CA, 179-184.

- McKee, T. B., N. J. Doesken, and J. Kleist, 1995: Drought monitoring with multiple time scales. AMS Ninth conf. on Applied Climatology, Dallas,
TX, 233-236.

- Norman, J. M., W. P. Kustas, and K. S. Humes, 1995: A two-source approach for estimating soil and vegetation energy fluxes from observations of
directional radiometric surface temperature. Agric. For. Met., 77, 263-293.

- Svoboda, M., and Coauthors, 2002: The Drought Monitor. Bull. Amer. Meteorol. Soc., 83, 1181-1190.
地球引擎片段
代码语言:javascript
复制
// Read in Image Collection and get first image
var esi_4wk_ic = ee.ImageCollection('projects/climate-engine/esi/4wk')
var esi_4wk_i = esi_4wk_ic.filterDate('2020-08-01', '2020-08-10').first()
var esi_12wk_ic = ee.ImageCollection('projects/climate-engine/esi/12wk')
var esi_12wk_i = esi_12wk_ic.filterDate('2020-08-01', '2020-08-10').first()

// Print first image to see bands
print(esi_4wk_i)
print(esi_12wk_i)

// Visualize select bands from first image — additional bands are present in the Image Collection
var esi_palette = ["#0000aa", "#0000ff", "#00aaff", "#00ffff", "#aaff55", "#ffffff", "#ffff00", "#fcd37f", "#ffaa00", "#e60000", "#730000"]
Map.addLayer(esi_4wk_i.select('ESI'), {min: -2.5, max: 2.5, palette: esi_palette}, 'ESI_4wk')
Map.addLayer(esi_12wk_i.select('ESI'), {min: -2.5, max: 2.5, palette: esi_palette}, 'ESI_12wk')

示例代码:https://code.earthengine.google.com/ ?scriptPath=users/sat-io/awesome-gee-catalog-examples:agriculture-vegetation-forestry/GLOBAL-ESI-10KM

执照

NOAA 数据、信息和产品,无论采用何种交付方式,均不受版权保护,并且公众后续使用不受限制。一旦获得,它们就可以用于任何合法用途。上述数据属于公共领域,提供时不受使用和分发限制。欲了解更多信息,请访问 NWS 免责声明网站。

关键词:干旱、植被、遥感、气候、USDA-ARS、NOAA、MODIS、LST、全球、近实时

由 NOAA、USDA-ARS 提供

GEE 策划者:Climate Engine Org

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • NOAA 蒸发应力指数 (ESI)¶
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档