- 利用可能なデータセットの期間
- 1998-01-01T00:00:00Z–2019-12-31T21:00:00Z
- データセット プロデューサー
- NASA ゴダード宇宙飛行センターの NASA GES DISC
- データ取得頻度
- 3 時間
- タグ
説明
バンド
バンド
ピクセルサイズ: 27,830 メートル(すべてのバンド)
| 名前 | 単位 | 最小 | 最大 | ピクセルサイズ | 説明 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
precipitation |
mm/hr | 0 | 100 | 27830 メートル | マイクロ波/赤外線降水量の推定値を統合 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
relativeError |
mm/hr | 0 | 100 | 27830 メートル | マイクロ波/赤外線降水量のランダム誤差の推定値を統合 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
satPrecipitationSource |
27830 メートル | データのソースを表示するフラグ |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HQprecipitation |
mm/hr | 0 | 100 | 27830 メートル | 降雨計調整前のマイクロ波降水量の推定値 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IRprecipitation |
mm/hr | 0 | 100 | 27830 メートル | 降雨計調整済みの赤外線降水量の推定値 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
satObservationTime |
分 | -90 | 90 | 27830 メートル | 衛星観測時間からグラニュールの時間を引いた値。衛星観測が重複している場合は、2 つ以上の観測時間を等しい重みで平均します。 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
利用規約
利用規約
このデータセットはパブリック ドメインにあり、使用と配布に制限はありません。詳しくは、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 年: Estimates of Root-Mean-Square Random Error for Finite Samples of Estimated Precipitation, J. アプリケーションとMeteor.、 1191-1201。
Huffman, G.J.、2012 年: NASA の全球降水観測(GPM)用アルゴリズム理論的根拠ドキュメント(ATBD)バージョン 3.0、GPM 用統合マルチ衛星検索(I-MERG)。GPM Project、Greenbelt、MD、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. Amer. Meteor. Soc.、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 年: 衛星ベースの推定値、雨量計の分析、NWP モデルの降水量情報を組み合わせる手法に基づく全球降水量推定値、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');