当前位置:网站首页>Gee dataset: chirps pentad high resolution global grid rainfall dataset
Gee dataset: chirps pentad high resolution global grid rainfall dataset
2022-07-02 05:11:00 【Gee water ecological space】
1、 Data set introduction
CHIRPS Pentad:Climate Hazards Group InfraRed Precipitation With Station Data
This is a record set 1981 Data set of global rainfall from 2004 to the present .CHIRPS take 0.05° Resolution satellite images and in-situ Site data combination , Create a gridded rainfall time series .
Earth Engine Data Catalog Including many other gridded precipitation data sets , for example ERA5 and GPM—— Each data set has different spatial and temporal resolutions and methods . The technology of each dataset product is roughly the same as that of the above dataset .
CHIRP The main calculation time step is pentad.Pentad representative 5 Grouping of days . There are... In a calendar month 6 individual pentad:5 individual 5 Days of pentad and 1 individual pentad And the rest of the month 3 To 6 God . The pentagram is reset at the beginning of each month . We will use CHIRPS pentad Data sets . Please note that ,CHIRPS Also to everyday Time step provision , The time step is calculated by decomposing the five tuple data . Unless you specifically need daily data , Otherwise you should use pentad Data sets .
2、 Dataset application
- It is mainly used for trend analysis and seasonal drought monitoring
- It is used to analyze the spatial and temporal variation characteristics of regional precipitation
- It can be used for the input boundary of watershed runoff model
- It can be used for the analysis of precipitation characteristics in areas without data
3、GEE Load in
(1)JavaScript Code :
var dataset = ee.ImageCollection('UCSB-CHG/CHIRPS/PENTAD')
.filter(ee.Filter.date('2018-05-01', '2018-05-05'));
var precipitation = dataset.select('precipitation');
var precipitationVis = {
min: 0.0,
max: 112.0,
palette: ['001137', '0aab1e', 'e7eb05', 'ff4a2d', 'e90000'],
};
Map.setCenter(17.93, 7.71, 2);
Map.addLayer(precipitation, precipitationVis, 'Precipitation');
(2)Python Code :
dataset = ee.ImageCollection('UCSB-CHG/CHIRPS/PENTAD')
.filter(ee.Filter.date('2018-05-01', '2018-05-05'))
precipitation = dataset.select('precipitation')
precipitationVis = {
'min': 0.0,
'max': 112.0,
'palette': ['001137', '0aab1e', 'e7eb05', 'ff4a2d', 'e90000'],
}
Map.setCenter(17.93, 7.71, 2);
Map.addLayer(precipitation, precipitationVis, 'Precipitation')
4、 Dataset reference
Funk, Chris, Pete Peterson, Martin Landsfeld, Diego Pedreros, James Verdin, Shraddhanand Shukla, Gregory Husak, James Rowland, Laura Harrison, Andrew Hoell & Joel Michaelsen. "The climate hazards infrared precipitation with stations—a new environmental record for monitoring extremes". Scientific Data 2, 150066. doi:10.1038/sdata.2015.66 2015.
边栏推荐
猜你喜欢
Mathematical knowledge -- understanding and examples of fast power
Differential identities (help find mean, variance, and other moments)
Application of intelligent robot in agricultural ecology
Fabric.js IText设置指定文字的颜色和背景色
函数栈帧的创建和销毁
摆正元素(带过渡动画)
Fabric.js 右键菜单
培养中小学生对教育机器人的热爱之心
黑马笔记---Set系列集合
运维工作的“本手、妙手、俗手”
随机推荐
Essence and physical meaning of convolution (deep and brief understanding)
Fabric.js 精简JSON
Domestic all Chinese automatic test software apifox
LeetCode 1175. Prime number arrangement (prime number judgment + Combinatorial Mathematics)
Go implements leetcode rotation array
C# 图片显示占用问题
Fabric.js IText设置指定文字的颜色和背景色
Fabric.js 将本地图像上传到画布背景
How to configure PostgreSQL 12.9 to allow remote connections
Global and Chinese market of commercial fish tanks 2022-2028: Research Report on technology, participants, trends, market size and share
黑馬筆記---Set系列集合
Differential identities (help find mean, variance, and other moments)
php/js cookie共享跨域的问题
LeetCode 241. Design priorities for operational expressions (divide and conquer / mnemonic recursion / dynamic programming)
js中的Map(含leetcode例题)
黑马笔记---Map集合体系
创新永不止步——nVisual网络可视化平台针对Excel导入的创新历程
Using Kube bench and Kube hunter to evaluate the risk of kubernetes cluster
Implementation of go language for deleting duplicate items in sorting array
Fabric.js 背景不受视口变换影响