- 数据集可用时间
- 1981-01-01T00:00:00Z–2026-03-26T00:00:00Z
- 数据集生产者
- UCSB/CHG
- 步频
- 1 Custom_time_unit
- 标签
说明
气候灾害中心红外降水与站点数据 (CHIRPS) 是一个准全球降雨量数据集,包含 30 多年的数据。CHIRPS 将分辨率为 0.05° 的卫星图像与实地站点数据相结合,创建网格化降雨量时间序列,用于趋势分析和季节性干旱监测。
频段
频段
像素大小:5566 米(所有频段)
| 名称 | 单位 | 最小值 | 全速 | 像素大小 | 说明 |
|---|---|---|---|---|---|
precipitation |
毫米/五日 | 0* | 1072.43* | 5566 米 | 降水概率 |
图像属性
图像属性
| 名称 | 类型 | 说明 |
|---|---|---|
| month | 双精度 | 月 |
| pentad | 双精度 | 五日 |
| year | 双精度 | 年 |
使用条款
使用条款
这些数据集属于公共领域。在法律允许的最大范围内, Pete Peterson 已放弃对 气候灾害中心红外降水与站点数据 (CHIRPS) 的所有版权及相关或邻接权利。
引用
引用:
Funk, Chris, Pete Peterson, Martin Landsfeld, Diego Pedreros, James Verdin, Shraddhanand Shukla, Gregory Husak, James Rowland, Laura Harrison, Andrew Hoell &Joel Michaelsen. "The climate hazards infrared precipitation with stations-a new environmental record for monitoring extremes". Scientific Data 2, 150066. doi:10.1038/sdata.2015.66 2015.
通过 Earth Engine 探索
代码编辑器 (JavaScript)
var dataset = ee.ImageCollection('UCSB-CHG/CHIRPS/PENTAD') .filter(ee.Filter.date('2018-05-01', '2018-05-05')); var precipitation = dataset.select('precipitation'); var precipitationVis = { min: 0, max: 112, palette: ['001137', '0aab1e', 'e7eb05', 'ff4a2d', 'e90000'], }; Map.setCenter(17.93, 7.71, 2); Map.addLayer(precipitation, precipitationVis, 'Precipitation');