- Dataset Availability
- 1981-01-01T00:00:00Z–2025-10-26T00:00:00Z
- Dataset Provider
- UCSB/CHC
- Cadence
- 1 Custom_time_unit
- Tags
Description
The Climate Hazards Center Infrared Precipitation with Stations (CHIRPS v3) is a 40+ year, high-resolution quasi-global rainfall dataset. It spans 60°N to 60°S and covers all longitudes, providing data from 1981 to near-present. CHIRPS v3 combines satellite-based thermal infrared rainfall estimates with in-situ station observations to produce a 0.05° gridded rainfall time series over land. This is version 3.0 of the dataset, for more information see the CHC page.
Bands
Pixel Size
5566 meters
Bands
| Name | Units | Min | Max | Pixel Size | Description |
|---|---|---|---|---|---|
precipitation |
mm/pentad | 0* | 1072.43* | meters | Precipitation |
Image Properties
Image Properties
| Name | Type | Description |
|---|---|---|
| month | DOUBLE | Month |
| pentad | DOUBLE | Pentad |
| year | DOUBLE | Year |
Terms of Use
Terms of Use
This dataset is in the public domain. To the extent possible under law, Pete Peterson has waived all copyright and related or neighboring rights to Climate Hazards Center Infrared Precipitation with Stations (CHIRPS).
Citations
Climate Hazards Center Infrared Precipitation with Stations version 3. CHIRPS3 Data Repository doi:10.15780/G2JQ0P (2025).
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('UCSB-CHC/CHIRPS/V3/PENTAD') .filter(ee.Filter.date('2018-05-01', '2018-05-05')); var precipitation = dataset.select('precipitation'); var precipitationVis = { min: 0, max: 112, palette: ['#001137', '#0aab1e', '#e7eb05', '#2c7fb8', '#253494'], }; Map.setCenter(17.93, 7.71, 2); Map.addLayer(precipitation, precipitationVis, 'Precipitation');