atcRoster.php
3.6 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
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
<?php
session_start();
require_once 'classes/realops.php';
$get = new Get();
$stats = new Stats();
date_default_timezone_set('Australia/Sydney');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'sections/header.php'; ?>
</head>
<body>
<div class="wrapper">
<?php include 'sections/navbar.php' ?>
<div class="container" id="realops-container">
<div class="row">
<article class="col-sm-12 panel panel-default" id="realops-body">
<h2 class="sub-header">ATC Roster</h2>
<p class="lead">Thank you for registering to control at RealOps Sydney 2015.</p>
<p>If you are no longer able to attend, please contact <a href="mailto:[email protected]">David Zhong, Director Operations</a> as soon as possible. This will allow us to rearrrange the roster to maximise ATC coverage.</p>
<p>All controllers will be provided with a briefing via email during the coming week.</p>
<table class="table">
<thead>
<tr>
<th>Group</th>
<th>Position</th>
<th>04z-</th>
<th>06z-</th>
<th>08z-</th>
<th>10z-12z</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="5">SY TWR</td>
<td>SY ACD</td>
<td>Joshua Gibbs</td>
<td>Joshua Gibbs</td>
<td>Patrick Gilmore</td>
<td>Luke Bryant</td>
</tr>
<tr>
<td>SY SMC W</td>
<td>James Reginato</td>
<td>James Reginato</td>
<td>Matt Godwick</td>
<td>Patrick Gilmore</td>
</tr>
<tr>
<td>SY SMC E</td>
<td>Josh Monteforte</td>
<td>Josh Monteforte</td>
<td>John Spicer</td>
<td>Daniel Smith</td>
</tr>
<tr>
<td>SY TWR W</td>
<td>Patrick Gilmore</td>
<td>Patrick Gilmore</td>
<td>Joshua Gibbs</td>
<td>Joshua Gibbs</td>
</tr>
<tr>
<td>SY TWR E</td>
<td>Luke Bryant</td>
<td>Aidan Sandri</td>
<td>Rowan Lilley</td>
<td>Zach Biesse-Fitton</td>
</tr>
<tr>
<td rowspan="6">SY TCU</td>
<td>SY Flow</td>
<td>Kirk Christie</td>
<td>Kirk Christie</td>
<td></td>
<td>David Zhong</td>
</tr>
<tr>
<td>SY APP N</td>
<td>Rowan Lilley</td>
<td>Rowan Lilley</td>
<td>Robert Fluke</td>
<td>Robert Fluke</td>
</tr>
<tr>
<td>SY APP S</td>
<td>Jerry Law</td>
<td>Daniel Smith</td>
<td>Daniel Smith</td>
<td>Matt Godwin</td>
</tr>
<tr>
<td>SY DIR W</td>
<td>Harrison Scott</td>
<td>Harrison Scott</td>
<td>Tracy Shiffman</td>
<td>Tracy Shiffman</td>
</tr>
<tr>
<td>SY DIR E</td>
<td>Kurt D'Amico</td>
<td>Peter Story</td>
<td>Peter Story</td>
<td>Hayden McClure</td>
</tr>
<tr>
<td>SY DEP</td>
<td>David Palmer</td>
<td>David Palmer</td>
<td>Dru Klumper</td>
<td>Dru Klumper</td>
</tr>
<tr>
<td rowspan="5">En route</td>
<td>Armidale (ARL)</td>
<td>David Zhong</td>
<td>Jerry Law</td>
<td>Jerry Law</td>
<td>Rowan Lilley</td>
</tr>
<tr>
<td>Bindook (BIK)</td>
<td>James White</td>
<td>James White</td>
<td>Harrison Scott</td>
<td>Harrison Scott</td>
</tr>
<tr>
<td>Downs (DOS)</td>
<td>Peter Story</td>
<td>Kurt D'Amico</td>
<td>David Palmer</td>
<td>David Palmer</td>
</tr>
<tr>
<td>Snowy (SNO)</td>
<td>Daniel Smith</td>
<td>Dru Klumper</td>
<td>James Ham</td>
<td></td>
</tr>
<tr>
<td>Bourke (BKE)</td>
<td></td>
<td>Matt Godwin</td>
<td>Zach Biesse-Fitton</td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.wrapper -->
<?php include 'sections/footer.php'; ?>