atc-tools 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/bin/fpv +3 -0
  3. data/doc/ATCTools.html +133 -0
  4. data/doc/ATCTools/Aircraft.html +309 -0
  5. data/doc/ATCTools/Airport.html +634 -0
  6. data/doc/ATCTools/FlightPlan.html +544 -0
  7. data/doc/ATCTools/FlightPlanValidator.html +265 -0
  8. data/doc/ATCTools/HeadingDiscoveryError.html +135 -0
  9. data/doc/ATCTools/HeadingError.html +135 -0
  10. data/doc/ATCTools/NameDiscoveryError.html +135 -0
  11. data/doc/ATCTools/NoAircraftSelectedError.html +135 -0
  12. data/doc/ATCTools/VRC.html +656 -0
  13. data/doc/Aircraft.html +127 -0
  14. data/doc/Airport.html +564 -0
  15. data/doc/FlightPlan.html +127 -0
  16. data/doc/HeadingError.html +127 -0
  17. data/doc/NameDiscoveryError.html +127 -0
  18. data/doc/created.rid +7 -0
  19. data/doc/images/add.png +0 -0
  20. data/doc/images/arrow_up.png +0 -0
  21. data/doc/images/brick.png +0 -0
  22. data/doc/images/brick_link.png +0 -0
  23. data/doc/images/bug.png +0 -0
  24. data/doc/images/bullet_black.png +0 -0
  25. data/doc/images/bullet_toggle_minus.png +0 -0
  26. data/doc/images/bullet_toggle_plus.png +0 -0
  27. data/doc/images/date.png +0 -0
  28. data/doc/images/delete.png +0 -0
  29. data/doc/images/find.png +0 -0
  30. data/doc/images/loadingAnimation.gif +0 -0
  31. data/doc/images/macFFBgHack.png +0 -0
  32. data/doc/images/package.png +0 -0
  33. data/doc/images/page_green.png +0 -0
  34. data/doc/images/page_white_text.png +0 -0
  35. data/doc/images/page_white_width.png +0 -0
  36. data/doc/images/plugin.png +0 -0
  37. data/doc/images/ruby.png +0 -0
  38. data/doc/images/tag_blue.png +0 -0
  39. data/doc/images/tag_green.png +0 -0
  40. data/doc/images/transparent.png +0 -0
  41. data/doc/images/wrench.png +0 -0
  42. data/doc/images/wrench_orange.png +0 -0
  43. data/doc/images/zoom.png +0 -0
  44. data/doc/index.html +87 -0
  45. data/doc/js/darkfish.js +155 -0
  46. data/doc/js/jquery.js +18 -0
  47. data/doc/js/navigation.js +142 -0
  48. data/doc/js/search.js +94 -0
  49. data/doc/js/search_index.js +1 -0
  50. data/doc/js/searcher.js +228 -0
  51. data/doc/rdoc.css +595 -0
  52. data/doc/table_of_contents.html +132 -0
  53. data/lib/atc-tools.rb +1 -0
  54. data/lib/atc-tools/aircraft.rb +36 -0
  55. data/lib/atc-tools/airport.rb +103 -0
  56. data/lib/atc-tools/flight_plan.rb +119 -0
  57. data/lib/atc-tools/script/flight_plan_validator.rb +65 -0
  58. data/lib/atc-tools/vrc.rb +165 -0
  59. data/license.txt +19 -0
  60. metadata +174 -0
@@ -0,0 +1,265 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class ATCTools::FlightPlanValidator - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="file-metadata">
49
+ <nav id="file-list-section" class="section">
50
+ <h3 class="section-header">Defined In</h3>
51
+ <ul>
52
+ <li>lib/atc-tools/script/flight_plan_validator.rb
53
+ </ul>
54
+ </nav>
55
+
56
+
57
+ </div>
58
+
59
+ <div id="class-metadata">
60
+
61
+ <nav id="parent-class-section" class="section">
62
+ <h3 class="section-header">Parent</h3>
63
+
64
+ <p class="link">Object
65
+
66
+ </nav>
67
+
68
+
69
+
70
+ <!-- Method Quickref -->
71
+ <nav id="method-list-section" class="section">
72
+ <h3 class="section-header">Methods</h3>
73
+
74
+ <ul class="link-list">
75
+
76
+ <li ><a href="#method-c-flight_plan">::flight_plan</a>
77
+
78
+ <li ><a href="#method-c-run">::run</a>
79
+
80
+ </ul>
81
+ </nav>
82
+
83
+ </div>
84
+
85
+ <div id="project-metadata">
86
+
87
+ <nav id="classindex-section" class="section project-section">
88
+ <h3 class="section-header">Class and Module Index</h3>
89
+
90
+ <ul class="link-list">
91
+
92
+ <li><a href="../ATCTools.html">ATCTools</a>
93
+
94
+ <li><a href="../ATCTools/Aircraft.html">ATCTools::Aircraft</a>
95
+
96
+ <li><a href="../ATCTools/Airport.html">ATCTools::Airport</a>
97
+
98
+ <li><a href="../ATCTools/FlightPlan.html">ATCTools::FlightPlan</a>
99
+
100
+ <li><a href="../ATCTools/FlightPlanValidator.html">ATCTools::FlightPlanValidator</a>
101
+
102
+ <li><a href="../ATCTools/HeadingDiscoveryError.html">ATCTools::HeadingDiscoveryError</a>
103
+
104
+ <li><a href="../ATCTools/NameDiscoveryError.html">ATCTools::NameDiscoveryError</a>
105
+
106
+ <li><a href="../ATCTools/NoAircraftSelectedError.html">ATCTools::NoAircraftSelectedError</a>
107
+
108
+ <li><a href="../ATCTools/VRC.html">ATCTools::VRC</a>
109
+
110
+ </ul>
111
+ </nav>
112
+
113
+ </div>
114
+ </nav>
115
+
116
+ <div id="documentation">
117
+ <h1 class="class">class ATCTools::FlightPlanValidator</h1>
118
+
119
+ <div id="description" class="description">
120
+
121
+ <p>Script that extracts a flight plan from <a href="VRC.html">VRC</a>.</p>
122
+
123
+ </div><!-- description -->
124
+
125
+
126
+
127
+
128
+ <section id="5Buntitled-5D" class="documentation-section">
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+ <!-- Methods -->
138
+
139
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
140
+ <h3 class="section-header">Public Class Methods</h3>
141
+
142
+
143
+ <div id="method-c-flight_plan" class="method-detail ">
144
+
145
+ <div class="method-heading">
146
+ <span class="method-name">flight_plan</span><span
147
+ class="method-args">()</span>
148
+
149
+ <span class="method-click-advice">click to toggle source</span>
150
+
151
+ </div>
152
+
153
+
154
+ <div class="method-description">
155
+
156
+ <p>The last flight plan returned.</p>
157
+
158
+
159
+
160
+
161
+ <div class="method-source-code" id="flight_plan-source">
162
+ <pre><span class="ruby-comment"># File lib/atc-tools/script/flight_plan_validator.rb, line 11</span>
163
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">flight_plan</span>
164
+ <span class="ruby-ivar">@flight_plan</span>
165
+ <span class="ruby-keyword">end</span></pre>
166
+ </div><!-- flight_plan-source -->
167
+
168
+ </div>
169
+
170
+
171
+
172
+
173
+ </div><!-- flight_plan-method -->
174
+
175
+
176
+ <div id="method-c-run" class="method-detail ">
177
+
178
+ <div class="method-heading">
179
+ <span class="method-name">run</span><span
180
+ class="method-args">()</span>
181
+
182
+ <span class="method-click-advice">click to toggle source</span>
183
+
184
+ </div>
185
+
186
+
187
+ <div class="method-description">
188
+
189
+ <p>Note: Executing this script will call commands in the <a
190
+ href="VRC.html">VRC</a> client and will interfere with the user.</p>
191
+
192
+
193
+
194
+
195
+ <div class="method-source-code" id="run-source">
196
+ <pre><span class="ruby-comment"># File lib/atc-tools/script/flight_plan_validator.rb, line 17</span>
197
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">run</span>
198
+ <span class="ruby-identifier">vrc</span> = <span class="ruby-constant">ATCTools</span><span class="ruby-operator">::</span><span class="ruby-constant">VRC</span>.<span class="ruby-identifier">new</span>
199
+
200
+ <span class="ruby-keyword">begin</span>
201
+ <span class="ruby-ivar">@flight_plan</span> = <span class="ruby-identifier">vrc</span>.<span class="ruby-identifier">selected_flight_plan!</span>
202
+ <span class="ruby-keyword">rescue</span> <span class="ruby-constant">ATCTools</span><span class="ruby-operator">::</span><span class="ruby-constant">NoAircraftSelectedError</span>
203
+ <span class="ruby-keyword">return</span> <span class="ruby-string">&#39;No aircraft selected.&#39;</span>
204
+ <span class="ruby-keyword">end</span>
205
+
206
+ <span class="ruby-identifier">vrc</span>.<span class="ruby-identifier">activate_terminal_window!</span>
207
+
208
+ <span class="ruby-identifier">heading_thread</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">do</span>
209
+ <span class="ruby-keyword">begin</span>
210
+ <span class="ruby-ivar">@flight_plan</span>.<span class="ruby-identifier">heading</span>
211
+ <span class="ruby-keyword">rescue</span> <span class="ruby-constant">ATCTools</span><span class="ruby-operator">::</span><span class="ruby-constant">HeadingDiscoveryError</span>
212
+ <span class="ruby-constant">Launchy</span>.<span class="ruby-identifier">open</span> <span class="ruby-ivar">@flight_plan</span>.<span class="ruby-identifier">depart</span>.<span class="ruby-identifier">heading_uri</span>
213
+ <span class="ruby-keyword">end</span>
214
+ <span class="ruby-keyword">end</span>
215
+
216
+ <span class="ruby-identifier">airport_name_thread</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">do</span>
217
+ <span class="ruby-keyword">begin</span>
218
+ <span class="ruby-ivar">@flight_plan</span>.<span class="ruby-identifier">arrive</span>.<span class="ruby-identifier">name</span>
219
+ <span class="ruby-keyword">rescue</span> <span class="ruby-constant">ATCTools</span><span class="ruby-operator">::</span><span class="ruby-constant">NameDiscoveryError</span>
220
+ <span class="ruby-constant">Launchy</span>.<span class="ruby-identifier">open</span> <span class="ruby-node">&quot;https://www.google.com/#q=#{@flight_plan.arrive.upcase}+airport&quot;</span>
221
+ <span class="ruby-keyword">end</span>
222
+ <span class="ruby-keyword">end</span>
223
+
224
+ <span class="ruby-identifier">heading_thread</span>.<span class="ruby-identifier">join</span>
225
+ <span class="ruby-identifier">airport_name_thread</span>.<span class="ruby-identifier">join</span>
226
+
227
+ <span class="ruby-identifier">output</span> = []
228
+
229
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;------------------------------------------------------------&#39;</span>
230
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">vrc</span>.<span class="ruby-identifier">flight_plan_title</span>
231
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;&#39;</span>
232
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-ivar">@flight_plan</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">split</span>(<span class="ruby-string">&quot;\n&quot;</span>)
233
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;&#39;</span>
234
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;&#39;</span>
235
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-node">&quot;Alt Valid? #{(@flight_plan.altitude_valid?) ? &#39;Yes&#39; : &#39;-NO-&#39;}&quot;</span>
236
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-node">&quot;Heading: #{@flight_plan.heading} mag :: #{@flight_plan.depart.magnetic_to_true @flight_plan.heading} true&quot;</span>
237
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;&#39;</span>
238
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-ivar">@flight_plan</span>.<span class="ruby-identifier">aircraft</span>.<span class="ruby-identifier">info</span>.<span class="ruby-identifier">split</span>(<span class="ruby-string">&#39; - &#39;</span>).<span class="ruby-identifier">join</span>(<span class="ruby-string">&quot;\n&quot;</span>).<span class="ruby-identifier">strip</span>
239
+ <span class="ruby-identifier">output</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;------------------------------------------------------------&#39;</span>
240
+
241
+ <span class="ruby-identifier">text</span> = <span class="ruby-identifier">output</span>.<span class="ruby-identifier">join</span>(<span class="ruby-string">&quot;\n&quot;</span>)
242
+ <span class="ruby-keyword">end</span></pre>
243
+ </div><!-- run-source -->
244
+
245
+ </div>
246
+
247
+
248
+
249
+
250
+ </div><!-- run-method -->
251
+
252
+
253
+ </section><!-- public-class-method-details -->
254
+
255
+ </section><!-- 5Buntitled-5D -->
256
+
257
+ </div><!-- documentation -->
258
+
259
+
260
+ <footer id="validator-badges">
261
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
262
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
263
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
264
+ </footer>
265
+
@@ -0,0 +1,135 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class ATCTools::HeadingDiscoveryError - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="file-metadata">
49
+ <nav id="file-list-section" class="section">
50
+ <h3 class="section-header">Defined In</h3>
51
+ <ul>
52
+ <li>lib/atc-tools/airport.rb
53
+ </ul>
54
+ </nav>
55
+
56
+
57
+ </div>
58
+
59
+ <div id="class-metadata">
60
+
61
+ <nav id="parent-class-section" class="section">
62
+ <h3 class="section-header">Parent</h3>
63
+
64
+ <p class="link">StandardError
65
+
66
+ </nav>
67
+
68
+
69
+
70
+
71
+ </div>
72
+
73
+ <div id="project-metadata">
74
+
75
+ <nav id="classindex-section" class="section project-section">
76
+ <h3 class="section-header">Class and Module Index</h3>
77
+
78
+ <ul class="link-list">
79
+
80
+ <li><a href="../ATCTools.html">ATCTools</a>
81
+
82
+ <li><a href="../ATCTools/Aircraft.html">ATCTools::Aircraft</a>
83
+
84
+ <li><a href="../ATCTools/Airport.html">ATCTools::Airport</a>
85
+
86
+ <li><a href="../ATCTools/FlightPlan.html">ATCTools::FlightPlan</a>
87
+
88
+ <li><a href="../ATCTools/FlightPlanValidator.html">ATCTools::FlightPlanValidator</a>
89
+
90
+ <li><a href="../ATCTools/HeadingDiscoveryError.html">ATCTools::HeadingDiscoveryError</a>
91
+
92
+ <li><a href="../ATCTools/NameDiscoveryError.html">ATCTools::NameDiscoveryError</a>
93
+
94
+ <li><a href="../ATCTools/NoAircraftSelectedError.html">ATCTools::NoAircraftSelectedError</a>
95
+
96
+ <li><a href="../ATCTools/VRC.html">ATCTools::VRC</a>
97
+
98
+ </ul>
99
+ </nav>
100
+
101
+ </div>
102
+ </nav>
103
+
104
+ <div id="documentation">
105
+ <h1 class="class">class ATCTools::HeadingDiscoveryError</h1>
106
+
107
+ <div id="description" class="description">
108
+
109
+ </div><!-- description -->
110
+
111
+
112
+
113
+
114
+ <section id="5Buntitled-5D" class="documentation-section">
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ <!-- Methods -->
124
+
125
+ </section><!-- 5Buntitled-5D -->
126
+
127
+ </div><!-- documentation -->
128
+
129
+
130
+ <footer id="validator-badges">
131
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
132
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
133
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
134
+ </footer>
135
+
@@ -0,0 +1,135 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class ATCTools::HeadingError - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="file-metadata">
49
+ <nav id="file-list-section" class="section">
50
+ <h3 class="section-header">Defined In</h3>
51
+ <ul>
52
+ <li>lib/atc-tools/airport.rb
53
+ </ul>
54
+ </nav>
55
+
56
+
57
+ </div>
58
+
59
+ <div id="class-metadata">
60
+
61
+ <nav id="parent-class-section" class="section">
62
+ <h3 class="section-header">Parent</h3>
63
+
64
+ <p class="link">StandardError
65
+
66
+ </nav>
67
+
68
+
69
+
70
+
71
+ </div>
72
+
73
+ <div id="project-metadata">
74
+
75
+ <nav id="classindex-section" class="section project-section">
76
+ <h3 class="section-header">Class and Module Index</h3>
77
+
78
+ <ul class="link-list">
79
+
80
+ <li><a href="../ATCTools.html">ATCTools</a>
81
+
82
+ <li><a href="../ATCTools/Aircraft.html">ATCTools::Aircraft</a>
83
+
84
+ <li><a href="../ATCTools/Airport.html">ATCTools::Airport</a>
85
+
86
+ <li><a href="../ATCTools/FlightPlan.html">ATCTools::FlightPlan</a>
87
+
88
+ <li><a href="../ATCTools/FlightPlanValidator.html">ATCTools::FlightPlanValidator</a>
89
+
90
+ <li><a href="../ATCTools/HeadingError.html">ATCTools::HeadingError</a>
91
+
92
+ <li><a href="../ATCTools/NameDiscoveryError.html">ATCTools::NameDiscoveryError</a>
93
+
94
+ <li><a href="../ATCTools/NoAircraftSelectedError.html">ATCTools::NoAircraftSelectedError</a>
95
+
96
+ <li><a href="../ATCTools/VRC.html">ATCTools::VRC</a>
97
+
98
+ </ul>
99
+ </nav>
100
+
101
+ </div>
102
+ </nav>
103
+
104
+ <div id="documentation">
105
+ <h1 class="class">class ATCTools::HeadingError</h1>
106
+
107
+ <div id="description" class="description">
108
+
109
+ </div><!-- description -->
110
+
111
+
112
+
113
+
114
+ <section id="5Buntitled-5D" class="documentation-section">
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ <!-- Methods -->
124
+
125
+ </section><!-- 5Buntitled-5D -->
126
+
127
+ </div><!-- documentation -->
128
+
129
+
130
+ <footer id="validator-badges">
131
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
132
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
133
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
134
+ </footer>
135
+