-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabels.xml
More file actions
93 lines (88 loc) · 3.94 KB
/
Copy pathLabels.xml
File metadata and controls
93 lines (88 loc) · 3.94 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
<?xml version="1.0" encoding="utf-8"?>
<!--
Labels.xml — StudSys 24 / ATC 24 (PTFS)
Defines the layout and content of aircraft radar labels (tags).
Three label families:
Full — assumed/concerned aircraft (all data lines)
Limited — uncorrelated / uncontrolled
Ground — surface movement display
-->
<Labels>
<!-- ══════════════════════════════════════════════════
FULL LABEL (correlated, assumed)
══════════════════════════════════════════════════ -->
<Label Name="Full">
<!-- Line 1: Callsign [ACID] -->
<Line>
<Field Type="Callsign" Colour="Label Callsign" Bold="true" />
<Field Type="Space" />
<Field Type="AircraftType" Colour="Label Aircraft Type" />
</Line>
<!-- Line 2: Altitude [ALT↑/↓] ClearedLevel -->
<Line>
<Field Type="Altitude" Colour="Label Altitude" />
<Field Type="TrendArrow" Colour="Label Altitude" />
<Field Type="Space" />
<Field Type="ClearedLevel" Colour="Label Cleared Level" />
</Line>
<!-- Line 3: GroundSpeed Route (dep→dest) -->
<Line>
<Field Type="GroundSpeed" Colour="Label Speed" />
<Field Type="Space" />
<Field Type="DepDest" Colour="Label Route" />
</Line>
<!-- Line 4 (scratch / free text — optional) -->
<Line>
<Field Type="Scratch" Colour="Label Scratch" />
</Line>
</Label>
<!-- ══════════════════════════════════════════════════
LIMITED LABEL (uncorrelated / uncontrolled)
══════════════════════════════════════════════════ -->
<Label Name="Limited">
<Line>
<Field Type="Callsign" Colour="Label Callsign" />
</Line>
<Line>
<Field Type="Altitude" Colour="Label Altitude" />
<Field Type="TrendArrow" Colour="Label Altitude" />
</Line>
</Label>
<!-- ══════════════════════════════════════════════════
GROUND LABEL (surface movement / GroundWindow)
══════════════════════════════════════════════════ -->
<Label Name="Ground">
<Line>
<Field Type="Callsign" Colour="Label Callsign" Bold="true" />
</Line>
<Line>
<Field Type="AircraftType" Colour="Label Aircraft Type" />
<Field Type="Space" />
<Field Type="GroundSpeed" Colour="Label Speed" />
</Line>
<Line>
<Field Type="DepDest" Colour="Label Route" />
</Line>
</Label>
<!-- ══════════════════════════════════════════════════
EMERGENCY LABEL (squawk 7700/7600/7500)
══════════════════════════════════════════════════ -->
<Label Name="Emergency">
<Line>
<Field Type="Callsign" Colour="Track Emergency" Bold="true" />
<Field Type="Space" />
<Field Type="Squawk" Colour="Track Emergency" />
</Line>
<Line>
<Field Type="Altitude" Colour="Track Emergency" />
<Field Type="TrendArrow" Colour="Track Emergency" />
<Field Type="Space" />
<Field Type="GroundSpeed" Colour="Track Emergency" />
</Line>
<Line>
<Field Type="AircraftType" Colour="Track Emergency" />
<Field Type="Space" />
<Field Type="DepDest" Colour="Track Emergency" />
</Line>
</Label>
</Labels>