@skyvexsoftware/stratos-sdk 0.15.1 → 0.15.2
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.
|
@@ -125,6 +125,14 @@ export type LandingSample = {
|
|
|
125
125
|
pitch: number;
|
|
126
126
|
bank: number;
|
|
127
127
|
groundSpeed: number;
|
|
128
|
+
/**
|
|
129
|
+
* Indicated airspeed (knots) at the sample. Optional: absent on payloads from
|
|
130
|
+
* shells older than the frame-IAS fix, in which case consumers fall back to
|
|
131
|
+
* `groundSpeed`. When present it is the sim's true `AIRSPEED INDICATED` (MSFS)
|
|
132
|
+
* / `indicated_airspeed` (X-Plane), so the FDR IAS column is real IAS rather
|
|
133
|
+
* than a copy of groundspeed.
|
|
134
|
+
*/
|
|
135
|
+
indicatedAirspeed?: number;
|
|
128
136
|
latitude: number;
|
|
129
137
|
longitude: number;
|
|
130
138
|
glideslopeDeviation: number | null;
|