-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSRAssignment.xml
42 lines (41 loc) · 1.16 KB
/
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
39
40
41
42
<?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. -->
<!-- Excluded Codes are never assigned -->
<Bin>
<Rule Excluded="true"/>
<Codes>
0000,0040,1234,2050,2077,7501,7577,7601
</Codes>
</Bin>
<!-- VFR Flights -->
<Bin>
<Rule FlightRule="V"/>
<Codes Start="7001" End="7077" />
</Bin>
<!-- Military Flights -->
<Bin>
<Rule Remarks="(\/|\b)(ETAF|ETAF|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|ETAF|EAF|AF|RAF|UN|UNO)" />
<Codes Start="1001" End="1077"/>
</Bin>
<!-- Domestic Flights -->
<Bin>
<Rule Departure="HA\w{2}|HD\w{2}" Destination="HA\w{2}|HD\w{2}"/>
<Codes Start="3501" End="3577"/>
</Bin>
<!-- International Flights -->
<Bin>
<Rule Departure="HA\w{2}|HD\w{2}" />
<Codes Start="5501" End="5577"/>
</Bin>
<!-- Transit Flights -->
<Bin>
<Codes Start="0501" End="0577"/>
<Codes Start="1601" End="1677"/>
</Bin>
</SSRAssignment>