-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSRAssignment.xml
38 lines (33 loc) · 959 Bytes
/
SSRAssignment.xml
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
<?xml version="1.0" encoding="utf-8"?>
<SSRAssignment>
<!-- Code "Bins" define available codes and their assigned Regex rules.
Priority is applied by the order they appear in this file. -->
<!-- VFR Flights -->
<Bin>
<Rule FlightRule="V" />
<Codes Start="7001" End="7077" />
</Bin>
<!-- Military Flights -->
<Bin>
<Rule Remarks="(\/|\b)(EAF|AF|MILITARY|USAF|RAF|ARMY|UN|UNO|UNITED NATIONS)\b"/>
<Codes Start="1001" End="1077"/>
</Bin>
<Bin>
<Rule Callsign="(RCH|USAF|ICE|ASY|SDAF|EAF|AF|RAF|UN|UNO)" />
<Codes Start="1001" End="1077"/>
</Bin>
<!-- Domestic Flights -->
<Bin>
<Rule Departure="HH\w{2}" Destination="HH\w{2}" />
<Codes Start="1500" End="1500" />
</Bin>
<!-- International Flights -->
<Bin>
<Rule Departure="HH\w{2}" />
<Codes Start="0100" End="0100" />
</Bin>
<!-- Transit Flights -->
<Bin>
<Codes Start="5001" End="5077" />
</Bin>
</SSRAssignment>