- 資料集開放期間
- 1998-01-01T00:00:00Z–2019-12-31T21:00:00Z
- 資料集產生者
- NASA Goddard Space Flight Center 的 NASA GES DISC
- 行銷系列活動
- 3 小時
- 標記
說明
熱帶降雨測量任務 (TRMM) 是 NASA 和日本宇宙航空研究開發機構 (JAXA) 的聯合任務,旨在監測和研究熱帶降雨。34B2 產品包含網格化、經 TRMM 調整的合併紅外線降水量 (公釐/小時) 和 RMS 降水誤差估計值,時間解析度為 3 小時,空間解析度為 0.25 度。
說明文件:
頻帶
波段
像素大小:27830 公尺 (所有頻段)
| 名稱 | 單位 | 最小值 | 最大值 | 像素大小 | 說明 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
precipitation |
公釐/小時 | 0 | 100 | 27830 公尺 | 合併微波/紅外線降雨量預估 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
relativeError |
公釐/小時 | 0 | 100 | 27830 公尺 | 合併微波/紅外線降水隨機誤差估計值 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
satPrecipitationSource |
27830 公尺 | 顯示資料來源的旗標 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HQprecipitation |
公釐/小時 | 0 | 100 | 27830 公尺 | 微波降雨量預估值 (已調整雨量計) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IRprecipitation |
公釐/小時 | 0 | 100 | 27830 公尺 | 已調整雨量計的紅外線降雨量預估值 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
satObservationTime |
分鐘 | -90 | 90 | 27830 公尺 | 衛星觀測時間減去微粒時間。 如果衛星觀測結果重疊,系統會平均計算兩個以上的觀測時間。 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
使用條款
使用條款
這個資料集屬於公有領域內容,使用和散布均不受任何限制。詳情請參閱 NASA 的地球科學資料和資訊政策。
參考資料
Adler, R.F.、G.J. Huffman、A. Chang, R. Ferraro, P. Xie, J. Janowiak, B. Rudolf, U. Schneider, S. Curtis, D. Bolvin, A. Gruber, J. Susskind, P. Arkin, E.J. Nelkin, 2003: The Version 2 Global Precipitation Climatology Project (GPCP) Monthly Precipitation Analysis (1979-Present)。 J. Hydrometeor., 4(6), 1147-1167.
Huffman, G.J.、1997:Estimated Precipitation 有限樣本的均方根隨機誤差估計值,J. Appl. Meteor., 1191-1201。
Huffman, G.J.、2012 年:演算法理論基礎文件 (ATBD) 3.0 版,適用於 NASA 全球降雨量測量 (GPM) 整合式多衛星擷取 (I-MERG)。GPM Project,馬里蘭州 Greenbelt,29 頁。
Huffman, G.J.、R.F. Adler, P. Arkin, A. Chang, R. Ferraro, A. Gruber, J. Janowiak, A. McNab, B. Rudolph 和 U. Schneider, 1997: The Global Precipitation Climatology Project (GPCP) Combined Precipitation Dataset, Bul. 氣象學會公報》,78, 5-20.
Huffman, G.J.、R.F. Adler、D.T. Bolvin、G. Gu, E.J. Nelkin, K.P. Bowman, Y. Hong, E.F. Stocker, D.B. Wolff, 2007: The TRMM Multi-satellite Precipitation Analysis: Quasi-Global, Multi-Year, Combined-Sensor Precipitation Estimates at Fine Scale. J. Hydrometeor., 8(1), 38-55.
Huffman, G.J.、R.F. Adler, M. Morrissey, D.T. Bolvin, S. Curtis, R. Joyce, B McGavock, J. Susskind,2001 年:〈Global Precipitation at One-Degree Daily Resolution from Multi-Satellite Observations〉。J. Hydrometeor., 2(1), 36-50.
Huffman, G.J.、R.F. Adler, B. Rudolph, U. Schneider 和 P. Keehn,1995 年:Global Precipitation Estimates Based on a Technique for Combining Satellite-Based Estimates, Rain Gauge Analysis, and NWP Model Precipitation Information, J. Clim.,8, 1284-1295.
使用 Earth Engine 探索
程式碼編輯器 (JavaScript)
var dataset = ee.ImageCollection('TRMM/3B42') .filter(ee.Filter.date('2018-04-01', '2018-04-10')); var precipitation = dataset.select(['precipitation', 'HQprecipitation', 'IRprecipitation']); var precipitationVis = { min: 0, max: 12, gamma: 5, }; Map.setCenter(-79.98, 23.32, 4); Map.addLayer(precipitation, precipitationVis, 'Precipitation');