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 climate geophysical precipitation ucsb weather
chc

說明

氣候災害中心紅外線降水資料 (CHIRPS v3) 是 40 多年來的高解析度準全球降雨量資料集。涵蓋範圍為北緯 60 度至南緯 60 度,以及所有經度,並提供 1981 年至今的資料。CHIRPS 第 3 版結合了衛星熱紅外線降雨量估計值和現場觀測站的觀測結果,可產生陸地上 0.05° 網格的降雨量時間序列。這是資料集 3.0 版,詳情請參閱CHC 頁面

錶帶

像素大小
5566 公尺

波段

名稱 單位 最小值 最大值 像素大小 說明
precipitation mm/pentad 0* 1072.43* 公尺

降水率

* 預估最小或最大值

圖片屬性

影像屬性

名稱 類型 說明
個月 DOUBLE

pentad DOUBLE

Pentad

DOUBLE

使用條款

使用條款

這個資料集屬於公有領域,在法律允許的範圍內,Pete Peterson 已放棄「Climate Hazards Center Infrared Precipitation with Stations (CHIRPS)」的所有著作權和相關或鄰近權利。

參考資料

參考資料:
  • 氣候災害中心紅外線降水資料 (含氣象站資料) 第 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');
在程式碼編輯器中開啟