forked from pspc-spac/avadepth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pwl-nep-eng.html
139 lines (127 loc) · 5.27 KB
/
pwl-nep-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
<!--#include virtual="/includes/header-eng.html" -->
<script language="javascript" type="text/javascript" src="scripts/flot/jquery.flot.js"></script>
<script src="scripts/pwl-nep.js"></script>
<h1 class="print-align-center">Predicted Water Levels & Velocities</h1>
<div class="grid-12 print_hide">
<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>
</ul>
<div style="height:250px;border: 2px solid #eee" class="summary tabs-panel filled">
<div id="parameters" style="height:250px">
<form id="daily_depth">
<div class="span-3">
<div>
<label for="date">Date:</label>
<input id="date" type="text" name="date" class="datepicker" />
<input id="alt-date" type="hidden" />
</div>
<div>
<label for="fraser_river">Fraser River:</label>
<select id="fraser_river"
name="fraser_river">
<option value="South Arm" selected="selected">South Arm (km 0-40)</option>
<option value="North Arm">North Arm (km 0-30)</option>
<option value="Main Arm">Main Arm (km 40-92)</option>
</select>
<input type="hidden" name="waterway" id="waterway" value="0" />
</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"></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"></span>m³s)</label><br />
<input id="discharge_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="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>
<label for="interval">Interval:</label>
<select id="interval">
<option value="15">15 minute</option>
<option value="30">30 minute</option>
<option value="60" selected="selected">1 hour</option>
<option value="120">2 hour</option>
</select>
</div>
<div>
<label for="report">Report:</label>
<input id="report"
type="radio"
name="report"
checked="checked"
value="0" /> Water Levels
<input type="radio"
name="report"
value="1"
style="margin-left:1em"/> Velocities<br />
</div>
</div>
<div class="span-8">
<img id="fraser_river_map"
src="images/pwl_southarm.png" />
</div>
</form>
<div class="clear"></div>
<button id="submit"
type="button"
class="button button-accent"
name="submit">Apply
</button>
<button id="print_predicted_water_levels" class="button button-accent">Print</button>
<img class="spinner" src="images/spinner.gif" alt="" />
</div>
</div>
</div>
</div>
<div id="report_body">
<div style="text-align:center">
<h2 id="river_discharge_report" style="margin: 3px 0 0 0;"></h2>
<h2 style="margin: 0 0 0 0;">Fraser River - <span id="static-arm">South Arm</span></h2>
<p>For <span id="static-date"></span> at <span id="static-interval">1 hour</span> intervals<br />
Hope Discharge <span id="static-discharge"></span>m3/s (<span id="static-discharge-eval">Predicted</span>)</p>
</div>
<div class="clear"></div>
<div class="span-8">
<table id="water-levels"
class="table-condensed align-center print-table-fixed"
>
<thead>
<tr>
<th rowspan="2">Time (PST)</th>
<th colspan="21" id="location"><span id="river-section"></span></th>
</tr>
<tr id="headerkm">
</tr>
</thead>
<tbody>
</tbody>
</table>
<ul>
<li id="note-at-bottom">Water level is referenced to Chart Datum which is relative to Local Low Water.<br />
Click on a time or location to display a graph.</li>
</ul>
</div>
</div>
<!--#include virtual="/includes/footer-eng.html" -->