
- 数据集可用性
- 1983-01-01T00:00:00Z–2024-09-30T00:00:00Z
- 数据集提供商
- NOAA NCDC
- 频率
- 1 天
- 标签
说明
PERSIANN-CDR 是一种每日准全球降水产品,涵盖的时间范围为 1983 年 1 月 1 日至今。数据按季度生成,通常会延迟三个月。该产品由加州大学欧文分校 (UC-IRVINE/CHRS) 的水文气象学和遥感中心开发,使用从 ISCCP B1 红外数据与 GPCP 2.2 版合并而来的网格化卫星 (GridSat-B1) 红外数据。
频段
像素尺寸
27,830 米
频段
名称 | 单位 | 最小值 | 最大值 | 像素尺寸 | 说明 |
---|---|---|---|---|---|
precipitation |
mm | 0* | 718.62* | 米 | 估计的每日降水量 |
使用条款
使用条款
CDR 数据集是非专有的,可公开获取,并且对其使用没有任何限制。如需了解详情,请参阅 Fair Use of NOAA's CDR Data Sets, Algorithms and Documentation(美国国家海洋和大气管理局的 CDR 数据集、算法和文档的合理使用)文档。
引用
如果将此数据集用作来源,请引用:Sorooshian, Soroosh; Hsu, Kuolin; Braithwaite, Dan; Ashouri, Hamed; and NOAA CDR Program (2014): NOAA Climate Data Record (CDR) of Precipitation Estimation from Remotely Sensed Information using Artificial Neural Networks (PERSIANN-CDR), Version 1 Revision 1. [指明所用子集]。NOAA 国家环境信息中心。doi:doi:10.7289/V51V5BWQ [访问日期]。
使用此数据集的出版物还应引用以下期刊文章:Ashouri H.,K. Hsu, S. Sorooshian, D. K. Braithwaite, K. R. Knapp, L. D. Cecil, B. R. Nelson 和 O. P. Prat,2015 年:PERSIANN-CDR:基于多卫星观测的水文和气候研究每日降水气候数据记录。Bull. Amer. Meteor。Soc., doi:10.1175/BAMS-D-13-00068.1.
DOI
使用 Earth Engine 探索
代码编辑器 (JavaScript)
var dataset = ee.ImageCollection('NOAA/PERSIANN-CDR') .filter(ee.Filter.date('2017-05-01', '2017-05-02')); var precipitation = dataset.select('precipitation'); var precipitationVis = { min: 0.0, max: 50.0, palette: ['3907ff', '03fff3', '28ff25', 'fbff09', 'ff1105'], }; Map.setCenter(113.03, 3.34, 3); Map.addLayer(precipitation, precipitationVis, 'Precipitation');