Skip to content

Commit 95fa1f2

Browse files
Merge branch 'feature/15-Download-Soil-Moisture-Data' into develop
2 parents 47e69f5 + 2d0c6e0 commit 95fa1f2

File tree

12 files changed

+2001
-437
lines changed

12 files changed

+2001
-437
lines changed

conf/aggregation/aggregation.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,16 @@ aggregation:
2929
function: "numpy.nansum"
3030
daily_to_healthshed:
3131
- name: mean
32-
function: "numpy.nanmean"
32+
function: "numpy.nanmean"
33+
34+
swvl1:
35+
hourly_to_daily:
36+
- name: mean
37+
function: "numpy.nanmean"
38+
- name: min
39+
function: "numpy.nanmin"
40+
- name: max
41+
function: "numpy.nanmax"
42+
daily_to_healthshed:
43+
- name: mean
44+
function: "numpy.nanmean"

conf/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ query:
2121
geography: ["madagascar", "nepal"]
2222

2323
product_type: reanalysis
24-
variable: ["2m_dewpoint_temperature", "2m_temperature", "total_precipitation"]
24+
variable: ["2m_dewpoint_temperature", "2m_temperature", "total_precipitation", "volumetric_soil_water_layer_1"]
2525
year: [2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024]
2626
month: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
2727
day: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]

0 commit comments

Comments
 (0)