Skip to content

Commit 06b8cb9

Browse files
authored
Merge pull request #145 from c-hydro/dev
feat(chirps): add chirps3-daily as product to chirps_downloader
2 parents 2f2d764 + 7530efd commit 06b8cb9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/door/data_sources/chirps/chirps_downloader.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ class CHIRPSDownloader(FTPDownloader):
5858
"prelim_url" : homev2 + "prelim/" + 'global_monthly/tifs/chirps-v2.0.{timestep.start:%Y.%m}.tif',
5959
"prelim_nodata": -9999
6060
},
61+
"CHIRPSv3-daily": {
62+
"ts_per_year": 365,
63+
"url" : homev3 + 'daily/final/IMERGlate-v07/{timestep.year}/chirps-v3.0.{timestep.start:%Y.%m.%d}.tif',
64+
"nodata" : -9999,
65+
"prelim_url" : homev3 + 'daily/prelim/IMERGlate-v07/{timestep.year}/chirps-v3.0.{timestep.start:%Y.%m.%d}.tif',
66+
"prelim_nodata": -9999
67+
},
6168
"CHIRPSv3-dekads": {
6269
"ts_per_year": 36,
6370
"url" : homev3 + 'pentads/global/tifs/chirps-v3.0.{timestep.start:%Y.%m}.{pentad_of_month}.tif',

workflow_examples/option_files/chirps3_example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"TAGS":{
33
"source" : "CHIRPS",
4-
"product" : "CHIRPSv3-dekads",
5-
"prod_name": "CHIRPS-precip10d"
4+
"product" : "CHIRPSv3-daily",
5+
"prod_name": "CHIRPS-precip1d"
66
},
77
"DATASETS":{
88
"destination" : {

0 commit comments

Comments
 (0)