@neilberkman/sidereon 0.18.0 → 0.19.1
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.
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +1843 -1644
- package/pkg/sidereon.js +646 -0
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1599 -1550
- package/pkg-node/sidereon.d.ts +150 -0
- package/pkg-node/sidereon.js +656 -0
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1599 -1550
package/pkg-node/sidereon.d.ts
CHANGED
|
@@ -2042,6 +2042,43 @@ export class FrameStates {
|
|
|
2042
2042
|
readonly velocityKmS: Float64Array;
|
|
2043
2043
|
}
|
|
2044
2044
|
|
|
2045
|
+
/**
|
|
2046
|
+
* Recorded fusion forward-pass history accepted by `smoothFusionRts`.
|
|
2047
|
+
*/
|
|
2048
|
+
export class FusionRtsHistory {
|
|
2049
|
+
private constructor();
|
|
2050
|
+
free(): void;
|
|
2051
|
+
[Symbol.dispose](): void;
|
|
2052
|
+
/**
|
|
2053
|
+
* Number of recorded epochs.
|
|
2054
|
+
*/
|
|
2055
|
+
readonly epochCount: number;
|
|
2056
|
+
/**
|
|
2057
|
+
* Recorded epochs in forward time order.
|
|
2058
|
+
*/
|
|
2059
|
+
readonly epochs: any;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
/**
|
|
2063
|
+
* Builder for recording a fusion forward pass before RTS smoothing.
|
|
2064
|
+
*/
|
|
2065
|
+
export class FusionRtsHistoryBuilder {
|
|
2066
|
+
free(): void;
|
|
2067
|
+
[Symbol.dispose](): void;
|
|
2068
|
+
/**
|
|
2069
|
+
* Return a validated recorded history.
|
|
2070
|
+
*/
|
|
2071
|
+
finish(): FusionRtsHistory;
|
|
2072
|
+
/**
|
|
2073
|
+
* Start a history from the filter's current checkpoint.
|
|
2074
|
+
*/
|
|
2075
|
+
static fromFilter(filter: GnssInsFilter): FusionRtsHistoryBuilder;
|
|
2076
|
+
/**
|
|
2077
|
+
* Start an empty history for manual recording.
|
|
2078
|
+
*/
|
|
2079
|
+
constructor();
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2045
2082
|
/**
|
|
2046
2083
|
* WGS84 geodesic input failure class exposed as a stable enum symbol.
|
|
2047
2084
|
*/
|
|
@@ -2351,6 +2388,10 @@ export class GnssInsFilter {
|
|
|
2351
2388
|
* Propagate the filter with a JS array of IMU samples.
|
|
2352
2389
|
*/
|
|
2353
2390
|
propagateBatch(samples: any): any;
|
|
2391
|
+
/**
|
|
2392
|
+
* Propagate and record the transition for later fusion RTS smoothing.
|
|
2393
|
+
*/
|
|
2394
|
+
propagateRecorded(sample: any, history: FusionRtsHistoryBuilder): any;
|
|
2354
2395
|
/**
|
|
2355
2396
|
* Restore this filter from versioned fusion-state bytes.
|
|
2356
2397
|
*/
|
|
@@ -2371,6 +2412,10 @@ export class GnssInsFilter {
|
|
|
2371
2412
|
* Apply a loose position or position-velocity GNSS fix at the current epoch.
|
|
2372
2413
|
*/
|
|
2373
2414
|
updateLoose(measurement: any): any;
|
|
2415
|
+
/**
|
|
2416
|
+
* Apply a loose GNSS fix and record checkpoints for fusion RTS smoothing.
|
|
2417
|
+
*/
|
|
2418
|
+
updateLooseRecorded(measurement: any, history: FusionRtsHistoryBuilder): any;
|
|
2374
2419
|
/**
|
|
2375
2420
|
* Apply a loose GNSS fix, replaying retained IMU checkpoints when it is late.
|
|
2376
2421
|
*/
|
|
@@ -2379,6 +2424,10 @@ export class GnssInsFilter {
|
|
|
2379
2424
|
* Apply a tight raw-observation epoch against a broadcast ephemeris source.
|
|
2380
2425
|
*/
|
|
2381
2426
|
updateTightBroadcast(broadcast: BroadcastEphemeris, epoch: any): any;
|
|
2427
|
+
/**
|
|
2428
|
+
* Apply a tight broadcast update and record checkpoints for fusion RTS smoothing.
|
|
2429
|
+
*/
|
|
2430
|
+
updateTightBroadcastRecorded(broadcast: BroadcastEphemeris, epoch: any, history: FusionRtsHistoryBuilder): any;
|
|
2382
2431
|
/**
|
|
2383
2432
|
* Apply a tight broadcast update, replaying retained IMU checkpoints when it is late.
|
|
2384
2433
|
*/
|
|
@@ -2387,6 +2436,10 @@ export class GnssInsFilter {
|
|
|
2387
2436
|
* Apply a tight raw-observation epoch against an SP3 source.
|
|
2388
2437
|
*/
|
|
2389
2438
|
updateTightSp3(sp3: Sp3, epoch: any): any;
|
|
2439
|
+
/**
|
|
2440
|
+
* Apply a tight SP3 update and record checkpoints for fusion RTS smoothing.
|
|
2441
|
+
*/
|
|
2442
|
+
updateTightSp3Recorded(sp3: Sp3, epoch: any, history: FusionRtsHistoryBuilder): any;
|
|
2390
2443
|
/**
|
|
2391
2444
|
* Apply a tight SP3 update, replaying retained IMU checkpoints when it is late.
|
|
2392
2445
|
*/
|
|
@@ -6070,6 +6123,31 @@ export class SmoothCodeResult {
|
|
|
6070
6123
|
readonly window: number;
|
|
6071
6124
|
}
|
|
6072
6125
|
|
|
6126
|
+
/**
|
|
6127
|
+
* Smoothed fusion trajectory returned by fixed-interval RTS smoothing.
|
|
6128
|
+
*/
|
|
6129
|
+
export class SmoothedFusionTrajectory {
|
|
6130
|
+
private constructor();
|
|
6131
|
+
free(): void;
|
|
6132
|
+
[Symbol.dispose](): void;
|
|
6133
|
+
/**
|
|
6134
|
+
* Number of smoothed epochs.
|
|
6135
|
+
*/
|
|
6136
|
+
readonly epochCount: number;
|
|
6137
|
+
/**
|
|
6138
|
+
* Smoothed epochs in the same order as the recorded history.
|
|
6139
|
+
*/
|
|
6140
|
+
readonly epochs: any;
|
|
6141
|
+
}
|
|
6142
|
+
|
|
6143
|
+
export class SmoothedTrack {
|
|
6144
|
+
private constructor();
|
|
6145
|
+
free(): void;
|
|
6146
|
+
[Symbol.dispose](): void;
|
|
6147
|
+
readonly epochCount: number;
|
|
6148
|
+
readonly epochs: any;
|
|
6149
|
+
}
|
|
6150
|
+
|
|
6073
6151
|
/**
|
|
6074
6152
|
* A receiver solution paired with the provenance of the ephemeris that produced
|
|
6075
6153
|
* it. Returned by [`solveWithFallback`].
|
|
@@ -7573,6 +7651,71 @@ export class TlePropagation {
|
|
|
7573
7651
|
readonly velocityKmS: Float64Array;
|
|
7574
7652
|
}
|
|
7575
7653
|
|
|
7654
|
+
export class TrackFilter {
|
|
7655
|
+
free(): void;
|
|
7656
|
+
[Symbol.dispose](): void;
|
|
7657
|
+
/**
|
|
7658
|
+
* Build a filter from a position fix and uncertain zero initial velocity.
|
|
7659
|
+
*/
|
|
7660
|
+
static fromPosition(config: any): TrackFilter;
|
|
7661
|
+
/**
|
|
7662
|
+
* Build a stateful no-IMU track filter from a `TrackFilterConfig`.
|
|
7663
|
+
*/
|
|
7664
|
+
constructor(config: TrackFilterConfig);
|
|
7665
|
+
positionInnovation(request: any): any;
|
|
7666
|
+
predict(dt_s: number): any;
|
|
7667
|
+
predictRecorded(dt_s: number, history: TrackRtsHistoryBuilder): any;
|
|
7668
|
+
recordPredictionOnly(history: TrackRtsHistoryBuilder): void;
|
|
7669
|
+
stateInnovation(request: any): any;
|
|
7670
|
+
updatePosition(request: any): any;
|
|
7671
|
+
updatePositionGated(request: any): any;
|
|
7672
|
+
updatePositionGatedRecorded(request: any, history: TrackRtsHistoryBuilder): any;
|
|
7673
|
+
updatePositionRecorded(request: any, history: TrackRtsHistoryBuilder): any;
|
|
7674
|
+
updateState(request: any): any;
|
|
7675
|
+
readonly accelerationVarianceSpectralDensityM2S3: number;
|
|
7676
|
+
readonly dimension: number;
|
|
7677
|
+
readonly state: any;
|
|
7678
|
+
}
|
|
7679
|
+
|
|
7680
|
+
export class TrackFilterConfig {
|
|
7681
|
+
free(): void;
|
|
7682
|
+
[Symbol.dispose](): void;
|
|
7683
|
+
/**
|
|
7684
|
+
* Build a config from a position fix and uncertain zero initial velocity.
|
|
7685
|
+
*/
|
|
7686
|
+
static fromPosition(config: any): TrackFilterConfig;
|
|
7687
|
+
/**
|
|
7688
|
+
* Build a no-IMU track filter config from a JS object.
|
|
7689
|
+
*/
|
|
7690
|
+
constructor(config: any);
|
|
7691
|
+
toObject(): any;
|
|
7692
|
+
readonly dimension: number;
|
|
7693
|
+
readonly frame: string;
|
|
7694
|
+
readonly initialTS: number;
|
|
7695
|
+
}
|
|
7696
|
+
|
|
7697
|
+
export class TrackRtsHistory {
|
|
7698
|
+
private constructor();
|
|
7699
|
+
free(): void;
|
|
7700
|
+
[Symbol.dispose](): void;
|
|
7701
|
+
readonly epochCount: number;
|
|
7702
|
+
readonly epochs: any;
|
|
7703
|
+
}
|
|
7704
|
+
|
|
7705
|
+
export class TrackRtsHistoryBuilder {
|
|
7706
|
+
free(): void;
|
|
7707
|
+
[Symbol.dispose](): void;
|
|
7708
|
+
finish(): TrackRtsHistory;
|
|
7709
|
+
/**
|
|
7710
|
+
* Start a history from the filter's current state.
|
|
7711
|
+
*/
|
|
7712
|
+
static fromFilter(filter: TrackFilter): TrackRtsHistoryBuilder;
|
|
7713
|
+
/**
|
|
7714
|
+
* Start an empty history for manual recording.
|
|
7715
|
+
*/
|
|
7716
|
+
constructor();
|
|
7717
|
+
}
|
|
7718
|
+
|
|
7576
7719
|
/**
|
|
7577
7720
|
* Provenance and coverage of the embedded UT1-UTC / delta-T (EOP) table.
|
|
7578
7721
|
*/
|
|
@@ -10230,11 +10373,18 @@ export function slipReasonLabel(reason: SlipReason): string;
|
|
|
10230
10373
|
*/
|
|
10231
10374
|
export function smoothCode(arc: any, options: any, hatch_window_cap?: number | null): SmoothCodeResult[];
|
|
10232
10375
|
|
|
10376
|
+
/**
|
|
10377
|
+
* Apply fixed-interval RTS smoothing to recorded fusion history.
|
|
10378
|
+
*/
|
|
10379
|
+
export function smoothFusionRts(history: FusionRtsHistory): SmoothedFusionTrajectory;
|
|
10380
|
+
|
|
10233
10381
|
/**
|
|
10234
10382
|
* Dual-frequency ionosphere-free Hatch carrier-smoothed code.
|
|
10235
10383
|
*/
|
|
10236
10384
|
export function smoothIonoFreeCode(arc: any, options: any, hatch_window_cap?: number | null): IonoFreeSmoothResult[];
|
|
10237
10385
|
|
|
10386
|
+
export function smoothTrackRts(history: TrackRtsHistory): SmoothedTrack;
|
|
10387
|
+
|
|
10238
10388
|
/**
|
|
10239
10389
|
* Post-correlation predetection SNR in decibels.
|
|
10240
10390
|
*/
|