@skyvexsoftware/stratos-sdk 0.10.3 → 0.10.4
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.
|
@@ -298,7 +298,19 @@ export type LandingAnalysis = {
|
|
|
298
298
|
touchdownFlapsIndex: number | null;
|
|
299
299
|
touchdownPitch: number;
|
|
300
300
|
touchdownBank: number;
|
|
301
|
+
/**
|
|
302
|
+
* Scored touchdown vertical-load G. The peak of a framerate-independent,
|
|
303
|
+
* time-constant EMA of per-frame gForce over the contact second — not the
|
|
304
|
+
* raw spike. This is the value scoring reads.
|
|
305
|
+
*/
|
|
301
306
|
touchdownGForce: number;
|
|
307
|
+
/**
|
|
308
|
+
* Forensic raw peak gForce over the same contact window (un-smoothed). Kept
|
|
309
|
+
* for diagnostics; NOT used for scoring. Optional/null when no frame-buffer
|
|
310
|
+
* samples fell in the window (the scored value then came from the instantaneous
|
|
311
|
+
* touchdown-frame G and there is no raw window peak to report).
|
|
312
|
+
*/
|
|
313
|
+
touchdownGForceRaw?: number | null;
|
|
302
314
|
approachAltitude: number;
|
|
303
315
|
approachIas: number;
|
|
304
316
|
approachVs: number;
|