-
Notifications
You must be signed in to change notification settings - Fork 0
/
modal.php
1484 lines (1474 loc) · 83.7 KB
/
modal.php
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
vIDS (virtual Information Display System) for VATSIM
Filename: modal.php
Function: Contains definitions for bootstrap modal dialogs
Created: 7/22/21 (moved from index.php)
Edited: 1/24/22 (moved user-defined content to user-modals.php)
Changes: Removed ZTL hard-code references from non-static content. Implemented configurable airfield flows.
*/
include_once "vars/user_modals.php"; // User-defined modal content moved here
?>
<?php // Added to ease commenting out user defned lines below that moved to user_modals.php
/*
<!--
Modal container markup for local IDS display
Webmaster: Edit the modal content below to fit your use case. These modals are triggered when a user clicks on one of the buttons at the bottom of the vIDS grid display.
Do not edit below the line that says "DO NOT EDIT BELOW THIS LINE" - those definitions are for dynamic content or otherwise have no practical need for editing.
-->
<!-- RECAT Information - modal available in local and TRACON view -->
<div id="RECAT" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">RECAT</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<embed src="https://www.ztlartcc.org/storage/files/RECAT%20Cheatsheet_1604655713.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Local SOP - modal available in local view -->
<div id="SOP" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">SOP</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<embed src="https://www.ztlartcc.org/storage/files/ATL%20ATCT%207110.65I_1607332373.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- TRACON SOP - modal available in TRACON view -->
<div id="aSOP" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">SOP</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<embed src="https://www.ztlartcc.org/storage/files/A80%207110.65F_1604648656.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Local LOA - modal available in local view -->
<div id="LOA" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">LOA</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<embed src="https://www.ztlartcc.org/storage/files/ATL%20-%20A80%20LOA_1607138614.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- TRACON LOAs - modal available in TRACON view -->
<div id="aLOA" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">LOA</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<ul class="nav nav-tabs" id="tabContentX">
<li class="active"><a href="#a80_atl_loa" data-toggle="tab">A80-ATL ATCT</a></li>
<li><a href="#a80_ztl_loa" data-toggle="tab">A80-ZTL ARTCC</a></li>
<li><a href="#a80_sat_loa" data-toggle="tab">A80-Satelite ATCTs</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="a80_atl_loa">
<embed src="https://www.ztlartcc.org/storage/files/ATL%20-%20A80%20LOA_1607138614.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="tab-pane" id="a80_ztl_loa">
<embed src="https://www.ztlartcc.org/storage/files/A80%20-%20ZTL%20LOA_1602472801.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="tab-pane" id="a80_sat_loa">
<embed src="https://www.ztlartcc.org/storage/files/A80-SAT%20ATCT%20LOA_1604650228.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Aircraft Types - modal available in local and TRACON view -->
<div id="ACFT" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Aircraft Types</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<embed src="resources/2019-10-10_Order_JO_7360.1E_Aircraft_Type_Designators_FINAL.pdf" frameborder="0" style="width:100%; height:70vh" >
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Weater Information - modal available in local and TRACON view -->
<!-- Use this link to find products for your ARTCC: https://www.weather.gov/aviation/cwsu -->
<div id="WX" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo DEFAULT_AFLD_ID; ?> Weather & Forecast</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<ul class="nav nav-tabs" id="weatherInfo">
<li class="active"><a href="#wx_terminal" data-toggle="tab">ATL Terminal</a></li>
<li><a href="#wx_video" data-toggle="tab">Video Briefing</a></li>
<li><a href="#wx_gates" data-toggle="tab">A80 Convective Gates</a></li>
<li><a href="#wx_radar" data-toggle="tab">ZTL Wx Radar</a></li>
<li><a href="#wx_satellite" data-toggle="tab">ZTL Wx Satellite</a></li>
<li><a href="#wx_rvr" data-toggle="tab">ATL RVR</a></li>
<li><a href="#wx_sigmets" data-toggle="tab">ZTL SIGMETS</a></li>
<li><a href="#wx_prog" data-toggle="tab">National Prog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="wx_terminal">
<h4><?php echo DEFAULT_AFLD_ID; ?> Terminal Wx</h4>
<div id="weather_request"></div> <!-- METAR & TAF are auto-filled here, don't delete or modify this line -->
<div><img id="radar_loop" src="https://radar.weather.gov/ridge/lite/KFFC_loop.gif" alt="FFC Radar Loop" /></div>
</div>
<div class="tab-pane" id="wx_video">
<h4>ZTL Pre-Duty Video Wx Brief</h4>
<video id="wx_video_s" controls poster="https://www.weather.gov/images/ztl/Thumbnails/Video_Image.png" preload="none" src="https://www.weather.gov/media/ztl/ZTLPreDutyVideo.mp4"> </video>
</div>
<div class="tab-pane" id="wx_gates">
<h4>A80 Convective Gates</h4>
<a href="https://www.weather.gov/ztl/atlgatefcst" target="_blank"><img id="wx_gates_s" src="https://www.weather.gov/images/ztl/ATLGATES.png" alt="A80" /></a>
</div>
<div class="tab-pane" id="wx_radar">
<h4>ZTL Weather Radar</h4>
<a href="https://radar.weather.gov/?settings=v1_eyJhZ2VuZGEiOnsiaWQiOm51bGwsImNlbnRlciI6Wy04NS40MDUsMzMuMDIyXSwiem9vbSI6Nn0sImJhc2UiOiJzdGFuZGFyZCIsImNvdW50eSI6ZmFsc2UsImN3YSI6ZmFsc2UsInN0YXRlIjpmYWxzZSwibWVudSI6dHJ1ZSwic2hvcnRGdXNlZE9ubHkiOmZhbHNlfQ%3D%3D#/" target="_blank"><img id="wx_radar_s" src="https://www.weather.gov/images/ztl/ZTL_surface_plot.png" alt="Radar" /></a>
</div>
<div class="tab-pane" id="wx_satellite">
<h4>ZTL Weather Satellite</h4>
<a href="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/se/13/600x600.jpg" target="_blank"><img id="wx_satellite_s" src="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/se/13/600x600.jpg" alt="Satellite" /></a>
</div>
<div class="tab-pane" id="wx_rvr">
<h4><?php echo DEFAULT_AFLD_ID; ?> RVR</h4>
<div id="rvr_table"></div><!-- RVR table is auto-filled here, don't delete or modify this line -->
</div>
<div class="tab-pane" id="wx_sigmets">
<h4>ZTL Active SIGMETs</h4>
<a href="https://www.weather.gov/ztl/ztlmap" target="_blank"><img id="wx_sigmets_s" src="https://www.weather.gov/images/ztl/cwsu_frontmap.png" alt="SIGMETs" /></a>
</div>
<div class="tab-pane" id="wx_prog">
<h4>National Prognostic Chart</h4>
<a href="https://www.weather.gov/images/ztl/wpc_loop.gif" target="_blank"><img id="wx_prog_s" src="https://www.weather.gov/images/ztl/wpc_loop.gif" alt="Prog" /></a>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal" onClick="stopVideo('wx_video_s');">Close</button>
</div>
</div>
</div>
</div>
<!-- Local radio frequencies - modal available in local view -->
<div id="FREQS" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo DEFAULT_AFLD_ID; ?> Tower Frequency List</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Clearance Delivery</h4>
<ul>
<li>Flight Data (FD): N/A</li>
<li>Clearance Delivery One (CD-1): 118.100</li>
<li>Clearance Delivery Two (CD-2): 118.700</li>
</ul>
<h4>Ground Control</h4>
<ul>
<li>Ground Control North (GC-N): 121.900</li>
<li>Ground Control Center (GC-C): 121.750</li>
<li>Ground Control South (GC-S): 121.650</li>
<li>Ground Metering (GM): 125.000</li>
</ul>
<h4>Local Control</h4>
<ul>
<li>Local Control One (LC-1): 119.100</li>
<li>Local Control Two (LC-2): 125.320</li>
<li>Local Control Three (LC-3): 123.850</li>
<li>Local Control Four (LC-4): 119.300</li>
<li>Local Control Five (LC-5): 119.500</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- TRACON radio frequencies - modal available in TRACON view -->
<div id="aFREQS" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo TRACON_ID; ?> Facility Frequency List</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Terminal Arrival Radar (TAR)</h4>
<ul>
<li>TAR-H: 127.900</li>
<li>TAR-D: 128.000</li>
<li>TAR-L: 128.520</li>
<li>TAR-Y: 124.720</li>
</ul>
<h4>Arrival Radar (AR)</h4>
<ul>
<li>AR-O: 124.600</li>
<li>AR-V: 127.250</li>
<li>AR-A: 135.370</li>
</ul>
<h4>Departure Radar (DR)</h4>
<ul>
<li>DR-N: 135.320</li>
<li>DR-S: 125.650</li>
<li>DR-I: 121.220</li>
</ul>
<h4>Satellite (SAT)</h4>
<ul>
<li>Northeast (SAT-P): 126.970</li>
<li>Northwest (SAT-F): 121.000</li>
<li>Southwest(SAT-X): 119.800</li>
<li>Southesat (SAT-G): 128.570</li>
<li>PDK Final (SAT-Q): 124.300</li>
</ul>
<h4>Outer Sectors</h4>
<ul>
<li>Macon Low (MCN-M): 124.200</li>
<li>Macon High (MCN-W): 119.600</li>
<li>Columbus Low (CSG-Z): 125.500</li>
<li>Columbus High (CSG-R): 126.550</li>
<li>Athens Low: 132.470</li>
<li>Athens High (AHN-3E): 119.870</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Local airspace diagrams - modal available in local view -->
<div id="ARSPC" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo DEFAULT_AFLD_ID; ?> Tower Airspace</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<ul class="nav nav-tabs" id="towerAirspace">
<li class="active"><a href="#atl_eastops" data-toggle="tab">ATL East Ops</a></li>
<li><a href="#atl_westops" data-toggle="tab">ATL West Ops</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="atl_eastops">
<h4>ATL East Ops</h4>
<img src="resources/atl-east-airspace.png" alt="ATL east ops" />
</div>
<div class="tab-pane" id="atl_westops">
<h4>ATL West Ops</h4>
<img src="resources/atl-west-airspace.png" alt="ATL west ops" />
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- TRACON airspace diagrams - modal available in TRACON view -->
<div id="aARSPC" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo TRACON_ID; ?> Airspace Diagrams</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<ul class="nav nav-tabs" id="a80Airspace">
<li class="active"><a href="#atl_bravo" data-toggle="tab">ATL Class B</a></li>
<li><a href="#a80_tar_east" data-toggle="tab">TAR East Ops</a></li>
<li><a href="#a80_tar_west" data-toggle="tab">TAR West Ops</a></li>
<li><a href="#a80_ar_east" data-toggle="tab">AR East Ops</a></li>
<li><a href="#a80_ar_west" data-toggle="tab">AR West Ops</a></li>
<li><a href="#a80_dr_dual_east" data-toggle="tab">DR Duals East Ops</a></li>
<li><a href="#a80_dr_trip_east" data-toggle="tab">DR Trips East Ops</a></li>
<li><a href="#a80_dr_dual_west" data-toggle="tab">DR Duals West Ops</a></li>
<li><a href="#a80_dr_trip_west" data-toggle="tab">DR Trips West Ops</a></li>
<li><a href="#a80_sat_east" data-toggle="tab">Sat East Ops</a></li>
<li><a href="#a80_sat_west" data-toggle="tab">Sat West Ops</a></li>
<li><a href="#a80_pdk_final" data-toggle="tab">PD Final (SAT-Q)</a></li>
<li><a href="#a80_macon" data-toggle="tab">Macon Sector</a></li>
<li><a href="#a80_columbus" data-toggle="tab">Columbus Sector</a></li>
<li><a href="#a80_athens" data-toggle="tab">Athens Sector</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="atl_bravo">
<h4>ATL Class B</h4>
<img src="resources/class-b-airspace.PNG" alt="ATL class B" />
</div>
<div class="tab-pane" id="a80_tar_east">
<h4>A80 TAR East Ops</h4>
<img src="resources/tar-east-airspace.PNG" alt="A80 TAR east ops" />
</div>
<div class="tab-pane" id="a80_tar_west">
<h4>A80 TAR West Ops</h4>
<img src="resources/tar-west-airspace.PNG" alt="A80 tar west ops" />
</div>
<div class="tab-pane" id="a80_ar_east">
<h4>A80 AR Final East Ops</h4>
<img src="resources/ar-east-airspace.PNG" alt="A80 ar east ops" />
</div>
<div class="tab-pane" id="a80_ar_west">
<h4>A80 AR Final West Ops</h4>
<img src="resources/ar-west-airspace.PNG" alt="A80 ar west ops" />
</div>
<div class="tab-pane" id="a80_dr_dual_east">
<h4>A80 DR Duals East Ops</h4>
<img src="resources/dr-east-duals-airspace.PNG" alt="A80 dr duals east ops" />
</div>
<div class="tab-pane" id="a80_dr_trip_east">
<h4>A80 DR Trips East Ops</h4>
<img src="resources/dr-east-trips-airspace.PNG" alt="A80 dr trips east ops" />
</div>
<div class="tab-pane" id="a80_dr_dual_west">
<h4>A80 DR Duals West Ops</h4>
<img src="resources/dr-west-duals-airspace.PNG" alt="A80 dr duals west ops" />
</div>
<div class="tab-pane" id="a80_dr_trip_west">
<h4>A80 DR Trips West Ops</h4>
<img src="resources/dr-west-trips-airspace.PNG" alt="A80 dr trips west ops" />
</div>
<div class="tab-pane" id="a80_sat_east">
<h4>A80 Satellite East Ops</h4>
<img src="resources/sat-east-airspace.PNG" alt="A80 sat east ops" />
</div>
<div class="tab-pane" id="a80_sat_west">
<h4>A80 Satellite West Ops</h4>
<img src="resources/sat-west-airspace.PNG" alt="A80 sat west ops" />
</div>
<div class="tab-pane" id="a80_pdk_final">
<h4>A80 PDK Final (SAT-Q)</h4>
<img src="resources/sat-q-airspace.PNG" alt="A80 sat q" />
</div>
<div class="tab-pane" id="a80_macon">
<h4>A80 Macon Sector</h4>
<img src="resources/mcn-airspace.PNG" alt="A80 mcn" />
</div>
<div class="tab-pane" id="a80_columbus">
<h4>A80 Columbus Sector</h4>
<img src="resources/csg-airspace.PNG" alt="A80 csg" />
</div>
<div class="tab-pane" id="a80_athens">
<h4>A80 Athens Sector</h4>
<img src="resources/ahn-airspace.PNG" alt="A80 ahn" />
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- RNAV Off-The-Ground reference - modal available in local and TRACON view -->
<div id="ROTG" class="modal fade">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">RNAV Off The Ground</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div id="weather_request" class="modal-body">
<img src="resources/ROTG.png" class="img-responsive" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Local relief briefing - modal available in local view -->
<div id="RELIEF" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Relief Briefings</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<ul class="nav nav-tabs" id="tabContent">
<li class="active"><a href="#info" data-toggle="tab">Info</a></li>
<li><a href="#clearance" data-toggle="tab">Clnc Delivery</a></li>
<li><a href="#lclground" data-toggle="tab">Local/Ground</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="info">
<p>Click on the tabs above to access relief briefings from the ATL ATCT SOP, Appendix H.</p><br/><br/>
<p>NOTE: There must be at least a 4 minute overlap during each position relief briefing: A minimum of 2 minutes prior to receiving the briefing and a minimum of 2 minutes at the end of the briefing. At the beginning of the 2 minutes prior to the briefing, the relieving controller must be monitoring the frequency. Upon completion of the briefing, the controller relieved must monitor the frequency for 2 minutes. </p>
</div>
<div class="tab-pane" id="clearance">
<h4>Appendix H-1: Flight Data/Clearance Delivery Checklist:</h4>
<ol start="1">
<li>Status Information Areas: Applicable IDS and PIREP page, etc.</li>
<li>Equipment Status: Radios (proper frequencies (de)selected), Visibility Range and Center, ATIS, RADAR(s), etc.</li>
<li>Staffing: Adjacent and inter-facility staffing.</li>
<li>Airport Conditions: Airspace configuration, Runway(s) in use, runway/taxiway closures, etc.</li>
<li>Airport Activities: Gate hold procedures, braking action reports, etc.</li>
<li>Weather: Trends, Windshear, ATIS, PIREPs, SIGMETs, AIRMETs, etc.</li>
<li>Flow Control: Special programs, etc.</li>
<li>Special Activities: Events, Evaluations, Emergency, etc.</li>
<li>Special Instructions: Coordination, CIC instructions, etc.</li>
<li>Training in Progress.</li>
<li>Traffic Information:</li>
<ol start="a">
<li>Aircraft standing by for clearance or TMU release, etc.</li>
<li>PDC eligible flight plans which have not yet been sent a PDC.</li>
<li>Coordination agreements with other positions.</li>
</ol>
</ol>
</div>
<div class="tab-pane" id="lclground">
<h4>Appendix H-2: Ground & Local Control Checklist:</h4>
<ol start="1">
<li>Status Information Areas: Applicable IDS and PIREP page, etc.</li>
<li>Equipment Status: Radios (proper frequencies (de)selected), Visibility Range and Center, ATIS, RADAR(s), etc.</li>
<li>Staffing: Adjacent and inter-facility staffing.</li>
<li>Airport Conditions: Airspace configuration, Runway(s) in use, runway/taxiway closures, etc.</li>
<li>Airport Activities: Gate hold procedures, braking action reports, etc.</li>
<li>Weather: Trends, Windshear, ATIS, PIREPs, SIGMETs, AIRMETs, etc.</li>
<li>Flow Control: Special programs, reportable CLT delays, etc.</li>
<li>Special Activities: Events, Evaluations, Emergency, etc.</li>
<li>Special Instructions: Coordination, CIC instructions, LUAW, LAHSO, etc.</li>
<li>Training in Progress.</li>
<li>Verbally State Runway Status: Unavailable, closed, or occupied.</li>
<li>Traffic Information:</li>
<ol start="a">
<li>Status of each aircraft and/or vehicle.</li>
<li>Point-outs.</li>
<li>Aircraft affected by Traffic Management Initiatives.</li>
<li>Coordination agreements with other positions.</li>
<li>Aircraft holding or standing by for service.</li>
</ol>
</ol>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- TRACON relief briefing - modal available in TRACON view -->
<div id="aRELIEF" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Relief Briefings</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Relief Briefing Checklist:</h4>
<ol start="1">
<li>Status Information Areas: Applicable IDS and PIREP page, etc.</li>
<li>Equipment Status: Radios (proper frequencies (de)selected), Visibility Range and Center, ATIS, RADAR(s), etc.</li>
<li>Staffing: Adjacent and inter-facility staffing.</li>
<li>Airport Conditions: Airspace configuration, Runway(s) in use, runway/taxiway closures, etc.</li>
<li>Weather: Trends, Windshear, ATIS, PIREPs, SIGMETs, AIRMETs, etc.</li>
<li>Flow Control: Special programs, etc.</li>
<li>Special Activities: Events, Evaluations, Emergency, etc.</li>
<li>Special Instructions: Coordination, CIC instructions, etc.</li>
<li>Training in Progress.</li>
<li>Traffic Information:</li>
<ol start="a">
<li>Aircraft standing by for clearance or TMU release, etc.</li>
<li>PDC eligible flight plans which have not yet been sent a PDC.</li>
<li>Coordination agreements with other positions.</li>
</ol>
</ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Emergency checklist - modal available in local and TRACON view -->
<div id="EMER" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Emergency Procedures</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p>Derived from 7110.65<br/>10-2-1. INFORMATION REQUIREMENTS<p/>
<ol type="a">
<li>Start assistance as soon as enough information has been obtained upon which to act. Information requirements will vary, depending on the existing situation. Minimum required information for inflight emergencies is:</li>
<ol start="1">
<li>Aircraft identification and type.</li>
<li>Nature of the emergency.</li>
<li>Pilot's desires.</li>
</ol>
<li>After initiating action, obtain the following items or any other pertinent information from the pilot or aircraft operator, as necessary:</li>
<ol start="1">
<li>Aircraft altitude.</li>
<li>Fuel remaining in time.</li>
<li>Pilot reported weather.</li>
<li>Pilot capability for IFR flight.</li>
<li>Time and place of last known position.</li>
<li>Heading since last known position.</li>
<li>Airspeed.</li>
<li>Navigation equipment capability.</li>
<li>NAVAID signals received.</li>
<li>Visible landmarks.</li>
<li>Aircraft color.</li>
<li>Number of people on board.</li>
<li>Point of departure and destination.</li>
<li>Emergency equipment on board.</li>
</ol></ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
*/
?>
<!--
DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE
DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE
DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE DO NOT EDIT BELOW THIS LINE
-->
<div id="AFLD" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo DEFAULT_AFLD_ID; ?> Airfield Config</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">Traffic flow</label>
<div class="col-sm-2">
<select id="flow" onchange="setActiveRunways(this);" disabled>
<?php
global $flow_override;
foreach(array_unique($flow_override) as $flow) {
print " <option value=\"$flow\">$flow</option>";
}
?>
<!--
<option value="EAST">EAST</option>
<option value="WEST">WEST</option>
-->
<option selected></option>
</select>
</div>
<div class="col-sm-6">
<p>Sets traffic flow direction displayed in vIDS.</p>
</div>
</div>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">Arrival runways</label>
<div class="col-sm-2">
<select id="arr_rwy" onchange="checkDuplicates(this);" multiple disabled>
</select>
</div>
<div class="col-sm-6">
<p>Sets arrival runways and approach type displayed in vIDS. Hold 'CTRL' and click to select multiple.</p>
</div>
</div>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">Departure runways</label>
<div class="col-sm-2">
<select id="dep_rwy" onchange="checkDuplicates(this);" multiple disabled>
</select>
</div>
<div class="col-sm-6">
<p>Sets departure runways and ROTG operation displayed in vIDS. Hold 'CTRL' and click to select multiple.</p>
</div>
</div>
<?php
// Display customizable airfield options set in config.php
global $afld_config_options;
foreach($afld_config_options as $afld_config_option) {
print " <div class=\"form-group row\">
<label for=\"inputName\" class=\"col-sm-4 col-form-label\">$afld_config_option[1]</label>
<div class=\"col-sm-2\">
<input type=\"checkbox\" class=\"form-control\" id=\"$afld_config_option[0]\">
</div>
<div class=\"col-sm-6\">
<p>$afld_config_option[2]</p>
</div>
</div>";
}
?>
<!--
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">Full triple arrivals?</label>
<div class="col-sm-2">
<input type="checkbox" class="form-control" id="fta">
</div>
</div>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">Full triple departures?</label>
<div class="col-sm-2">
<input type="checkbox" class="form-control" id="ftd">
</div>
</div>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">9L departures @ intersection M2</label>
<div class="col-sm-2">
<input type="checkbox" class="form-control" id="ninelm2">
</div>
</div>
<div class="form-group row">
<label for="inputName" class="col-sm-4 col-form-label">LAHSO</label>
<div class="col-sm-2">
<input type="checkbox" class="form-control" id="lahso">
</div>
<div class="col-sm-6">
<p>Land and hold short operations in effect.</p>
</div>
</div>
-->
<div class="form-group">
<label for="inputComment">CIC Notices</label>
<p>*Note: information entered below will only be shown to users viewing the local vIDS display (does not propagate to A80).</p>
<textarea class="form-control" id="CIC_text" rows="4"></textarea>
</div>
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="AutoIDS" onclick="manualControl(this);" readonly>
<label class="custom-control-label" for="autoIDS">Auto-populate vIDS from network</label>
<p>Uncheck this box for manual/CIC control of flow/arrival/departure information</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="saveAFLD();">Save</button>
</div>
</div>
</div>
</div>
<div id="PIREP" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Add Pilot Weather Report (PIREP)</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form id="pirep_entry">
<div class="form-group">
<label for="urgency">Select Routine/Urgent</label>
<select id="urgency" class="form-control">
<option value="UA" selected>UA - Routine</option>
<option value="UUA">UUA - Urgent</option>
</select>
</div>
<div class="form-group">
<label for="location">Location</label>
<input type="text" id="location" class="form-control" placeholder="<?php echo DEFAULT_AFLD_ID; ?>">
<small id="locationHelp" class="form-text text-muted">Use Airport or NAVAID identifiers only</small>
</select>
</div>
<div class="form-group">
<label for="time">Time</label>
<input type="text" id="time" class="form-control" placeholder="0000">
<small id="timeHelp" class="form-text text-muted">When conditions occurred or were encountered (Zulu)</small>
</select>
</div>
<div class="form-group">
<label for="altitude">Altitude/Flight Level</label>
<input type="text" id="altitude" class="form-control" placeholder="FL310">
<small id="altitudeHelp" class="form-text text-muted">Examples: FL095, FL310, FLUNKN</small>
</select>
</div>
<div class="form-group">
<label for="aircraft">Type Aircraft</label>
<input type="text" id="aircraft" class="form-control" placeholder="B738">
<small id="aircraftHelp" class="form-text text-muted">Examples: P28A, RV8, B738, UNKN</small>
</select>
</div>
<div class="form-group">
<label for="conditions">Flight Conditions/Remarks</label>
<textarea id="conditions" class="form-control" rows="3"></textarea>
<small id="conditionsHelp" class="form-text text-muted">Enter weather conditions (turbulence, icing, windshear) here</small>
</select>
</div>
</form>
<p>Note: PIREPs expire 1 hour after they are entered and are auto-purged from this system.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="savePIREP();">Save</button>
</div>
</div>
</div>
</div>
<div id="TMU" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">TMU Information</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="inputComment">Enter TMU info below</label>
<textarea class="form-control" id="TMU_text" rows="4"></textarea>
</div>
</form>
<p>URLs entered in this field will appear as clickable links</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="saveTMU();">Save</button>
</div>
</div>
</div>
</div>
<div id="CIC" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title"><?php echo TRACON_ID; ?> CIC Information</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p>*Note: information entered below will only be shown to users viewing the <?php echo TRACON_ID; ?> vIDS display (does not propagate to local).</p>
<form>
<div class="form-group">
<label for="inputComment">Enter CIC notes below</label>
<textarea class="form-control" id="A80_CIC_text" rows="4"></textarea>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="saveA80CIC();">Save</button>
</div>
</div>
</div>
</div>
<div id="HELP" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">vIDS Help - Local Display</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Overview</h4>
<p>vIDS is a collaboration and information sharing tool. Data entered on your display will populate on the displays of all other users logged
in within 15 seconds. Any user that did not make the change will see a change advisory with the updated item highlighted in red and a button
asking the user to acknowledge the change. Although all users logged into the system can make changes to the data in vIDS, only the facility
CIC should make changes.</p>
<p>The vIDS system contains multiple display formats, some of which are user-customizable. Critical data is automatically-shared between the
different display elements (for example, the <?php echo TRACON_ID; ?> display uses live data elements from the <?php echo DEFAULT_AFLD_ID; ?> local display). Because of this feature, all users
benefit from the same data despite viewing different displays.</p>
<h4>The local display</h4>
<p>Local view is optimized for use by controllers working the <?php echo DEFAULT_AFLD_ID; ?> tower cab (CIC, LC, GC, CD, GM, FD). The countdown in the upper right
corner displays the remainder of the 15-second auto-refresh interval. When this count expires, the system pulls the most current data from sync files
and the VATSIM network and refreshes all data on the user's display. Clicking the "refresh" button in your web browser will not speed this process up,
as the network limits pulls to 15 seconds in order to manage traffic. Please allow the page to auto-refresh.</p>
<p>The top line of the grid displays the current ATIS code (or -- if no ATIS), the current METAR, direction of traffic flow, and critical departure
and arrival information. The next set of grids display controller combinations - the position is in static text in the top row followed by the
controller that the position is combined to in a drop-down menu in the second row. The departure positions also contain a box for the display of
departure gates underneath the controller combinations. Clicking on these boxes allows entry of assigned departure gates.</p>
<p>Located to the right of the controller position combinations, there are display areas for the current airfield configuration and traffic management
information. This data can be entered using menus launched via the AFLD and TMU buttons below. At the bottom of the grid, there are display boxes for
pilot weather reports (PIREPs) and controller-in-charge (CIC) messages. Similar to the previous displays, this information can be changed through use
of the PIREP and AFLD buttons below.</p>
<h4>Menu buttons</h4>
<p>At the bottom of the grid, there is a row of buttons that each launch a unique pop-up with additional information or settings.</p>
<ul>
<li>HOME: return to landing menu. Also used to submit a bug report.</li>
<li>WX: button displays local <?php echo DEFAULT_AFLD_ID; ?> METAR, TAF, and NEXRAD.</li>
<li>RECAT: displays the current consolidated wake turbulence guidance.</li>
<li>FREQS: displays the facility frequency map.</li>
<li>ARSPC: depiction of facility/position airspace.</li>
<!--<li>ROTG: shows the current RNAV-off-the-ground cheat sheet.</li>-->
<li>SOP: launches the facility SOP.</li>
<li>LOA: displays applicable LOAs.</li>
<li>PIREP: allows a controller to enter a PIREP.</li>
<li>ACFT: displays the FAA JO7360.1E Aircraft Type Designators.</li>
<li>RELIEF: displays a position relief checklist.</li>
<li>AFLD: allows the CIC to set airfield parameters.</li>
<li>TMU: allows entry of traffic management information.</li>
<li>EMER: displays an emergency checklist.</li>
<li>HELP: launches the help information you are reading.</li>
</ul>
<p>vIDS is currently in development. If you notice a bug, please <a href="#" onclick="showBugReportReferal('HELP');">file a bug report.</a></p>
<p>If you have additional questions or would like to interact with the development team, <a href="https://discord.gg/bZky9bv697" alt="Discord">feel free to join us on Discord.</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="aHELP" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">vIDS Help - TRACON Display</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Overview</h4>
<p>vIDS is a collaboration and information sharing tool. Data entered on your display will populate on the displays of all other users logged
in within 15 seconds. Any user that did not make the change will see a change advisory with the updated item highlighted in red and a button
asking the user to acknowledge the change. Although all users logged into the system can make changes to the data in vIDS, only the facility
CIC should make changes.</p>
<p>The vIDS system contains multiple display formats, some of which are user-customizable. Critical data is automatically-shared between the
different display elements (for example, the <?php echo TRACON_ID; ?> display uses live data elements from the <?php echo DEFAULT_AFLD_ID; ?> local display). Because of this feature, all users
benefit from the same data despite viewing different displays.</p>
<h4>The <?php echo TRACON_ID; ?> display</h4>
<p><?php echo TRACON_ID; ?> view is optimized for use by controllers working the <?php echo TRACON_LONG_NAME; ?>. The countdown in the upper right
corner displays the remainder of the 15-second auto-refresh interval. When this count expires, the system pulls the most current data from sync files
and the VATSIM network and refreshes all data on the user's display. Clicking the "refresh" button in your web browser will not speed this process up,
as the network limits pulls to 15 seconds in order to manage traffic. Please allow the page to auto-refresh.</p>
<p>The top line of the grid displays the current ATIS code (or -- if no ATIS), the current METAR, direction of traffic flow, and critical departure
and arrival information. The next set of grids display controller combinations - the position is in static text in the top row followed by the
controller that the position is combined to in a drop-down menu in the second row. The departure positions also contain a box for the display of
departure gates underneath the controller combinations. Clicking on these boxes allows entry of assigned departure gates.</p>
<p>Located to the right of the controller position combinations, there are display areas for the current airfield configuration and traffic management
information. This data can be entered using menus launched via the AFLD and TMU buttons below. At the bottom of the grid, there are display boxes for
pilot weather reports (PIREPs) and controller-in-charge (CIC) messages. Similar to the previous displays, this information can be changed through use
of the PIREP and AFLD buttons below.</p>
<h4>Satellites & outer fields</h4>
<p>Below the PIREPs and CIC notices, there is a display containing information for the A80 satellite and outer fields. Each section contains
normal tower operating hours, the ATIS code, open/closed status, active runways, and the current METAR. If a local controller is staffing
one of these fields, all information will be displayed. If no local controller is online and no ATIS is posted, the field will show "closed"
and most of the information will appear as double-dashes.</p>
<h4>Menu buttons</h4>
<p>At the bottom of the grid, there is a row of buttons that each launch a unique pop-up with additional information or settings.</p>
<ul>
<li>HOME: return to landing menu. Also used to submit a bug report.</li>
<li>WX: button displays local <?php echo DEFAULT_AFLD_ID; ?> METAR, TAF, and NEXRAD.</li>
<li>RECAT: displays the current consolidated wake turbulence guidance.</li>
<li>FREQS: displays the facility frequency map.</li>
<li>ARSPC: depiction of facility/position airspace.</li>
<!--<li>ROTG: shows the current RNAV-off-the-ground cheat sheet.</li>-->
<li>SOP: launches the facility SOP.</li>
<li>LOA: displays applicable LOAs.</li>
<li>PIREP: allows a controller to enter a PIREP.</li>
<li>ACFT: displays the FAA JO7360.1E Aircraft Type Designators.</li>
<li>RELIEF: displays a position relief checklist.</li>
<li>CIC: allows the CIC to enter notes to controllers.</li>
<li>TMU: allows entry of traffic management information.</li>
<li>EMER: displays an emergency checklist.</li>
<li>HELP: launches the help information you are reading.</li>
</ul>
<p>vIDS is currently in development. If you notice a bug, please <a href="#" onclick="showBugReportReferal('aHELP');">file a bug report.</a></p>
<p>If you have additional questions or would like to interact with the development team, <a href="https://discord.gg/bZky9bv697" alt="Discord">feel free to join us on Discord.</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="mHELP" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">vIDS Help - Multi-Airfield</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<h4>Overview</h4>
<p>vIDS is a collaboration and information sharing tool. Data entered on your display will populate on the displays of all other users logged
in within 15 seconds. Any user that did not make the change will see a change advisory with the updated item highlighted in red and a button
asking the user to acknowledge the change. Although all users logged into the system can make changes to the data in vIDS, only the facility
CIC should make changes.</p>
<p>The vIDS system contains multiple display formats, some of which are user-customizable. Critical data is automatically-shared between the
different display elements (for example, the A80 display uses live data elements from the ATL local display). Because of this feature, all users
benefit from the same data despite viewing different displays.</p>
<h4>Multi-airfield TRACON/ARTCC display</h4>
<p>Multi-airfield view is optimized for use by controllers that require situational awareness of multiple airfields (typically, TRACON and ARTCC).
Approximately every 15 seconds, the system pulls the most current data from sync files and the VATSIM network and refreshes all data on the user's
display. Clicking the "refresh" button in your web browser will not speed this process up, as the network limits pulls to 15 seconds in order to
manage traffic. Please allow the page to auto-refresh.</p>
<h4>Templates</h4>
<p>Users have the option to select a pre-built template or create a custom template. Templates consist of a list of airfields that the user wants
vIDS to display. On most display devices, vIDS will show 6 airfields without the need to scroll. To create a new template list of airfields, click
on the TRACON/ARTCC IDS button and use the drop-down to select "Create Template." Enter a name for the template (ex. June FNO). Enter ICAO
airfield IDs (ex. KATL), click Add, and then use the controls to order the airfields in your desired display sequence. Click Save. Your template
is now available for your use and any other user.</p>
<h4>Airfield grid</h4>
<p>After selecting or creating a template, you will see a grid of airfields and associated data. Each airfield is displayed in a similar format
for ease of use. The 3-letter FAA ID is displayed vertically on the left side to identify the airfield. Next, the ATIS code is displayed when an
ATIS is active for the airfield. If ATIS is offline, double-dashes are displayed. The advertized approach type is displayed in yellow directly
above the reported winds and altimeter setting in green. The middle of the display contains the most current METAR in white text. On the far
right, the active runway visual range (RVR) is displayed, where available. This display was created to closely replicate what is used in a
real TRACON facility.</p>
<p>vIDS is currently in development. If you notice a bug, please <a href="#" onclick="showBugReportReferal('mHELP');">file a bug report.</a></p>
<p>If you have additional questions or would like to interact with the development team, <a href="https://discord.gg/bZky9bv697" alt="Discord">feel free to join us on Discord.</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="DepartureGates" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Assign <?php echo TRACON_ID; ?> Departure Gates</h3>
<button type="button" class="close btn-close" data-dismiss="modal" data-bs-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form>
<?php
global $departure_positions;
foreach($departure_positions as $departure_position) {
print "<div class=\"form-group row\">
<label for=\"inputName\" class=\"col-sm-2 col-form-label\">" . $departure_position . ": </label>
<div class=\"col-sm-6\">
<input type=\"text\" id=\"depGate" . $departure_position . "\" />
</div>
<div class=\"col-sm-4\">
<p>Sets assigned departure gate for " . TRACON_ID . " " . $departure_position . " position.</p>
</div>
</div>";
}
?>
<!--
<div class="form-group row">
<label for="inputName" class="col-sm-2 col-form-label">N: </label>
<div class="col-sm-6">
<input type="text" id="depGateN" />
</div>
<div class="col-sm-4">
<p>Sets assigned departure gate for A80 N position.</p>
</div>
</div>
<div class="form-group row">