 
  - 数据集可用性
- 1998-01-01T00:00:00Z–2019-12-31T21:00:00Z
- 数据集提供商
- NASA GES DISC at NASA Goddard Space Flight Center
- 频率
- 3 小时
- 标签
说明
热带降雨测量任务 (TRMM) 是 NASA 与日本宇宙航空研究开发机构 (JAXA) 之间的联合任务,旨在监测和研究热带降雨。34B2 产品包含网格化、经过 TRMM 调整的合并红外降水(毫米/小时)和 RMS 降水误差估计值,时间分辨率为 3 小时,空间分辨率为 0.25 度。
文档:
频段
像素尺寸
27,830 米
频段
| 名称 | 单位 | 最小值 | 最大值 | 像素尺寸 | 说明 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| precipitation | 毫米/小时 | 0 | 100 | 米 | 合并的微波/红外降水估计 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| relativeError | 毫米/小时 | 0 | 100 | 米 | 合并的微波/红外降水随机误差估计值 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| satPrecipitationSource | 米 | 用于显示数据来源的标志 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| HQprecipitation | 毫米/小时 | 0 | 100 | 米 | 经过雨量计调整的微波降水估计值 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| IRprecipitation | 毫米/小时 | 0 | 100 | 米 | 经过雨量计调整的红外降水估计值 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| satObservationTime | 分钟 | -90 | 90 | 米 | 卫星观测时间减去粒度的时间。 如果卫星观测时间重叠,则对两个或多个观测时间进行等权重平均。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
使用条款
使用条款
此数据集位于公共领域,可随意使用和分发。如需了解更多信息,请参阅 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. 水成气象要素,4(6), 1147-1167. 
- Huffman, G.J.,1997 年:有限样本的估计降水量的均方根随机误差估计值,J. Appl. Meteor., 1191-1201。 
- Huffman, G.J.,2012 年:NASA 全球降水测量 (GPM) 计划的综合多卫星 GPM 检索 (I-MERG) 算法理论基础文档 (ATBD) 版本 3.0。GPM 项目,Greenbelt,马里兰州,29 页。 
- Huffman, G.J.,R.F. Adler、P. Arkin, A. Chang, R. Ferraro, A. Gruber, J. Janowiak, A. McNab, B. 鲁道夫和 U. Schneider,1997 年:《全球降水气候学项目 (GPCP) 综合降水数据集》,美国气象学会公报,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. 水成气象要素,8(1),38-55。 
- Huffman, G.J.,R.F. Adler, M. Morrissey、D.T. Bolvin、S. Curtis, R. Joyce, B McGavock, J. Susskind,2001 年:基于多卫星观测结果的每日一度分辨率的全球降水数据。J. 水成气象要素,2(1), 36-50. 
- Huffman, G.J.,R.F. Adler、B. Rudolph, U. 施耐德和 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');