You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If CFL == RFL, EuroScope returns a CFL of 0 and the RFL value should be consulted. Additionally, CFL 1 and 2 indicate ILS and visual approach clearances respectively.
508
+
if (cfl < 3) {
509
+
// If the RFL is not adapted or confirmed by the controller, cad.GetFinalAltitude() will also return 0. As a last source of CFL info, we need to consider the filed RFL.
510
+
cfl = cad.GetFinalAltitude();
511
+
if (cfl < 3) {
512
+
cfl = fp.GetFinalAltitude();
513
+
}
514
+
}
515
+
516
+
// Display a warning if the CFL does not match the initial CFL assigned to the SID. No warning is shown if the RFL is below the CFL for the SID as pilots might request a lower initial climb.
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,12 @@ The plugin did not find the departure airport of the aircraft in its [airport co
80
80
Info, no/default color.
81
81
Indicates the current CFL set does not equal the initial CFL defined for the SID assigned. This most likely indicates the flightplan has not been processed yet or the aircraft was assigned a cleared flight level that deviates from the default.
82
82
83
+
##### `RFL`
84
+
85
+
Caution, orange color.
86
+
Indicates the RFL filed in the FPL is below the initial CFL defined for the SID assigned. While this does not always indicate an error, caution is advised so minimum altitudes or other restrictions are not violated.
87
+
This warning is disabled by default and can be toggled using the [Toggle RFL below inital CFL](#toggle-rfl-below-initial-cfl-check) chat command.
88
+
83
89
##### `RWY`
84
90
85
91
Info, no/default color.
@@ -210,6 +216,17 @@ If enabled, `DelHel` will check this repository for newer releases of the plugin
210
216
211
217
This setting will be saved to the EuroScope settings upon exit.
212
218
219
+
#### Toggle RFL below initial CFL check
220
+
221
+
`.delhel rflblw`
222
+
223
+
Toggles the flightplan check for RFLs below the initial CFL for SIDs.
224
+
225
+
If enabled, `DelHel` will check the RFL of a flightplan and display a [caution](#rfl) if the filed final level is below the initial CFL for the SID assigned.
226
+
If disabled (default setting), `DelHel` will display no indication and silently assign the lower RFL as the CFL while processing.
227
+
228
+
This setting will be saved to the EuroScope settings upon exit.
229
+
213
230
### Airport config
214
231
215
232
`DelHel` uses its airport config, stored in the `airports.json` file in the same directory as the `DelHel.dll` plugin DLL, to retrieve most of its configuration for validations and flightplan processing.
0 commit comments