@neilberkman/sidereon 0.10.0 → 0.10.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/README.md +34 -13
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +882 -862
- package/pkg/sidereon.js +33 -0
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +863 -862
- package/pkg-node/sidereon.d.ts +19 -0
- package/pkg-node/sidereon.js +35 -0
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +863 -862
package/pkg/sidereon.js
CHANGED
|
@@ -12443,6 +12443,21 @@ export class SsrCorrectionStore {
|
|
|
12443
12443
|
}
|
|
12444
12444
|
if (Symbol.dispose) SsrCorrectionStore.prototype[Symbol.dispose] = SsrCorrectionStore.prototype.free;
|
|
12445
12445
|
|
|
12446
|
+
/**
|
|
12447
|
+
* Source stream for engineering-unit SSR corrections.
|
|
12448
|
+
* @enum {0 | 1}
|
|
12449
|
+
*/
|
|
12450
|
+
export const SsrSource = Object.freeze({
|
|
12451
|
+
/**
|
|
12452
|
+
* RTCM SSR messages.
|
|
12453
|
+
*/
|
|
12454
|
+
RtcmSsr: 0, "0": "RtcmSsr",
|
|
12455
|
+
/**
|
|
12456
|
+
* Galileo High Accuracy Service messages.
|
|
12457
|
+
*/
|
|
12458
|
+
GalileoHas: 1, "1": "GalileoHas",
|
|
12459
|
+
});
|
|
12460
|
+
|
|
12446
12461
|
/**
|
|
12447
12462
|
* A batch of Sun and Moon positions, one per epoch: flat row-major `sun` and
|
|
12448
12463
|
* `moon` `Float64Array`s of length `3 * epochCount`, in **metres**.
|
|
@@ -18427,6 +18442,24 @@ export function ssrCorrectedState(broadcast, store, sat, t_j2000_s, fallback_to_
|
|
|
18427
18442
|
return takeFromExternrefTable0(ret[0]);
|
|
18428
18443
|
}
|
|
18429
18444
|
|
|
18445
|
+
/**
|
|
18446
|
+
* Stable lower-camel-case SSR source token.
|
|
18447
|
+
* @param {SsrSource} source
|
|
18448
|
+
* @returns {string}
|
|
18449
|
+
*/
|
|
18450
|
+
export function ssrSourceLabel(source) {
|
|
18451
|
+
let deferred1_0;
|
|
18452
|
+
let deferred1_1;
|
|
18453
|
+
try {
|
|
18454
|
+
const ret = wasm.ssrSourceLabel(source);
|
|
18455
|
+
deferred1_0 = ret[0];
|
|
18456
|
+
deferred1_1 = ret[1];
|
|
18457
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
18458
|
+
} finally {
|
|
18459
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
18460
|
+
}
|
|
18461
|
+
}
|
|
18462
|
+
|
|
18430
18463
|
/**
|
|
18431
18464
|
* Sub-observer point (planetary central meridian) on a rotating body.
|
|
18432
18465
|
*
|
package/pkg/sidereon_bg.wasm
CHANGED
|
Binary file
|