CHIRPS Precipitation Pentad: Climate Hazards Center InfraRed Precipitation With Station Data (Version 3.0)

UCSB-CHC/CHIRPS/V3/PENTAD
数据集可用时间
1981-01-01T00:00:00Z–2025-10-26T00:00:00Z
数据集提供方
Earth Engine 代码段
ee.ImageCollection("UCSB-CHC/CHIRPS/V3/PENTAD")
频率
1 Custom_time_unit
标签
chg 气候 地球物理 降水 ucsb 天气
chc

说明

Climate Hazards Center Infrared Precipitation with Stations (CHIRPS v3) 是一项持续 40 多年的高分辨率准全球降雨数据集。该数据集涵盖了从 60°N 到 60°S 的纬度范围,以及所有经度,并提供从 1981 年至今的数据。CHIRPS v3 将基于卫星的热红外降雨量估计值与实地观测站观测结果相结合,生成陆地上 0.05° 网格化的降雨量时间序列。这是数据集的 3.0 版,如需了解详情,请参阅 CHC 页面

频段

像素大小
5,566 米

波段

名称 单位 最小值 最大值 像素大小 说明
precipitation 毫米/五天 0* 1072.43*

降水概率

* 估计的最小值或最大值

图像属性

图片属性

名称 类型 说明
双精度

pentad 双精度

Pentad

双精度

使用条款

使用条款

此数据集属于公共领域。在法律允许的最大范围内,Pete Peterson 已放弃对“Climate Hazards Center Infrared Precipitation with Stations (CHIRPS)”的所有版权及相关权利或邻接权。

引用

引用:
  • Climate Hazards Center Infrared Precipitation with Stations 版本 3. CHIRPS3 数据代码库 doi:10.15780/G2JQ0P (2025)。

通过 Earth Engine 探索

代码编辑器 (JavaScript)

var dataset = ee.ImageCollection('UCSB-CHC/CHIRPS/V3/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', '#2c7fb8', '#253494'],
};
Map.setCenter(17.93, 7.71, 2);
Map.addLayer(precipitation, precipitationVis, 'Precipitation');
在代码编辑器中打开