-
Notifications
You must be signed in to change notification settings - Fork 29
/
params_template.env
71 lines (57 loc) · 2.5 KB
/
params_template.env
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
#!/bin/bash
#### hydroconditioning parameters ####
export negative_burn_value=1000
export agree_DEM_buffer=70
export wbd_buffer=5000
export levee_buffer=1000
export thalweg_lateral_elev_threshold=3
#### geospatial parameters ####
export max_split_distance_meters=1500
export ms_buffer_dist=7000
export lakes_buffer_dist_meters=20
#### rating curve parameters ####
export manning_n=0.06
export stage_min_meters=0
export stage_interval_meters=0.3048
export stage_max_meters=25
export slope_min=0.001
export min_catchment_area=0.25
export min_stream_length=0.5
#### branch parameters ####
export branch_id_attribute=levpa_id
export branch_buffer_distance_meters=7000
export branch_timeout=4000 # pass int or float. To make a percentage of median, pass a '%' at the end.
export branch_zero_id="0"
#### mask levee-protected areas from DEM
export mask_leveed_area_toggle=True # Toggle to mask levee-protected areas from DEM
export levee_id_attribute=SYSTEM_ID
#### Healed HAND ####
# Removes Hydro-conditioning Artifacts (true=on; false=off)
export healed_hand_hydrocondition=true
#### apply bathymetry adjustment to rating curve ####
export bathymetry_adjust=True
#### estimating bankfull stage in SRCs ####
# Toggle to run identify_bankfull routine (True=on; False=off)
export src_bankfull_toggle="True"
#### applying channel/overbank subdivision routine to SRCs ####
# Toggle to run composite roughness src routine (True=on; False=off)
export src_subdiv_toggle="True"
# text to append to output log and hydrotable file names (use for testing/debugging)
export vrough_suffix=""
#### SRC calibration variables
#### apply SRC adjustments using USGS rating curve database ####
# Toggle to run src adjustment routine with USGS rating data (True=on; False=off)
export src_adjust_usgs="True"
#### apply SRC adjustments using ras2fim rating curve database ####
# Toggle to run src adjustment routine with ras2fim data (True=on; False=off)
export src_adjust_ras2fim="True"
#### apply SRC adjustments using observed FIM/flow point database (parquet files)####
# Toggle to run src adjustment routine with flood edge point db (True=on; False=off)
export src_adjust_spatial="True"
#### apply manual calibration ####
# Toggle to run manual calibration routine (True=on; False=off)
export manual_calb_toggle="True"
#### computational parameters ####
export ncores_gw=1 # mpi number of cores for gagewatershed
export ncores_fd=1 # mpi number of cores for flow directions
export memfree=0G # min free memory required to start a new job or keep youngest job alive