-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path_abbr.py
702 lines (702 loc) · 20.6 KB
/
_abbr.py
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
ICAO_abbr = {
'A/A': 'Air-to-air',
'A/G': 'Air-to-ground',
'AAL': 'Above Aerodrome Level',
'ABM': 'Abeam',
'ABN': 'Aerodrome Beacon',
'ABT': 'About',
'ABV': 'Above',
'ACC': 'Area Control',
'ACFT': 'Aircraft',
'ACK': 'Acknowledge',
'ACL': 'Altimeter Check Location',
'ACN': 'Aircraft Classification Number',
'ACPT': 'Accepted',
'ACT': 'Active',
'AD': 'Aerodrome',
'ADA': 'Advisory Area',
'ADC': 'Aerodrome Chart',
'ADDN': 'Additional',
'ADJ': 'Adjacent',
'ADR': 'Advisory Route',
'ADS': 'Automatic Dependent Surveillance',
'ADVS': 'Advisory Service',
'ADZ': 'Advised',
'AFIL': 'Flight Plan Filed In The Air',
'AFM': 'Affirm',
'AFT': 'After',
'AGA': 'Aerodromes, Air Routes and Ground Aids',
'AGN': 'Again',
'ALERFA': 'Alert Phase',
'ALRS': 'Alerting Service',
'ALS': 'Approach Lighting System',
'ALT': 'Altitude',
'ALTN': 'Alternate',
'AMA': 'Area Minimum Altitude',
'ANC': 'Aeronautical Chart',
'ANCS': 'Aeronautical Navigation Chart',
'ANS': 'Answer',
'AOC': 'Aerodrome Obstacle Chart',
'AP': 'Airport',
'APCH': 'Approach',
'APDC': 'Aircraft Parking/docking Chart',
'APN': 'Apron',
'APNS': 'Aprons',
'APP': 'Approach Control',
'APR': 'April',
'APRX': 'Approximately',
'APSG': 'After Passing',
'APV': 'Approved',
'ARC': 'Area Chart',
'ARNG': 'Arrange',
'ARO': 'Air Traffic Services Reporting Office',
'ARP': 'Aerodrome Reference Point',
'ARR': 'Arriving',
'ARST': 'Arresting',
'ASC': 'Ascend To',
'ASDA': 'Accelerate-Stop Distance Available',
'ASPEEDG': 'Airspeed Gain',
'ASPEEDL': 'Airspeed Loss',
'ASPH': 'Asphalt',
'ATA': 'Actual Time of Arrival',
'ATD': 'Actual Time of Departure',
'ATFM': 'Air Traffic Flow Management',
'ATM': 'Air Traffic Management',
'ATP': 'At',
'ATTN': 'Attention',
'ATZ': 'Aerodrome Traffic Zone',
'AUG': 'August',
'AUTH': 'Authorization',
'AUW': 'All Up Weight',
'AUX': 'Auxiliary',
'AVBL': 'Available',
'AVG': 'Average',
'AVGAS': 'Aviation Gasoline',
'AWTA': 'Advise At What Time Able',
'AWY': 'Airway',
'AWYS': 'Airways',
'AZM': 'Azimuth',
'BA': 'Braking Action',
'BCN': 'Beacon',
'BCST': 'Broadcast',
'BDRY': 'Boundary',
'BFR': 'Before',
'BLDG': 'Building',
'BLO': 'Below Clouds',
'BLW': 'Below',
'BRF': 'Short',
'BRG': 'Bearing',
'BRKG': 'Breaking',
'BTL': 'Between Layers',
'BTN': 'Between',
'CD': 'Candela',
'CDN': 'Coordination',
'CF': 'Change Frequency To',
'CFM': 'Confirm',
'CGL': 'Circling Guidance Light(s)',
'CH': 'Channel',
'CHG': 'Changed',
'CIT': 'Near or Over Large Towns',
'CIV': 'Civil',
'CK': 'Check',
'CL': 'Centre Line',
'CLBR': 'Calibration',
'CLD': 'Cloud',
'CLG': 'Calling',
'CLIMB-OUT': 'Climb-out Area',
'CLR': 'Clearance',
'CLRD': 'Cleared',
'CLSD': 'Closed',
'CMB': 'Climb',
'CMPL': 'Complete',
'CNL': 'Cancel',
'CNS': 'Communications, Navigation And Surveillance',
'COM': 'Communications',
'CONC': 'Concrete',
'COND': 'Condition',
'CONS': 'Continuous',
'CONST': 'Construction',
'CONT': 'Continued',
'COOR': 'Coordination',
'COORD': 'Coordinates',
'COP': 'Change-over Point',
'COR': 'Correction',
'COT': 'At The Coast',
'COV': 'Covered',
'CPDLC': 'Controller-pilot Data Link Communications',
'CPL': 'Current Flight Plan',
'CRC': 'Cyclic Redundancy Check',
'CRZ': 'Cruise',
'CTAM': 'Climb To And Maintain',
'CTC': 'Contact',
'CTL': 'Control',
'CTN': 'Caution',
'CTR': 'Control Zone',
'CVR': 'Cockpit Voice Recorder',
'CW': 'Continuous Wave',
'CWY': 'Clearway',
'DA': 'Decision Altitude',
'DCKG': 'Docking',
'DCP': 'Datum Crossing Point',
'DCPC': 'Direct Controller-pilot Communications',
'DCT': 'Direct',
'DEC': 'December',
'DEG': 'Degrees',
'DEP': 'Departing',
'DES': 'Descend',
'DEST': 'Destination',
'DETRESFA': 'Distress Phase',
'DEV': 'Deviating',
'DFDR': 'Digital Flight Data Recorder',
'DFTI': 'Distance From Touchdown Indicator',
'DH': 'Decision Height',
'DIP': 'Diffuse',
'DIST': 'Distance',
'DIV': 'Divert',
'DLA': 'Delay',
'DLY': 'Daily',
'DNG': 'Dangerous',
'DOM': 'Domestic',
'DPT': 'Depth',
'DR': 'Dead Reckoning',
'DRG': 'During',
'DTAM': 'Descend To And Maintain',
'DTG': 'Date-time Group',
'DTHR': 'Displaced Runway Threshold',
'DTRT': 'Deteriorating',
'DTW': 'Dual Tandem Wheels',
'DUPE': 'This Is A Duplicate Message',
'DUR': 'Duration',
'DVOR': 'Doppler VOR',
'DW': 'Dual Wheels',
'EAT': 'Expected Approach Time',
'EB': 'Eastbound',
'EDA': 'Elevation Differential Area',
'EET': 'Estimated Elapsed Time',
'EFC': 'Expect Further Clearance',
'ELBA': 'Emergency Location Beacon',
'ELEV': 'Elevation',
'ELR': 'Extra Long Range',
'EM': 'Emission',
'EMERG': 'Emergency',
'END': 'Stop-end',
'ENE': 'East-north-east',
'ENG': 'Engine',
'ENR': 'En-route',
'ENRC': 'En-route Chart',
'EOBT': 'Estimated Off-block Time',
'EQPT': 'Equipment',
'ER': 'Here',
'ESE': 'East-south-east',
'EST': 'Estimate',
'ETA': 'Estimated Time Of Arrival',
'ETD': 'Estimated Time Of Departure',
'ETO': 'Estimated Time Over Significant Point',
'EV': 'Every',
'EXC': 'Except',
'EXER': 'Exercise',
'EXP': 'Expect',
'EXTD': 'Extend',
'FAC': 'Facilities',
'FAF': 'Final Approach Fix',
'FAL': 'Facilitation of International Airtransport',
'FAP': 'Final Approach Point',
'FATO': 'Final Approach And Take-off Area',
'FAX': 'Fax',
'FBL': 'Light',
'FCST': 'Forecast',
'FCT': 'Friction Coefficient',
'FDPS': 'Flight Data Processing System',
'FEB': 'February',
'FLD': 'Field',
'FLG': 'Flashing',
'FLR': 'Flares',
'FLT': 'Flight',
'FLTS': 'Flights',
'FLTCK': 'Flight Check',
'FLUC': 'Fluctuating',
'FLW': 'Follow(s)',
'FLY': 'Fly',
'FM': 'From',
'FMS': 'Flight Management System',
'FMU': 'Flow Management Unit',
'FNA': 'Final Approach',
'FPAP': 'Flight Path Alignment Point',
'FPL': 'Flight Plan',
'FPLS': 'Flight Plans',
'FPM': 'Feet Per Minute',
'FPR': 'Flight Plan Route',
'FR': 'Fuel Remaining',
'FREQ': 'Frequency',
'FRI': 'Friday',
'FRNG': 'Firing',
'FRONT': 'Front',
'FRQ': 'Frequent',
'FSL': 'Full Stop Landing',
'FSS': 'Flight Service Station',
'FST': 'First',
'FTP': 'Fictitious Threshold Point',
'G/A': 'Ground-to-air',
'G/A/G': 'Ground-to-air and Air-to-ground',
'GARP': 'GBAS Azimuth Reference Point',
'GBAS': 'Ground-based Augmentation System',
'GCAJ': 'Ground Controlled Approach',
'GEN': 'General',
'GEO': 'Geographic or True',
'GES': 'Ground Earth Station',
'GLD': 'Glider',
'GMC': 'Ground Movement Chart',
'GND': 'Ground',
'GNDCK': 'Ground Check',
'GP': 'Glide Path',
'GRASS': 'Grass landing area',
'GRVL': 'Gravel',
'GUND': 'Geoid Undulation',
'H24': '24 Hours',
'HAPI': 'Helicopter Approach Path Indicator',
'HBN': 'Hazard Beacon',
'HDG': 'Heading',
'HEL': 'Helicopter',
'HGT': 'Height',
'HJ': 'Sunrise to Sunset',
'HLDG': 'Holding',
'HN': 'Sunset to Sunrise',
'HO': 'Service Available To Meet Operational Requirements',
'HOL': 'Holiday',
'HOSP': 'Hospital Aircraft',
'HOT': 'Height',
'HPA': 'Hectopascal',
'HR': 'Hours',
'HRS': 'Hours',
'HS': 'Service Available During Hours Of Scheduled Operations',
'HURCN': 'Hurricane',
'HVY': 'Heavy',
'HX': 'No Specific Working Hours',
'HYR': 'Higher',
'IAC': 'Instrument Approach Chart',
'IAF': 'Initial Approach Fix',
'IAO': 'In And Out Of Clouds',
'IAP': 'Instrument Approach Procedure',
'IAR': 'Intersection Of Air Routes',
'IBN': 'Identification Beacon',
'ID': 'Identifier',
'IDENT': 'Identification',
'IFF': 'Identification Friend/Foe',
'IGA': 'International General Aviation',
'IM': 'Inner Marker',
'IMPR': 'Improving',
'IMT': 'Immediately',
'INA': 'Initial Approach',
'INBD': 'Inbound',
'INCERFA': 'Uncertainty Phase',
'INFO': 'Information',
'INOP': 'Inoperative',
'INP': 'If Not Possible',
'INPR': 'In Progress',
'INSTL': 'Installation',
'INSTR': 'Instrument',
'INT': 'Intersection',
'INTS': 'Intersections',
'INTL': 'International',
'INTRG': 'Interrogator',
'INTRP': 'Interruption',
'INTSF': 'Intensifying',
'INTST': 'Intensity',
'ISA': 'International Standard Atmosphere',
'JAN': 'January',
'JTST': 'Jet stream',
'JUL': 'July',
'JUN': 'June',
'KMH': 'Kilometres Per Hour',
'KPA': 'Kilopascal',
'KT': 'Knots',
'KW': 'Kilowatts',
'LAN': 'Inland',
'LAT': 'Latitude',
'LDA': 'Landing Distance Available',
'LDAH': 'Landing Distance Available, Helicopter',
'LDG': 'Landing',
'LDI': 'Landing Direction Indicator',
'LEN': 'Length',
'LGT': 'Lighting',
'LGTD': 'Lighted',
'LIH': 'Light Intensity High',
'LIL': 'Light Intensity Low',
'LIM': 'Light Intensity Medium',
'LLZ': 'Localizer',
'LM': 'Locator, Middle',
'LMT': 'Local Mean Time',
'LNG': 'Long',
'LO': 'Locator, Outer',
'LOG': 'Located',
'LONG': 'Longitude',
'LRG': 'Long Range',
'LTD': 'Limited',
'LTP': 'Landing Threshold Point',
'LVE': 'Leaving',
'LVL': 'Level',
'LYR': 'Layer',
'MAA': 'Maximum Authorized Altitude',
'MAG': 'Magnetic',
'MAINT': 'Maintenance',
'MAP': 'Aeronautical Maps and Charts',
'MAPT': 'Missed Approach Point',
'MAR': 'March',
'MAX': 'Maximum',
'MAY': 'May',
'MBST': 'Microburst',
'MCA': 'Minimum Crossing Altitude',
'MCW': 'Modulated Continuous Wave',
'MDA': 'Minimum Descent Altitude',
'MDH': 'Minimum Descent Height',
'MEA': 'Minimum En-route Altitude',
'MEHT': 'Minimum Eye Height Over Threshold',
'MET': 'Meteorological',
'MID': 'Mid-point',
'MIL': 'Military',
'MIN': 'Minutes',
'MKR': 'Marker Radio Beacon',
'MLS': 'Microwave Landing System',
'MM': 'Middle Marker',
'MNM': 'Minimum',
'MNPS': 'Minimum Navigation Performance Specifications',
'MNT': 'Monitor',
'MNTN': 'Maintain',
'MOA': 'Military Operating Area',
'MOC': 'Minimum Obstacle Clearance',
'MOD': 'Moderate',
'MON': 'Monday',
'MOPS': 'Minimum Operational Performance Standards',
'MOV': 'Movement',
'MRA': 'Minimum Reception Altitude',
'MRG': 'Medium Range',
'MRP': 'ATS/MET Reporting Point',
'MS': 'Minus',
'MSA': 'Minimum Sector Altitude',
'MSAW': 'Minimum Safe Altitude Warning',
'MSG': 'Message',
'MSSR': 'Monopulse Secondary Surveillance Radar',
'MT': 'Mountain',
'MTU': 'Metric Units',
'MTW': 'Mountain Waves',
'NASC': 'National AIS System Centre',
'NAT': 'North Atlantic',
'NAV': 'Navigation',
'NB': 'Northbound',
'NBFR': 'Not Before',
'NE': 'North-east',
'NEB': 'North-eastbound',
'NEG': 'Negative',
'NGT': 'Night',
'NIL': 'None',
'NML': 'Normal',
'NNE': 'North-north-east',
'NNW': 'North-north-west',
'NOF': 'International NOTAM Office',
'NOV': 'November',
'NOZ': 'Normal Operating Zone',
'NR': 'Number',
'NRH': 'No Reply Heard',
'NTL': 'National',
'NTZ': 'No Transgression Zone',
'NW': 'North-west',
'NWB': 'North-westbound',
'NXT': 'Next',
'O/R': 'On Request',
'OAC': 'Oceanic Area Control Centre',
'OAS': 'Obstacle Assessment Surface',
'OBS': 'Observe',
'OBST': 'Obstacle',
'OBSTS': 'Obstacles',
'OCA': 'Oceanic Control Area',
'OCH': 'Obstacle Clearance Height',
'OCS': 'Obstacle Clearance Surface',
'OCT': 'October',
'OFZ': 'Obstacle Free Zone',
'OGN': 'Originate',
'OHD': 'Overhead',
'OM': 'Outer Marker',
'OPC': 'Control Indicated Is Operational Control',
'OPMET': 'Operational Meteorological',
'OPN': 'Open',
'OPR': 'Operate',
'OPS': 'Operations',
'ORD': 'Order',
'OSV': 'Ocean Station Vessel',
'OTLK': 'Outlook',
'OTP': 'On Top',
'OTS': 'Organized Track System',
'OUBD': 'Outbound',
'PA': 'Precision Approach',
'PALS': 'Precision Approach Lighting System',
'PANS': 'Procedures for Air Navigation Services',
'PAR': 'Precision Approach Radar',
'PARL': 'Parallel',
'PATC': 'Precision Approach Terrain Chart',
'PAX': 'Passenger(s)',
'PCD': 'Proceed',
'PCL': 'Pilot-controlled Lighting',
'PCN': 'Pavement Classification Number',
'PDC': 'Pre-departure Clearance',
'PDG': 'Procedure Design Gradient',
'PER': 'Performance',
'PERM': 'Permanent',
'PIB': 'Pre-flight Information Bulletin',
'PJE': 'Parachute Jumping Exercise',
'PLA': 'Practice Low Approach',
'PLN': 'Flight Plan',
'PLVL': 'Present Level',
'PN': 'Prior Notice Required',
'PNR': 'Point Of No Return',
'POB': 'Persons On Board',
'POSS': 'Possible',
'PPI': 'Plan Position Indicator',
'PPR': 'Prior Permission Required',
'PPSN': 'Present Position',
'PRI': 'Primary',
'PRKG': 'Parking',
'PROB': 'Probability',
'PROC': 'Procedure',
'PROV': 'Provisional',
'PS': 'Plus',
'PSG': 'Passing',
'PSN': 'Position',
'PSNS': 'Positions',
'PSR': 'Primary Surveillance Radar',
'PSYS': 'Pressure System(s)',
'PTN': 'Procedure Turn',
'PTS': 'Polar Track Structure',
'PWR': 'Power',
'QUAD': 'Quadrant',
'RAC': 'Rules of The Air and Air Traffic Services',
'RAG': 'Runway Arresting Gear',
'RAI': 'Runway Alignment Indicator',
'RASC': 'Regional AIS System Centre',
'RASS': 'Remote Altimeter Setting Source',
'RB': 'Rescue Boat',
'RCA': 'Reach Cruising Altitude',
'RCC': 'Rescue Coordination Centre',
'RCF': 'Radiocommunication Failure',
'RCH': 'Reaching',
'RCL': 'Runway Centre Line',
'RCLL': 'Runway Centre Line Light(s)',
'RCLR': 'Recleared',
'RDH': 'Reference Datum Height',
'RDL': 'Radial',
'RDO': 'Radio',
'RE': 'Recent',
'REC': 'Receiver',
'REDL': 'Runway Edge Light(s)',
'REF': 'Refer To',
'REG': 'Registration',
'RENL': 'Runway End Light(s)',
'REP': 'Report',
'REQ': 'Requested',
'RERTE': 'Re-route',
'RESA': 'Runway End Safety Area',
'RG': 'Range (lights)',
'RHC': 'Right-hand Circuit',
'RIF': 'Reclearance In Flight',
'RITE': 'Right',
'RL': 'Report Leaving',
'RLA': 'Relay To',
'RLCE': 'Request Level Change En Route',
'RLLS': 'Runway Lead-in Lighting System',
'RLNA': 'Request Level Not Available',
'RMAC': 'Radar Minimum Altitude Chart',
'RMK': 'Remark',
'RNG': 'Radio Range',
'RNP': 'Required Navigation Performance',
'ROC': 'Rate Of Climb',
'ROD': 'Rate Of Descent',
'ROFOR': 'Route Forecast',
'RON': 'Receiving Only',
'RPI': 'Radar Position Indicator',
'RPL': 'Repetitive Flight Plan',
'RPLC': 'Replaced',
'RPS': 'Radar Position Symbol',
'RQMNTS': 'Requirements',
'RQP': 'Request Flight Plan',
'RQS': 'Request Supplementary Flight Plan',
'RR': 'Report Reaching',
'RSC': 'Rescue Sub-centre',
'RSCD': 'Runway Surface Condition',
'RSP': 'Responder Beacon',
'RSR': 'En-route Surveillance Radar',
'RTE': 'Route',
'RTES': 'Routes',
'RTF': 'Radiotelephone',
'RTG': 'Radiotelegraph',
'RTHL': 'Runway Threshold Light(s)',
'RTN': 'Return',
'RTODAH': 'Rejected Take-off Distance Available, Helicopter',
'RTS': 'Return To Service',
'RTT': 'Radioteletypewriter',
'RTZL': 'Runway Touchdown Zone Light(s)',
'RUT': 'Standard Regional Route Transmitting Frequencies',
'RV': 'Rescue Vessel',
'RVSM': 'Reduced Vertical Separation Minimum',
'RWY': 'Runway',
'RWYS': 'Runways',
'SALS': 'Simple Approach Lighting System',
'SAN': 'Sanitary',
'SAP': 'As Soon As Possible',
'SAR': 'Search and Rescue',
'SARPS': 'Standards and Recommended Practices',
'SAT': 'Saturday',
'SATCOM': 'Satellite Communication',
'SB': 'Southbound',
'SBAS': 'Satellite-based Augmentation System',
'SDBY': 'Stand by',
'SE': 'South-east',
'SEA': 'Sea',
'SEB': 'South-eastbound',
'SEC': 'Seconds',
'SECN': 'Section',
'SECT': 'Sector',
'SEP': 'September',
'SER': 'Service',
'SEV': 'Severe',
'SFC': 'Surface',
'SGL': 'Signal',
'SID': 'Standard Instrument Departure',
'SIF': 'Selective Identification Feature',
'SIG': 'Significant',
'SIMUL': 'Simultaneous',
'SKED': 'Schedule',
'SLP': 'Speed Limiting Point',
'SLW': 'Slow',
'SMC': 'Surface Movement Control',
'SMR': 'Surface Movement Radar',
'SPL': 'Supplementary Flight Plan',
'SPOC': 'SAR Point Of Contact',
'SPOT': 'Spot Wind',
'SR': 'Sunrise',
'SRA': 'Surveillance Radar Approach',
'SRE': 'Surveillance Radar Element Of Precision Approach Radar System',
'SRG': 'Short Range',
'SRR': 'Search and Rescue Region',
'SRY': 'Secondary',
'SS': 'Sunset',
'SSE': 'South-south-east',
'SSR': 'Secondary Surveillance Radar',
'SST': 'Supersonic Transport',
'SSW': 'South-south-west',
'STA': 'Straight-in Approach',
'STAR': 'Standard Instrument Arrival',
'STD': 'Standard',
'STN': 'Station',
'STNR': 'Stationary',
'STOL': 'Short Take-off and Landing',
'STS': 'Status',
'STWL': 'Stopway Light(s)',
'SUBJ': 'Subject To',
'SUN': 'Sunday',
'SUP': 'Supplement',
'SUPPS': 'Regional Supplementary Procedures Service Message',
'SVCBL': 'Serviceable',
'SW': 'South-west',
'SWB': 'South-westbound',
'SWY': 'Stopway',
'TA': 'Transition Altitude',
'TAA': 'Terminal Arrival Altitude',
'TAF': 'Aerodrome Forecast',
'TAIL': 'Tail Wind',
'TAR': 'Terminal Area Surveillance Radar',
'TAX': 'Taxi',
'TCAC': 'Tropical Cyclone Advisory Centre',
'TDO': 'Tornado',
'TDZ': 'Touchdown Zone',
'TECR': 'Technical Reason',
'TEMPO': 'Temporarily',
'TFC': 'Traffic',
'TGL': 'Touch-and-go',
'TGS': 'Taxiing Guidance System',
'THR': 'Threshold',
'THRU': 'Through',
'THU': 'Thursday',
'TIBA': 'Traffic Information Broadcast By Aircraft',
'TIL': 'Until',
'TIP': 'Until Past',
'TKOF': 'Take-off',
'TL': 'Till',
'TLOF': 'Touchdown And Lift-off Area',
'TMA': 'Terminal Control Area',
'TNA': 'Turn Altitude',
'TNH': 'Turn Height',
'TOC': 'Top of Climb',
'TODA': 'Take-off Distance Available',
'TODAH': 'Take-off Distance Available, Helicopter',
'TORA': 'Take-off Run Available',
'TP': 'Turning Point',
'TR': 'Track',
'TRA': 'Temporary Reserved Airspace',
'TRANS': 'Transmitter',
'TRL': 'Transition Level',
'TUE': 'Tuesday',
'TURB': 'Turbulence',
'TVOR': 'Terminal VOR',
'TWR': 'Tower',
'TWY': 'Taxiway',
'TWYL': 'Taxiway-link',
'TXT': 'Text',
'TYP': 'Type of Aircraft',
'U/S': 'Unserviceable',
'UAB': 'Until Advised By',
'UAC': 'Upper Area Control Centre',
'UAR': 'Upper Air Route',
'UFN': 'Until Further Notice',
'UHDT': 'Unable Higher Due Traffic',
'UIC': 'Upper Information Centre',
'UIR': 'Upper Flight Information Region',
'ULR': 'Ultra Long Range',
'UNA': 'Unable',
'UNAP': 'Unable To Approve',
'UNL': 'Unlimited',
'UNREL': 'Unreliable',
'UTA': 'Upper Control Area',
'VAAC': 'Volcanic Ash Advisory Centre',
'VAC': 'Visual Approach Chart',
'VAL': 'In Valleys',
'VAN': 'Runway Control Van',
'VAR': 'Visual-aural Radio Range',
'VC': 'Vicinity',
'VCY': 'Vicinity',
'VER': 'Vertical',
'VIS': 'Visibility',
'VLR': 'Very Long Range',
'VPA': 'Vertical Path Angle',
'VRB': 'Variable',
'VSA': 'By Visual Reference To The Ground',
'VSP': 'Vertical Speed',
'VTOL': 'Vertical Take-off And Landing',
'WAC': 'World Aeronautical Chart',
'WAFC': 'World Area Forecast Centre',
'WB': 'Westbound',
'WBAR': 'Wing Bar Lights',
'WDI': 'Wind Direction Indicator',
'WDSPR': 'Widespread',
'WED': 'Wednesday',
'WEF': 'Effective From',
'WI': 'Within',
'WID': 'Width',
'WIE': 'Effective Immediately',
'WILCO': 'Will Comply',
'WIND': 'Wind',
'WINTEM': 'Forecast Upper Wind And Temperature For Aviation',
'WIP': 'Work In Progress',
'WKN': 'Weaken',
'WNW': 'West-north-west',
'WO': 'Without',
'WPT': 'Way-point',
'WRNG': 'Warning',
'WSW': 'West-south-west',
'WT': 'Weight',
'WWW': 'Worldwide Web',
'WX': 'Weather',
'XBAR': 'Crossbar',
'XNG': 'Crossing',
'XS': 'Atmospherics',
'YCZ': 'Yellow Caution Zone',
'YR': 'Your',
}