TRMM 3B42: 3-Hourly Precipitation Estimates

TRMM/3B42
データセットの可用性
1998-01-01T00:00:00Z–2019-12-31T21:00:00Z
データセット プロバイダ
Earth Engine スニペット
ee.ImageCollection("TRMM/3B42")
ケイデンス
3 時間
タグ
3 時間ごと 気候 地球物理学 jaxa nasa 降水量 降雨量 trmm 天気

説明

熱帯降雨観測衛星(TRMM)は、熱帯の降雨をモニタリングして研究するために設計された、NASA と宇宙航空研究開発機構(JAXA)の共同ミッションです。34B2 プロダクトには、グリッド化された TRMM 調整済みの統合赤外線降水量(mm/時)と RMS 降水量誤差推定値が含まれています。時間解像度は 3 時間、空間解像度は 0.25 度です。

詳細については、アルゴリズムの説明ファイル仕様をご覧ください。

ドキュメント:

バンド

Pixel Size
27830 メートル

帯域

名前 単位 最小 最大 ピクセルサイズ 説明
precipitation mm/hr 0 100 メートル

マイクロ波/赤外線降水量の推定値を統合

relativeError mm/hr 0 100 メートル

マイクロ波/赤外線降水量のランダム誤差の推定値を統合

satPrecipitationSource メートル

データのソースを表示するフラグ

HQprecipitation mm/hr 0 100 メートル

降雨計調整前のマイクロ波降水量の推定値

IRprecipitation mm/hr 0 100 メートル

降雨計調整済みの赤外線降水量の推定値

satObservationTime -90 90 メートル

衛星観測時間からグラニュールの時間を引いた値。衛星観測が重複している場合は、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)の GPM(I-MERG)向け統合マルチ衛星検索のアルゴリズム理論的根拠ドキュメント(ATBD)バージョン 3.0。GPM プロジェクト、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: 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: 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');
コードエディタで開く