-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameter_https.cfg
More file actions
135 lines (106 loc) · 4.72 KB
/
parameter_https.cfg
File metadata and controls
135 lines (106 loc) · 4.72 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#-- ========================================================================== --#
#-- --#
#-- This RVIC namelist contains options and paths for the --#
#-- development of the RVIC parameter file. --#
#-- --#
#-- --#
#-- ========================================================================== --#
# Note: namelist is parsed by the python ConfigParser module. %(Interpolation) is
# supported inside [sections] only.
[OPTIONS]
#-- ====================================== --#
#--Level to log output at (char) --#
# valid values: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL: DEBUG
#--Print output to console in addition to the log file (bool) --#
# valid values: True, False
VERBOSE: True
#--Delete temporary files, only used if REMAP=True (bool) --#
# valid values: True, False
CLEAN: False
#--case description (char) --#
CASEID: sample
#--routing domain grid shortname (char) --#
GRIDID: COLUMBIA
#--case run directory (char) --#
CASE_DIR: /tmp/%(CASEID)s
#--Directory to use for temporary read/write operations (char) --#
TEMP_DIR: %(CASE_DIR)s/temp/
#--Remap Unit Hydrographs from [ROUTING] grid to [DOMAIN] grid (bool) --#
# valid values: True, False
REMAP: False
#--Aggregate all [POUR_POINTS] inside each [DOMAIN] grid cell (bool) --#
# This should only be used when routing to coastal grid cells for CESM
AGGREGATE: False
#--Size of pad to add to aggregated files prior to remapping (int) --#
AGG_PAD: 25
#-- Output parameter file format (char) --#
# Valid Values: NETCDF3_CLASSIC, NETCDF3_64BIT, NETCDF4_CLASSIC, and NETCDF4
# For use with CESM, NETCDF3_CLASSIC is recommended.
NETCDF_FORMAT: NETCDF4
#-- Output parameter file compression options --#
# Descriptions of these options can be found in
NETCDF_ZLIB: False
NETCDF_COMPLEVEL: 4
NETCDF_SIGFIGS: None
#-- Length of unit hydrograph subset in days (int) --#
SUBSET_DAYS:
#-- Constrain the final unit hydrographs sum to be less than or equal to the domain fractions --#
# True when routing to coastal grid cells, else False
CONSTRAIN_FRACTIONS: False
SEARCH_FOR_CHANNEL: False
#-- ====================================== --#
[POUR_POINTS]
#-- ====================================== --#
#-- Path to Pour Points File (char) --#
# A comma separated file of outlets to route to [lons, lats] - one coordinate pair per line (order not important)
# May optionally include a column [names] - which will (if not aggregating) be included in param file
FILE_NAME: https://docker-dev03.pcic.uvic.ca/twitcher/ows/proxy/thredds/fileServer/datasets/RVIC/sample_pour.txt
#-- ====================================== --#
[UH_BOX]
#-- ====================================== --#
#-- Path to UH Box File (char) --#
# This defines the unit hydrograph to rout flow to the edge of each grid cell.
# A comma separated file of [time in seconds, unit hydrograph ordinate] - one timestep per line
# The timestep should be 1hr (3600 sec) or less.
FILE_NAME: https://docker-dev03.pcic.uvic.ca/twitcher/ows/proxy/thredds/fileServer/datasets/RVIC/uhbox.csv
#-- Number of Header lines to ignore in [UH_BOX]FILE_NAME (INT) --#
HEADER_LINES = 1
#-- ====================================== --#
[ROUTING]
#-- ====================================== --#
#-- Path to routing inputs netcdf (char) --#
FILE_NAME: https://docker-dev03.pcic.uvic.ca/twitcher/ows/proxy/thredds/fileServer/datasets/RVIC/sample_flow_parameters.nc
#-- netCDF Variable Names --#
LONGITUDE_VAR: lon
LATITUDE_VAR: lat
FLOW_DISTANCE_VAR: Flow_Distance
FLOW_DIRECTION_VAR: Flow_Direction
BASIN_ID_VAR: Basin_ID
VELOCITY: velocity
DIFFUSION: diffusion
#SOURCE_AREA_VAR:
#-- Velocity and diffusion --#
# The velocity and diffusion parameters may either be specified as variables in
# the routing netcdf (char) or as a single value (float or int)
#VELOCITY: 1
#DIFFUSION: 2000
#-- Output Interval --#
# Timestep of output unit hydrographs. Must be a multiple of the timestep in the UH_BOX
OUTPUT_INTERVAL: 86400
#-- Maximum time for runoff to reach outlet (days) --#
BASIN_FLOWDAYS: 100
#-- Maximum time for runoff to pass through a grid cell (days) --#
CELL_FLOWDAYS: 4
#-- ====================================== --#
[DOMAIN]
#-- ====================================== --#
#-- Path to cesm compliant domain file (char) --#
FILE_NAME: https://docker-dev03.pcic.uvic.ca/twitcher/ows/proxy/thredds/fileServer/datasets/RVIC/sample_routing_domain.nc
#-- netCDF Variable Names --#
LONGITUDE_VAR: lon
LATITUDE_VAR: lat
LAND_MASK_VAR: mask
FRACTION_VAR: frac
AREA_VAR: area
#-- ====================================== --#