Skip to content

Commit 65e38a6

Browse files
committed
Min max RFL logging is now enabled by default
Fixed README formatting for routing config
1 parent 4266d5c commit 65e38a6

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

DelHel/CDelHel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CDelHel::CDelHel() : EuroScopePlugIn::CPlugIn(
2828
this->assignNap = false;
2929
this->autoProcess = false;
3030
this->warnRFLBelowCFL = false;
31-
this->logMinMaxRFL = false;
31+
this->logMinMaxRFL = true;
3232

3333
this->LoadSettings();
3434

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ This setting will be saved to the EuroScope settings upon exit.
233233

234234
Toggles logging of min and max RFLs for predefined routings during flightplan processing.
235235

236-
If enabled, `DelHel` will display the min/max value triggering a warning during flightplan processing, informing you about the limit defined in the routing config.
237-
If disabled (default setting), `DelHel` will only display the min/max RFL values if the [debug mode](#toggle-debug-logging) is enabled.
236+
If enabled (default setting), `DelHel` will display the min/max value triggering a warning during flightplan processing, informing you about the limit defined in the routing config.
237+
If disabled, `DelHel` will only display the min/max RFL values if the [debug mode](#toggle-debug-logging) is enabled.
238238

239239
This setting will be saved to the EuroScope settings upon exit.
240240

@@ -271,23 +271,23 @@ All mandatory routings are stored in the `routing.json`file in the same director
271271

272272
Please make sure to follow the file structure, and checking the edited file with a [validator](https://jsonformatter.curiousconcept.com/).
273273

274-
275274
Root object contains the departure ICAO code in (4-letter) uppercase as key and a `entry` object as value.
276-
####`entry` object
277-
Key | Type | Description | Required
278-
----------|----------|-----------------------------------------------------------------------------------------------|---------
279-
name | `string` | Describes the route entry waypoint, which is equal to the last SID-waypoint | Yes
280-
routes | `array` | Storage for more specified routes, e.g. destinations, waypoints, etc. | Yes
281275

282-
###`routes` array
276+
#### `entry` object
277+
Key | Type | Description | Required
278+
-------|----------|-----------------------------------------------------------------------------|---------
279+
name | `string` | Describes the route entry waypoint, which is equal to the last SID-waypoint | Yes
280+
routes | `array` | Storage for more specified routes, e.g. destinations, waypoints, etc. | Yes
281+
282+
#### `routes` array
283283
The routes array is filled with route objects including the following data:
284284

285-
Key | Type | Description | Required
286-
----------|----------|-----------------------------------------------------------------------------------------------|---------
287-
icao | `string` | Describes the route entry waypoint, which is equal to the last SID-waypoint | Yes
288-
maxlvl | `int` | Maximum allowed cruise altitude in flightlevel (= feet/100) for this route | Yes
289-
minlvl | `int` | Minimum allowed cruise altitude in flightlevel (= feet/100) for this route | Yes
290-
waypoints | `array` | Enter all succeeding waypoints after the SID as strings, optional, can left blank | No
285+
Key | Type | Description | Required
286+
----------|----------|-----------------------------------------------------------------------------------|---------
287+
icao | `string` | Describes the route entry waypoint, which is equal to the last SID-waypoint | Yes
288+
maxlvl | `int` | Maximum allowed cruise altitude in flightlevel (= feet/100) for this route | Yes
289+
minlvl | `int` | Minimum allowed cruise altitude in flightlevel (= feet/100) for this route | Yes
290+
waypoints | `array` | Enter all succeeding waypoints after the SID as strings, optional, can left blank | No
291291

292292
## Contributing
293293

0 commit comments

Comments
 (0)