GEE | 1901-2022年全球0.5°标准化降水蒸散指数SPEI数据集

职场   2024-12-26 22:04   陕西  

Product: Beguería, Santiago; Vicente Serrano, Sergio M.; Reig-Gracia, Fergus; Latorre Garcés, Borja; 2023; SPEIbase v.2.9 [Dataset]; DIGITAL.CSIC; Version 2.9. doi:10.20350/digitalCSIC/15470

一、数据说明
SPEIbase(全球标准化降水-蒸散指数数据库)提供了全球尺度上干旱状况的长期可靠信息,空间分辨率为0.5度,时间分辨率为月度,可支持从1至48个月的多时间尺度分析。标准化降水-蒸散指数(SPEI)通过标准化变量量化当前气候平衡相对于长期平衡的偏差,确保了时空上的可比性。
二、GEE代码
以SPEI_01_month为例,print月度SPEI变化并导出栅格数据。
var geometry = table;Map.centerObject(geometry, 7);
var dataset = ee.ImageCollection("CSIC/SPEI/2_9") .filterDate('2000-01-01', '2000-12-31') .filterBounds(geometry) .select('SPEI_01_month');
var subtract = function(image) { return image.set('system:time_start', image.get('system:time_start'));};dataset = dataset.map(subtract);
print(ui.Chart.image.series(dataset, geometry, ee.Reducer.mean(), 55660));
function exportImageCollection(imageCollection, geometry) { imageCollection.aggregate_array('system:index').evaluate(function(indexList) { indexList.forEach(function(index) { var image = imageCollection.filter(ee.Filter.eq('system:index', index)).first(); Export.image.toDrive({ image: image.clip(geometry), description: 'SPEI_01_month_' + index, fileNamePrefix: 'SPEI_01_month_' + index, folder: 'SPEI_exports', region: geometry, scale: 1000, crs: 'EPSG:4326', maxPixels: 1e13 }); }); });}
exportImageCollection(dataset, geometry);
三、成为会员

GIS遥感数据处理应用
会员:数据处理,ArcGIS/Python/MATLAB/R/GEE教学,指导作图和论文。
 最新文章