-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path25_flow_history_eval.yml
72 lines (52 loc) · 2.59 KB
/
25_flow_history_eval.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
target_default: 25_flow_history_eval
packages:
- EGRET
include: 20_prep_data.yml
sources:
- 25_flow_history_eval/code/flow_history_fxns.R
targets:
25_flow_history_eval:
depends:
- figures/flow_history/flow_hist_1day_min.png
- figures/flow_history/flow_hist_7day_min.png
- figures/flow_history/flow_hist_30day_min.png
- figures/flow_history/flow_hist_median.png
- figures/flow_history/flow_hist_mean.png
- figures/flow_history/flow_hist_30day_max.png
- figures/flow_history/flow_hist_7day_max.png
- figures/flow_history/flow_hist_1day_max.png
- figures/flow_history/flow_hist_variability.png
- figures/flow_history/flow_daily_record.png
- figures/flow_history/flow_daily_record_above400.png
wy_eList:
command: setPA(discharge_eList)
winter_eList:
command: setPA(discharge_eList, paStart = 12, paLong = 3)
spring_eList:
command: setPA(discharge_eList, paStart = 3, paLong = 3)
summer_eList:
command: setPA(discharge_eList, paStart = 6, paLong = 3)
list_eLists:
command: create_list(wy_eList, winter_eList, spring_eList, summer_eList)
figures/flow_history/flow_hist_1day_min.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(1))
figures/flow_history/flow_hist_7day_min.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(2))
figures/flow_history/flow_hist_30day_min.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(3))
figures/flow_history/flow_hist_median.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(4))
figures/flow_history/flow_hist_mean.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(5))
figures/flow_history/flow_hist_30day_max.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(6))
figures/flow_history/flow_hist_7day_max.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(7))
figures/flow_history/flow_hist_1day_max.png:
command: construct_flow_fig(dat = list_eLists, file_name = target_name, stat = I(8))
figures/flow_history/flow_hist_variability.png:
command: construct_var_fig(dat = list_eLists, file_name = target_name)
figures/flow_history/flow_daily_record.png:
command: construct_q_fig(dat = wy_eList, file_name = target_name, qlim = I(NA))
figures/flow_history/flow_daily_record_above400.png:
command: construct_q_fig(dat = wy_eList, file_name = target_name, qlim = I(400))