@skyvexsoftware/stratos-sdk 0.9.3 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -119,6 +119,10 @@ export type FlightData = {
|
|
|
119
119
|
reverser2Deployed?: boolean;
|
|
120
120
|
autobrakePosition?: number;
|
|
121
121
|
speedbrakePosition?: number;
|
|
122
|
+
/** Unlimited-fuel mode flag. MSFS: UNLIMITED FUEL SimVar. X-Plane: undefined (no clean dataref). */
|
|
123
|
+
unlimitedFuel?: boolean;
|
|
124
|
+
/** Detent index of the flap handle. MSFS: FLAPS HANDLE INDEX. X-Plane: derived from flaprqst × acf_flap_detents. */
|
|
125
|
+
flapsHandleIndex?: number;
|
|
122
126
|
transponderFreq: string;
|
|
123
127
|
com1Freq: string;
|
|
124
128
|
com2Freq: string;
|
|
@@ -256,6 +260,8 @@ export type CapturePoint = {
|
|
|
256
260
|
windDirection: number;
|
|
257
261
|
windSpeed: number;
|
|
258
262
|
totalFuelLbs: number;
|
|
263
|
+
/** Snapshot of data.flapsHandleIndex at the capture moment, null if the sim doesn't provide it. */
|
|
264
|
+
flapsHandleIndex: number | null;
|
|
259
265
|
};
|
|
260
266
|
/** Bounce data — captured when aircraft becomes airborne after touchdown */
|
|
261
267
|
export type BounceData = {
|
|
@@ -286,6 +292,10 @@ export type LandingAnalysis = {
|
|
|
286
292
|
touchdownLongitude: number;
|
|
287
293
|
touchdownHeading: number;
|
|
288
294
|
touchdownGroundSpeed: number;
|
|
295
|
+
/** Indicated airspeed at touchdown (knots) — sourced from the touchdown CapturePoint. */
|
|
296
|
+
touchdownIas: number;
|
|
297
|
+
/** Flaps handle index at touchdown, null if the sim doesn't provide one. */
|
|
298
|
+
touchdownFlapsIndex: number | null;
|
|
289
299
|
touchdownPitch: number;
|
|
290
300
|
touchdownBank: number;
|
|
291
301
|
touchdownGForce: number;
|