samapriya / awesome-gee-community-datasets

Community Datasets added by users and made available for use at large
https://gee-community-catalog.org/
Creative Commons Attribution 4.0 International
783 stars 125 forks source link

Evaporative Stress Index (ESI) #164

Closed EricRJensen closed 1 year ago

EricRJensen commented 1 year ago

Contact Details

ClimateEngine.org staff, climateengine@gmail.com

Dataset description

Description The Evaporative Stress Index (ESI) is produced by the NOAA Center for Satellite Applications and Research (STAR) and USDA-ARS Hydrology and Remote Sensing Laboratory. The Evaporative Stress Index (ESI) is a thermal indicator of anomalous ET conditions that can be used for drought monitoring. The Evaporative Stress Index (ESI) describes temporal anomalies in evapotranspiration (ET), highlighting areas with anomalously high or low rates of water use across the land surface. Here, ET is retrieved via energy balance using remotely sensed land-surface temperature (LST) time-change signals. LST is a fast- response variable, providing proxy information regarding rapidly evolving surface soil moisture and crop stress conditions at relatively high spatial resolution. The ESI also demonstrates capability for capturing early signals of “flash drought”, brought on by extended periods of hot, dry and windy conditions leading to rapid soil moisture depletion.

Spatial extent: Global Spatial resolution: 4-km (1/24-deg) Temporal resolution: Weekly Time span: 2001-01-01 to present Update frequency: Updated weekly with 1 week lag

Variables 4-week Evaporative Stress Index (‘ESI_4wk’)

12-week Evaporative Stress Index (‘ESI_12wk’)

External link https://www.drought.gov/data-maps-tools/evaporative-stress-index-esi

Citation

Link to Documentation https://support.climateengine.org/article/60-esi

Earth Engine Snippet if dataset already in GEE

// 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')

Enter license information

NOAA data, information, and products, regardless of the method of delivery, are not subject to copyright and carry no restrictions on their subsequent use by the public. Once obtained, they may be put to any lawful use. The forgoing data is in the public domain and is being provided without restriction on use and distribution. For more information visit the NWS disclaimer site.

Keywords

Drought, vegetation, remote sensing, climate, USDA-ARS, NOAA, MODIS, LST, global, near real-time

Code of Conduct

samapriya commented 1 year ago

Check changelog on next release. This has now been conditionally completed