@neilberkman/sidereon 0.13.0 → 0.14.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.
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +1093 -960
- package/pkg/sidereon.js +210 -0
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1216 -1198
- package/pkg-node/sidereon.d.ts +115 -0
- package/pkg-node/sidereon.js +213 -0
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1216 -1198
- package/types/sidereon-extra.d.ts +129 -0
package/pkg-node/sidereon.d.ts
CHANGED
|
@@ -1864,6 +1864,43 @@ export class GeoidGrid {
|
|
|
1864
1864
|
undulationsRad(points_rad: Float64Array): Float64Array;
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
|
+
/**
|
|
1868
|
+
* Geometry observability and covariance-validation diagnostics.
|
|
1869
|
+
*/
|
|
1870
|
+
export class GeometryQuality {
|
|
1871
|
+
private constructor();
|
|
1872
|
+
free(): void;
|
|
1873
|
+
[Symbol.dispose](): void;
|
|
1874
|
+
/**
|
|
1875
|
+
* Singular-value condition number of the design matrix.
|
|
1876
|
+
*/
|
|
1877
|
+
readonly conditionNumber: number;
|
|
1878
|
+
/**
|
|
1879
|
+
* Whether residuals or a propagated prior validated the covariance bound.
|
|
1880
|
+
*/
|
|
1881
|
+
readonly covarianceValidated: boolean;
|
|
1882
|
+
/**
|
|
1883
|
+
* Geometric dilution of precision for the solved state.
|
|
1884
|
+
*/
|
|
1885
|
+
readonly gdop: number;
|
|
1886
|
+
/**
|
|
1887
|
+
* Whether residual-based RAIM can test the solve.
|
|
1888
|
+
*/
|
|
1889
|
+
readonly raimCheckable: boolean;
|
|
1890
|
+
/**
|
|
1891
|
+
* Rank of the design matrix used by the solve.
|
|
1892
|
+
*/
|
|
1893
|
+
readonly rank: number;
|
|
1894
|
+
/**
|
|
1895
|
+
* Observation redundancy, `nObs - nParams`.
|
|
1896
|
+
*/
|
|
1897
|
+
readonly redundancy: number;
|
|
1898
|
+
/**
|
|
1899
|
+
* Observability and validation tier.
|
|
1900
|
+
*/
|
|
1901
|
+
readonly tier: ObservabilityTier;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1867
1904
|
/**
|
|
1868
1905
|
* One GLONASS broadcast state-vector record. `toeUtcJ2000S` is UTC seconds past
|
|
1869
1906
|
* J2000; position is PZ-90.11 ECEF metres, velocity m/s, acceleration m/s^2.
|
|
@@ -3276,6 +3313,34 @@ export class ObsPhaseShift {
|
|
|
3276
3313
|
readonly system: GnssSystem;
|
|
3277
3314
|
}
|
|
3278
3315
|
|
|
3316
|
+
/**
|
|
3317
|
+
* Observability and validation tier for an estimation design.
|
|
3318
|
+
*
|
|
3319
|
+
* `ZeroRedundancy` means the design is full rank but has no residual degrees of
|
|
3320
|
+
* freedom, so snapshot-solve covariance bounds are unvalidated unless a
|
|
3321
|
+
* propagated prior is present. `Weak` means the design exceeded the configured
|
|
3322
|
+
* condition-number or GDOP cutoff; the returned bounds are reported as computed
|
|
3323
|
+
* and are not clamped.
|
|
3324
|
+
*/
|
|
3325
|
+
export enum ObservabilityTier {
|
|
3326
|
+
/**
|
|
3327
|
+
* At least one estimated parameter is not observable.
|
|
3328
|
+
*/
|
|
3329
|
+
RankDeficient = 0,
|
|
3330
|
+
/**
|
|
3331
|
+
* Full rank with no residual degrees of freedom.
|
|
3332
|
+
*/
|
|
3333
|
+
ZeroRedundancy = 1,
|
|
3334
|
+
/**
|
|
3335
|
+
* Full rank with residual degrees of freedom, but above a cutoff.
|
|
3336
|
+
*/
|
|
3337
|
+
Weak = 2,
|
|
3338
|
+
/**
|
|
3339
|
+
* Full rank and within the configured cutoffs.
|
|
3340
|
+
*/
|
|
3341
|
+
Nominal = 3,
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3279
3344
|
/**
|
|
3280
3345
|
* Optional observation-code allow-list for raw and carrier-phase rows. Build
|
|
3281
3346
|
* with `new ObservationFilter()` then chain `.withSystem(system, codes)`.
|
|
@@ -4770,6 +4835,11 @@ export class RtkFixedSolution {
|
|
|
4770
4835
|
* The underlying float baseline as a `Float64Array` `[dx, dy, dz]`, metres.
|
|
4771
4836
|
*/
|
|
4772
4837
|
readonly floatBaselineM: Float64Array;
|
|
4838
|
+
/**
|
|
4839
|
+
* Geometry observability and covariance-validation diagnostics for the
|
|
4840
|
+
* float design used by the integer-fixed solve.
|
|
4841
|
+
*/
|
|
4842
|
+
readonly geometryQuality: GeometryQuality;
|
|
4773
4843
|
readonly integerCandidates: number;
|
|
4774
4844
|
/**
|
|
4775
4845
|
* Integer ambiguity ratio, or `undefined` when no ratio was computed.
|
|
@@ -4779,6 +4849,16 @@ export class RtkFixedSolution {
|
|
|
4779
4849
|
* Integer ambiguity-fix status: `"Fixed"` or `"NotFixed"`.
|
|
4780
4850
|
*/
|
|
4781
4851
|
readonly integerStatus: string;
|
|
4852
|
+
/**
|
|
4853
|
+
* Whether residual-based RAIM can test the float design used by the
|
|
4854
|
+
* integer-fixed solve.
|
|
4855
|
+
*/
|
|
4856
|
+
readonly raimCheckable: boolean;
|
|
4857
|
+
/**
|
|
4858
|
+
* Observation redundancy, `nObs - nParams`, for the float design used by
|
|
4859
|
+
* the integer-fixed solve.
|
|
4860
|
+
*/
|
|
4861
|
+
readonly redundancy: number;
|
|
4782
4862
|
}
|
|
4783
4863
|
|
|
4784
4864
|
/**
|
|
@@ -4798,9 +4878,24 @@ export class RtkFloatSolution {
|
|
|
4798
4878
|
readonly baselineM: Float64Array;
|
|
4799
4879
|
readonly codeRmsM: number;
|
|
4800
4880
|
readonly converged: boolean;
|
|
4881
|
+
/**
|
|
4882
|
+
* Geometry observability and covariance-validation diagnostics for the
|
|
4883
|
+
* final double-difference design. `ZeroRedundancy` bounds are unvalidated
|
|
4884
|
+
* for snapshot solves, `Weak` bounds are unclamped, and rank-deficient
|
|
4885
|
+
* designs are returned as a singular-geometry `Error`.
|
|
4886
|
+
*/
|
|
4887
|
+
readonly geometryQuality: GeometryQuality;
|
|
4801
4888
|
readonly iterations: number;
|
|
4802
4889
|
readonly nObservations: number;
|
|
4803
4890
|
readonly phaseRmsM: number;
|
|
4891
|
+
/**
|
|
4892
|
+
* Whether residual-based RAIM can test the float design.
|
|
4893
|
+
*/
|
|
4894
|
+
readonly raimCheckable: boolean;
|
|
4895
|
+
/**
|
|
4896
|
+
* Observation redundancy, `nObs - nParams`, for the float design.
|
|
4897
|
+
*/
|
|
4898
|
+
readonly redundancy: number;
|
|
4804
4899
|
readonly weightedRmsM: number;
|
|
4805
4900
|
}
|
|
4806
4901
|
|
|
@@ -5627,10 +5722,25 @@ export class SppSolution {
|
|
|
5627
5722
|
* for geodetic output, otherwise `undefined`.
|
|
5628
5723
|
*/
|
|
5629
5724
|
readonly geodetic: Float64Array | undefined;
|
|
5725
|
+
/**
|
|
5726
|
+
* Geometry observability and covariance-validation diagnostics for this
|
|
5727
|
+
* solved design. `ZeroRedundancy` marks unvalidated snapshot covariance
|
|
5728
|
+
* bounds, `Weak` leaves large bounds unclamped, and rank-deficient designs
|
|
5729
|
+
* are returned as a singular-geometry `Error` rather than a solution.
|
|
5730
|
+
*/
|
|
5731
|
+
readonly geometryQuality: GeometryQuality;
|
|
5630
5732
|
/**
|
|
5631
5733
|
* ECEF position as a `Float64Array` `[x, y, z]`, metres.
|
|
5632
5734
|
*/
|
|
5633
5735
|
readonly positionM: Float64Array;
|
|
5736
|
+
/**
|
|
5737
|
+
* Whether residual-based RAIM can test the accepted solve.
|
|
5738
|
+
*/
|
|
5739
|
+
readonly raimCheckable: boolean;
|
|
5740
|
+
/**
|
|
5741
|
+
* Degrees of freedom in the accepted solve: `usedCount - (3 + clocks)`.
|
|
5742
|
+
*/
|
|
5743
|
+
readonly redundancy: number;
|
|
5634
5744
|
/**
|
|
5635
5745
|
* Post-fit residuals, metres, index-aligned to `usedSats`.
|
|
5636
5746
|
*/
|
|
@@ -7733,6 +7843,11 @@ export function normalizedInnovation(innovation: number, innovation_variance: nu
|
|
|
7733
7843
|
*/
|
|
7734
7844
|
export function ntripRequestBytes(config: any): Uint8Array;
|
|
7735
7845
|
|
|
7846
|
+
/**
|
|
7847
|
+
* Stable string label for an [`ObservabilityTier`] enum value.
|
|
7848
|
+
*/
|
|
7849
|
+
export function observabilityTierLabel(tier: ObservabilityTier): string;
|
|
7850
|
+
|
|
7736
7851
|
/**
|
|
7737
7852
|
* Missing-position sentinel used in failed observable-state batch elements.
|
|
7738
7853
|
*
|
package/pkg-node/sidereon.js
CHANGED
|
@@ -4798,6 +4798,86 @@ class GeoidGrid {
|
|
|
4798
4798
|
if (Symbol.dispose) GeoidGrid.prototype[Symbol.dispose] = GeoidGrid.prototype.free;
|
|
4799
4799
|
exports.GeoidGrid = GeoidGrid;
|
|
4800
4800
|
|
|
4801
|
+
/**
|
|
4802
|
+
* Geometry observability and covariance-validation diagnostics.
|
|
4803
|
+
*/
|
|
4804
|
+
class GeometryQuality {
|
|
4805
|
+
static __wrap(ptr) {
|
|
4806
|
+
const obj = Object.create(GeometryQuality.prototype);
|
|
4807
|
+
obj.__wbg_ptr = ptr;
|
|
4808
|
+
GeometryQualityFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
4809
|
+
return obj;
|
|
4810
|
+
}
|
|
4811
|
+
__destroy_into_raw() {
|
|
4812
|
+
const ptr = this.__wbg_ptr;
|
|
4813
|
+
this.__wbg_ptr = 0;
|
|
4814
|
+
GeometryQualityFinalization.unregister(this);
|
|
4815
|
+
return ptr;
|
|
4816
|
+
}
|
|
4817
|
+
free() {
|
|
4818
|
+
const ptr = this.__destroy_into_raw();
|
|
4819
|
+
wasm.__wbg_geometryquality_free(ptr, 0);
|
|
4820
|
+
}
|
|
4821
|
+
/**
|
|
4822
|
+
* Singular-value condition number of the design matrix.
|
|
4823
|
+
* @returns {number}
|
|
4824
|
+
*/
|
|
4825
|
+
get conditionNumber() {
|
|
4826
|
+
const ret = wasm.geometryquality_conditionNumber(this.__wbg_ptr);
|
|
4827
|
+
return ret;
|
|
4828
|
+
}
|
|
4829
|
+
/**
|
|
4830
|
+
* Whether residuals or a propagated prior validated the covariance bound.
|
|
4831
|
+
* @returns {boolean}
|
|
4832
|
+
*/
|
|
4833
|
+
get covarianceValidated() {
|
|
4834
|
+
const ret = wasm.geometryquality_covarianceValidated(this.__wbg_ptr);
|
|
4835
|
+
return ret !== 0;
|
|
4836
|
+
}
|
|
4837
|
+
/**
|
|
4838
|
+
* Geometric dilution of precision for the solved state.
|
|
4839
|
+
* @returns {number}
|
|
4840
|
+
*/
|
|
4841
|
+
get gdop() {
|
|
4842
|
+
const ret = wasm.geometryquality_gdop(this.__wbg_ptr);
|
|
4843
|
+
return ret;
|
|
4844
|
+
}
|
|
4845
|
+
/**
|
|
4846
|
+
* Whether residual-based RAIM can test the solve.
|
|
4847
|
+
* @returns {boolean}
|
|
4848
|
+
*/
|
|
4849
|
+
get raimCheckable() {
|
|
4850
|
+
const ret = wasm.geometryquality_raimCheckable(this.__wbg_ptr);
|
|
4851
|
+
return ret !== 0;
|
|
4852
|
+
}
|
|
4853
|
+
/**
|
|
4854
|
+
* Rank of the design matrix used by the solve.
|
|
4855
|
+
* @returns {number}
|
|
4856
|
+
*/
|
|
4857
|
+
get rank() {
|
|
4858
|
+
const ret = wasm.geometryquality_rank(this.__wbg_ptr);
|
|
4859
|
+
return ret >>> 0;
|
|
4860
|
+
}
|
|
4861
|
+
/**
|
|
4862
|
+
* Observation redundancy, `nObs - nParams`.
|
|
4863
|
+
* @returns {number}
|
|
4864
|
+
*/
|
|
4865
|
+
get redundancy() {
|
|
4866
|
+
const ret = wasm.geometryquality_redundancy(this.__wbg_ptr);
|
|
4867
|
+
return ret;
|
|
4868
|
+
}
|
|
4869
|
+
/**
|
|
4870
|
+
* Observability and validation tier.
|
|
4871
|
+
* @returns {ObservabilityTier}
|
|
4872
|
+
*/
|
|
4873
|
+
get tier() {
|
|
4874
|
+
const ret = wasm.geometryquality_tier(this.__wbg_ptr);
|
|
4875
|
+
return ret;
|
|
4876
|
+
}
|
|
4877
|
+
}
|
|
4878
|
+
if (Symbol.dispose) GeometryQuality.prototype[Symbol.dispose] = GeometryQuality.prototype.free;
|
|
4879
|
+
exports.GeometryQuality = GeometryQuality;
|
|
4880
|
+
|
|
4801
4881
|
/**
|
|
4802
4882
|
* One GLONASS broadcast state-vector record. `toeUtcJ2000S` is UTC seconds past
|
|
4803
4883
|
* J2000; position is PZ-90.11 ECEF metres, velocity m/s, acceleration m/s^2.
|
|
@@ -8258,6 +8338,36 @@ class ObsPhaseShift {
|
|
|
8258
8338
|
if (Symbol.dispose) ObsPhaseShift.prototype[Symbol.dispose] = ObsPhaseShift.prototype.free;
|
|
8259
8339
|
exports.ObsPhaseShift = ObsPhaseShift;
|
|
8260
8340
|
|
|
8341
|
+
/**
|
|
8342
|
+
* Observability and validation tier for an estimation design.
|
|
8343
|
+
*
|
|
8344
|
+
* `ZeroRedundancy` means the design is full rank but has no residual degrees of
|
|
8345
|
+
* freedom, so snapshot-solve covariance bounds are unvalidated unless a
|
|
8346
|
+
* propagated prior is present. `Weak` means the design exceeded the configured
|
|
8347
|
+
* condition-number or GDOP cutoff; the returned bounds are reported as computed
|
|
8348
|
+
* and are not clamped.
|
|
8349
|
+
* @enum {0 | 1 | 2 | 3}
|
|
8350
|
+
*/
|
|
8351
|
+
const ObservabilityTier = Object.freeze({
|
|
8352
|
+
/**
|
|
8353
|
+
* At least one estimated parameter is not observable.
|
|
8354
|
+
*/
|
|
8355
|
+
RankDeficient: 0, "0": "RankDeficient",
|
|
8356
|
+
/**
|
|
8357
|
+
* Full rank with no residual degrees of freedom.
|
|
8358
|
+
*/
|
|
8359
|
+
ZeroRedundancy: 1, "1": "ZeroRedundancy",
|
|
8360
|
+
/**
|
|
8361
|
+
* Full rank with residual degrees of freedom, but above a cutoff.
|
|
8362
|
+
*/
|
|
8363
|
+
Weak: 2, "2": "Weak",
|
|
8364
|
+
/**
|
|
8365
|
+
* Full rank and within the configured cutoffs.
|
|
8366
|
+
*/
|
|
8367
|
+
Nominal: 3, "3": "Nominal",
|
|
8368
|
+
});
|
|
8369
|
+
exports.ObservabilityTier = ObservabilityTier;
|
|
8370
|
+
|
|
8261
8371
|
/**
|
|
8262
8372
|
* Optional observation-code allow-list for raw and carrier-phase rows. Build
|
|
8263
8373
|
* with `new ObservationFilter()` then chain `.withSystem(system, codes)`.
|
|
@@ -12557,6 +12667,15 @@ class RtkFixedSolution {
|
|
|
12557
12667
|
wasm.__wbindgen_free(ret[0], ret[1] * 8, 8);
|
|
12558
12668
|
return v1;
|
|
12559
12669
|
}
|
|
12670
|
+
/**
|
|
12671
|
+
* Geometry observability and covariance-validation diagnostics for the
|
|
12672
|
+
* float design used by the integer-fixed solve.
|
|
12673
|
+
* @returns {GeometryQuality}
|
|
12674
|
+
*/
|
|
12675
|
+
get geometryQuality() {
|
|
12676
|
+
const ret = wasm.rtkfixedsolution_geometryQuality(this.__wbg_ptr);
|
|
12677
|
+
return GeometryQuality.__wrap(ret);
|
|
12678
|
+
}
|
|
12560
12679
|
/**
|
|
12561
12680
|
* @returns {number}
|
|
12562
12681
|
*/
|
|
@@ -12588,6 +12707,24 @@ class RtkFixedSolution {
|
|
|
12588
12707
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
12589
12708
|
}
|
|
12590
12709
|
}
|
|
12710
|
+
/**
|
|
12711
|
+
* Whether residual-based RAIM can test the float design used by the
|
|
12712
|
+
* integer-fixed solve.
|
|
12713
|
+
* @returns {boolean}
|
|
12714
|
+
*/
|
|
12715
|
+
get raimCheckable() {
|
|
12716
|
+
const ret = wasm.rtkfixedsolution_raimCheckable(this.__wbg_ptr);
|
|
12717
|
+
return ret !== 0;
|
|
12718
|
+
}
|
|
12719
|
+
/**
|
|
12720
|
+
* Observation redundancy, `nObs - nParams`, for the float design used by
|
|
12721
|
+
* the integer-fixed solve.
|
|
12722
|
+
* @returns {number}
|
|
12723
|
+
*/
|
|
12724
|
+
get redundancy() {
|
|
12725
|
+
const ret = wasm.rtkfixedsolution_redundancy(this.__wbg_ptr);
|
|
12726
|
+
return ret;
|
|
12727
|
+
}
|
|
12591
12728
|
}
|
|
12592
12729
|
if (Symbol.dispose) RtkFixedSolution.prototype[Symbol.dispose] = RtkFixedSolution.prototype.free;
|
|
12593
12730
|
exports.RtkFixedSolution = RtkFixedSolution;
|
|
@@ -12644,6 +12781,17 @@ class RtkFloatSolution {
|
|
|
12644
12781
|
const ret = wasm.rtkfloatsolution_converged(this.__wbg_ptr);
|
|
12645
12782
|
return ret !== 0;
|
|
12646
12783
|
}
|
|
12784
|
+
/**
|
|
12785
|
+
* Geometry observability and covariance-validation diagnostics for the
|
|
12786
|
+
* final double-difference design. `ZeroRedundancy` bounds are unvalidated
|
|
12787
|
+
* for snapshot solves, `Weak` bounds are unclamped, and rank-deficient
|
|
12788
|
+
* designs are returned as a singular-geometry `Error`.
|
|
12789
|
+
* @returns {GeometryQuality}
|
|
12790
|
+
*/
|
|
12791
|
+
get geometryQuality() {
|
|
12792
|
+
const ret = wasm.rtkfloatsolution_geometryQuality(this.__wbg_ptr);
|
|
12793
|
+
return GeometryQuality.__wrap(ret);
|
|
12794
|
+
}
|
|
12647
12795
|
/**
|
|
12648
12796
|
* @returns {number}
|
|
12649
12797
|
*/
|
|
@@ -12665,6 +12813,22 @@ class RtkFloatSolution {
|
|
|
12665
12813
|
const ret = wasm.rtkfloatsolution_phaseRmsM(this.__wbg_ptr);
|
|
12666
12814
|
return ret;
|
|
12667
12815
|
}
|
|
12816
|
+
/**
|
|
12817
|
+
* Whether residual-based RAIM can test the float design.
|
|
12818
|
+
* @returns {boolean}
|
|
12819
|
+
*/
|
|
12820
|
+
get raimCheckable() {
|
|
12821
|
+
const ret = wasm.rtkfloatsolution_raimCheckable(this.__wbg_ptr);
|
|
12822
|
+
return ret !== 0;
|
|
12823
|
+
}
|
|
12824
|
+
/**
|
|
12825
|
+
* Observation redundancy, `nObs - nParams`, for the float design.
|
|
12826
|
+
* @returns {number}
|
|
12827
|
+
*/
|
|
12828
|
+
get redundancy() {
|
|
12829
|
+
const ret = wasm.rtkfloatsolution_redundancy(this.__wbg_ptr);
|
|
12830
|
+
return ret;
|
|
12831
|
+
}
|
|
12668
12832
|
/**
|
|
12669
12833
|
* @returns {number}
|
|
12670
12834
|
*/
|
|
@@ -14717,6 +14881,17 @@ class SppSolution {
|
|
|
14717
14881
|
}
|
|
14718
14882
|
return v1;
|
|
14719
14883
|
}
|
|
14884
|
+
/**
|
|
14885
|
+
* Geometry observability and covariance-validation diagnostics for this
|
|
14886
|
+
* solved design. `ZeroRedundancy` marks unvalidated snapshot covariance
|
|
14887
|
+
* bounds, `Weak` leaves large bounds unclamped, and rank-deficient designs
|
|
14888
|
+
* are returned as a singular-geometry `Error` rather than a solution.
|
|
14889
|
+
* @returns {GeometryQuality}
|
|
14890
|
+
*/
|
|
14891
|
+
get geometryQuality() {
|
|
14892
|
+
const ret = wasm.sppsolution_geometryQuality(this.__wbg_ptr);
|
|
14893
|
+
return GeometryQuality.__wrap(ret);
|
|
14894
|
+
}
|
|
14720
14895
|
/**
|
|
14721
14896
|
* ECEF position as a `Float64Array` `[x, y, z]`, metres.
|
|
14722
14897
|
* @returns {Float64Array}
|
|
@@ -14727,6 +14902,22 @@ class SppSolution {
|
|
|
14727
14902
|
wasm.__wbindgen_free(ret[0], ret[1] * 8, 8);
|
|
14728
14903
|
return v1;
|
|
14729
14904
|
}
|
|
14905
|
+
/**
|
|
14906
|
+
* Whether residual-based RAIM can test the accepted solve.
|
|
14907
|
+
* @returns {boolean}
|
|
14908
|
+
*/
|
|
14909
|
+
get raimCheckable() {
|
|
14910
|
+
const ret = wasm.sppsolution_raimCheckable(this.__wbg_ptr);
|
|
14911
|
+
return ret !== 0;
|
|
14912
|
+
}
|
|
14913
|
+
/**
|
|
14914
|
+
* Degrees of freedom in the accepted solve: `usedCount - (3 + clocks)`.
|
|
14915
|
+
* @returns {number}
|
|
14916
|
+
*/
|
|
14917
|
+
get redundancy() {
|
|
14918
|
+
const ret = wasm.sppsolution_redundancy(this.__wbg_ptr);
|
|
14919
|
+
return ret;
|
|
14920
|
+
}
|
|
14730
14921
|
/**
|
|
14731
14922
|
* Post-fit residuals, metres, index-aligned to `usedSats`.
|
|
14732
14923
|
* @returns {Float64Array}
|
|
@@ -20286,6 +20477,25 @@ function ntripRequestBytes(config) {
|
|
|
20286
20477
|
}
|
|
20287
20478
|
exports.ntripRequestBytes = ntripRequestBytes;
|
|
20288
20479
|
|
|
20480
|
+
/**
|
|
20481
|
+
* Stable string label for an [`ObservabilityTier`] enum value.
|
|
20482
|
+
* @param {ObservabilityTier} tier
|
|
20483
|
+
* @returns {string}
|
|
20484
|
+
*/
|
|
20485
|
+
function observabilityTierLabel(tier) {
|
|
20486
|
+
let deferred1_0;
|
|
20487
|
+
let deferred1_1;
|
|
20488
|
+
try {
|
|
20489
|
+
const ret = wasm.observabilityTierLabel(tier);
|
|
20490
|
+
deferred1_0 = ret[0];
|
|
20491
|
+
deferred1_1 = ret[1];
|
|
20492
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
20493
|
+
} finally {
|
|
20494
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
20495
|
+
}
|
|
20496
|
+
}
|
|
20497
|
+
exports.observabilityTierLabel = observabilityTierLabel;
|
|
20498
|
+
|
|
20289
20499
|
/**
|
|
20290
20500
|
* Missing-position sentinel used in failed observable-state batch elements.
|
|
20291
20501
|
*
|
|
@@ -23881,6 +24091,9 @@ const FrameStatesFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
|
23881
24091
|
const GeoidGridFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
23882
24092
|
? { register: () => {}, unregister: () => {} }
|
|
23883
24093
|
: new FinalizationRegistry(ptr => wasm.__wbg_geoidgrid_free(ptr, 1));
|
|
24094
|
+
const GeometryQualityFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
24095
|
+
? { register: () => {}, unregister: () => {} }
|
|
24096
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_geometryquality_free(ptr, 1));
|
|
23884
24097
|
const GlonassRecordJsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
23885
24098
|
? { register: () => {}, unregister: () => {} }
|
|
23886
24099
|
: new FinalizationRegistry(ptr => wasm.__wbg_glonassrecordjs_free(ptr, 1));
|
|
Binary file
|