-
Notifications
You must be signed in to change notification settings - Fork 13
/
7_config_merge.yml
104 lines (89 loc) · 3.94 KB
/
7_config_merge.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
target_default: 7_config_merge
packages:
- dplyr
- scipiper
- readr
- rlang
- sf
- lwgeom
- tidyr
- feather
- maps
sources:
- 7_config_merge/src/munge_lake_info.R
- 7_drivers_munge/src/GLM_driver_utils.R
targets:
7_config_merge:
depends:
- 7_config_merge/out/nml_cd_values.rds.ind
- 7_config_merge/out/nml_lat_lon_values.rds.ind
- 7_config_merge/out/nml_H_A_values.rds.ind
- 7_config_merge/out/nml_len_wid_values.rds.ind
- 7_config_merge/out/nml_lake_depth_values.rds.ind
- 7_config_merge/out/nml_layer_thick_values.rds.ind
- 7_config_merge/out/nml_meteo_fl_values.rds.ind
- 7_config_merge/out/nml_Kw_values.rds.ind
- 7_config_merge/out/nml_list.rds.ind
7_config_merge/out/canonical_lakes_area.rds.ind:
command: munge_lake_area(target_name,
lakes_ind = '1_crosswalk_fetch/out/canonical_lakes_sf.rds.ind')
7_config_merge/out/nml_cd_values.rds.ind:
command: munge_cd_from_area(target_name,
areas_ind = '7_config_merge/out/canonical_lakes_area.rds.ind')
7_config_merge/out/nml_lat_lon_values.rds.ind:
command: munge_lat_lon(target_name,
centroids_ind = '2_crosswalk_munge/out/centroid_lakes_sf.rds.ind')
7_config_merge/out/nml_H_A_values.rds.ind:
command: munge_H_A(target_name,
areas_ind = '7_config_merge/out/canonical_lakes_area.rds.ind',
elev_ind = '1_crosswalk_fetch/out/ned_centroid_elevations.feather.ind',
'4_params_munge/out/mndow_02_bathy.rds.ind',
'4_params_munge/out/mndow_01_bathy.rds.ind',
'4_params_munge/out/mndow_perc_bathy.rds.ind',
'4_params_munge/out/mndow_perc_02_bathy.rds.ind',
'4_params_munge/out/wbic_bathy.rds.ind',
'4_params_munge/out/ndgf_bathy.rds.ind',
'4_params_munge/out/iadnr_bathy.rds.ind',
'4_params_munge/out/indnr_bathy.rds.ind',
'4_params_munge/out/isro_bathy.rds.ind',
'4_params_munge/out/DRB_reservoirs_bathy.rds.ind',
'4_params_munge/out/mglp_mi_perc_bathy.rds.ind',
'4_params_munge/out/UNDERC_depths.rds.ind',
'4_params_munge/out/navico_depths.rds.ind',
'4_params_munge/out/lagos_depths.rds.ind',
'4_params_munge/out/wbic_depths.rds.ind',
'4_params_munge/out/mglp_depths.rds.ind',
'4_params_munge/out/ndgf_depths.rds.ind',
'4_params_munge/out/NY_manual_depths.rds.ind',
'4_params_munge/out/MO_manual_depths.rds.ind')
7_config_merge/out/nml_len_wid_values.rds.ind:
command: munge_wid_len(target_name,
areas_ind = '7_config_merge/out/canonical_lakes_area.rds.ind')
7_config_merge/out/nml_lake_depth_values.rds.ind:
command: munge_lake_depth(target_name,
'7_config_merge/out/nml_H_A_values.rds.ind')
7_config_merge/out/nml_layer_thick_values.rds.ind:
command: munge_layer_thick(target_name,
lake_depth_ind = '7_config_merge/out/nml_lake_depth_values.rds.ind')
7_config_merge/out/nml_meteo_fl_values.rds.ind:
command: munge_meteo_fl(target_name,
centroids_ind = '2_crosswalk_munge/out/centroid_lakes_sf.rds.ind',
lake_depth_ind = '7_config_merge/out/nml_lake_depth_values.rds.ind',
sf_grid = NLDAS_grid,
time_range = replete_time_range)
7_config_merge/out/nml_Kw_values.rds.ind:
command: munge_Kw(target_name,
kw_varying_ind = '4_params_munge/out/toha_varying_kw.rds.ind',
'7a_wqp_munge/out/secchi_wqp_munged_linked.feather.ind',
'4_params_munge/out/lagos_secchi.rds.ind',
'1_crosswalk_fetch/out/landsat_secchi.rds.ind')
7_config_merge/out/nml_list.rds.ind:
command: build_nml_list('7_config_merge/out/nml_H_A_values.rds.ind',
'7_config_merge/out/nml_cd_values.rds.ind',
'7_config_merge/out/nml_lat_lon_values.rds.ind',
'7_config_merge/out/nml_len_wid_values.rds.ind',
'7_config_merge/out/nml_lake_depth_values.rds.ind',
'7_config_merge/out/nml_layer_thick_values.rds.ind',
'7_config_merge/out/nml_meteo_fl_values.rds.ind',
'7_config_merge/out/nml_Kw_values.rds.ind',
target_name)