forked from pspc-spac/avadepth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ad-pd-eng.html
263 lines (230 loc) · 9.28 KB
/
ad-pd-eng.html
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!--#include virtual="/includes/header-eng.html" -->
<script src="scripts/ad-pd.js" defer></script>
<script src="scripts/avadepth_util.js" defer></script>
<h1 class="print-align-center">Available Depth Report</h1>
<div class="grid-12 print_hide" style="margin-bottom: 15px">
<div class="wet-boew-tabbedinterface animate slide-horz tabs-style-1 auto-height">
<ul class="tabs">
<li class="default"><a href="#parameters">Parameters</a></li>
<li><a href="#help">Help</a></li>
</ul>
<div class="summary tabs-panel filled" style="border: 2px solid #eee">
<div id="parameters" style="height:250px">
<form id="daily_depth">
<div class="span-4">
<label for="date">Date:</label>
<input id="date" type="text" name="date" class="datepicker" />
<div>
<strong>River Discharge @ Hope:</strong><br />
<input id="predicted_radio"
type="radio"
name="discharge"
class="rd_predicted"
value="Predicted"
checked="checked" />
<label for="predicted_radio"
style="font-weight: normal">Predicted (<span id="predicted_discharge">0</span>m³s)</label><br />
<input id="actual_radio"
type="radio"
name="discharge"
disabled="true"
class="rd_actual"
value="Actual" />
<label for="actual_radio"
style="font-weight: normal">Actual (<span id="actual_discharge">0</span>m³s)</label><br />
<input id="selected_radio"
type="radio"
name="discharge"
value="Selected" />
<label for="discharge_radio" style="font-weight: normal">Selected</label>
<select id="selected_discharge">
</select> m3/s<br />
<input id="defined_radio"
type="radio"
name="discharge"
value="Defined" />
<label for="defined_radio"
style="font-weight: normal">User-defined</label>
<input id="defined_discharge"
type="text"
name="defined_discharge"
style="width: 5em" /> m3/s
<input type="hidden" name="flowRate" id="flowRate" value="0" />
<input type="hidden" name="flowType" id="flowType" value="0" />
</div>
</div>
<div class="span-4">
<label for="chainage">Chainage:</label>
1 to
<select id="chainage">
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35" selected="selected">35</option>
</select> km
<div>
<label for="condition">Channel Condition:</label>
<input id="condition"
type="radio"
name="condition"
checked="checked"
value="0" /> <span>Current Soundings</span><br />
<input type="radio"
name="condition"
value="1" /> <span>Design Grade</span>
</div>
<div>
<label for="channel">Navigation Channel:</label>
<input type="radio"
id="inner_channel"
name="channel"
checked="checked"
value="0" /> <span>Inner Limit</span>
<input type="radio"
id="outter_channel"
name="channel"
value="1" /> <span>Outer Limit</span>
</div>
</div>
<div class="span-3">
<div>
<label for="width">Available Width:</label>
<select id="width">
<option value="100" selected="selected">100</option>
<option value="95">95</option>
<option value="90">90</option>
<option value="85">85</option>
<option value="80">80</option>
<option value="75">75</option>
<option value="70">70</option>
<option value="65">65</option>
<option value="60">60</option>
</select> %
</div>
</div>
</form>
<div class="clear"></div>
<button id="submit"
type="button"
class="button button-accent"
name="submit">Apply
</button>
<button id="print_daily_depths" class="button button-accent">Print</button>
<img class="spinner" src="images/spinner.gif" alt="" />
</div>
<div id="help" style="max-height: 200px; overflow-y: scroll;">
<p>The available depth tabulations allow us to monitor the behaviour of
the "Control Point" - the location in the river channel which has the
minimum available depth at any specified time. The control point moves
under the influence of tides, flow rates and soundings profiles.</p>
<p>To inspect the critical point locations over a one-day period,</p>
<ul>
<li>Enter a date. Click on the date text to choose using a calendar.</li>
<li>Click on the Next button</li>
</ul>
<p>Avadepth displays the options to use a flow rate. These are
predicted, actual, user-defined or select from the list.</p>
<ul>
<li>Select the flow rate to be used.</li>
<li>Click on the daily depth button to display the graph.</li>
</ul>
<p>Avadepth plots the variation of maximum available depths for a
single day.</p>
<p>To print the graph to your printer:</p>
<p>In your browser menu, you can select File|Print to print a
hard-copy. To display a tabulation of the least available depth and
control point location for each two-hour period on the selected date.
</p>
<ul>
<li>Click on the report tab.</li>
<li>To print a hard-copy, select click File|Print menu item.</li>
</ul>
</div>
</div>
</div>
</div>
<h2 id="error_message" style="display:none"></h2>
<div id="report_body" class="grid-12" style="display:none;">
<div id="depths_report_header"
class="info span-12">
<h2 style="padding: 0; margin:0;" class="align-center print_hide">Available Depth Report</h2>
<span class="span-12" style="display: block; text-align: center; margin: 0 0 0 0;">
<div style="display: inline-block;" >for </div>
<div id="date-display" style="display: inline-block; padding: 0 0 0 0; margin: 0 0 0 0;" class="align-center print-align-center"></div>
</span>
<div class="span-12">
<table style="margin-left: auto; margin-right: auto;">
<tr>
<td style="padding: 2px; ">
<span>Navigation Channel: Fraser River -
<span id="static-limit"></span>
</span>
</td>
</tr>
<tr>
<td style="padding: 2px; ">
Channel Condition:
<span id="static-type">Current Soundings</span> for Km 1 to
<span id="static-chainage">35</span> at
<span id="static-width">100</span>% Available Width
</td>
</tr>
<tr>
<td style="padding: 2px; ">
<p style="margin: 0 0 0 0;">
Hope Discharge
<span id="static-discharge"></span>m3/s
(<span id="static-discharge-eval">Predicted</span>)<br />
</p>
</td>
</tr>
</table>
</div>
<p>
<span id="static-date"></span>
</p>
</div>
<div class="clear"></div>
<div class="span-6">
<table id="depths" style="text-align:center">
<thead>
<tr>
<th style="width:5em" class="verify">Time (pst)</th>
<th style="width:5em">Chainage (km)</th>
<th style="width:6em">Available Depth (m)</th>
<th>Location of Control Point</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="page-break"></div>
<div id="depth_chart" class="demo-placeholder span-6"></div>
</div>
<!--#include virtual="/includes/footer-eng.html" -->