@neilberkman/sidereon 0.17.0 → 0.18.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/README.md +9 -0
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +1988 -1719
- package/pkg/sidereon.js +650 -0
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1679 -1632
- package/pkg-node/sidereon.d.ts +222 -0
- package/pkg-node/sidereon.js +664 -0
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1679 -1632
- package/types/sidereon-extra.d.ts +1 -3647
package/README.md
CHANGED
|
@@ -157,6 +157,15 @@ The wasm surface mirrors the full breadth of the engine:
|
|
|
157
157
|
pole tides, ocean tide loading, DTED terrain elevation lookup.
|
|
158
158
|
- **RF link budget:** free-space path loss, EIRP, C/N0, antenna gain, Doppler
|
|
159
159
|
shift and range rate.
|
|
160
|
+
- **GNSS/INS fusion:** strapdown mechanization with an error-state EKF (UKF
|
|
161
|
+
option), loose and tight coupling, robust loose updates, an RTS smoother,
|
|
162
|
+
and a serializable filter state.
|
|
163
|
+
- **Scenario simulation:** deterministic synthetic observables plus a
|
|
164
|
+
ground-truth error ledger from a versioned scenario; identical bytes for the
|
|
165
|
+
same scenario and seed.
|
|
166
|
+
- **Signal analysis:** closed-form BPSK/BOC spectra, spectral separation
|
|
167
|
+
coefficients, DLL jitter, and multipath error envelopes against published
|
|
168
|
+
constants.
|
|
160
169
|
- **Format parsing and serialization:** TLE/OMM, CCSDS (OEM/OPM/CDM/TDM),
|
|
161
170
|
RINEX observation/navigation/clock, CRINEX (Hatanaka), SP3, IONEX, ANTEX,
|
|
162
171
|
Bias-SINEX, RTCM.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neilberkman/sidereon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "WebAssembly / JavaScript interface over the sidereon GNSS + astrodynamics engine: SP3 loading and multi-product merge, SPP / RTK (float + fixed) / PPP (float + fixed) positioning, IONEX slant delay, SGP4 and numerical orbit propagation, RINEX observation/navigation/clock parsing, CRINEX (Hatanaka) decoding, observable-domain math (carrier combinations, cycle slips, Hatch smoothing, weighting, velocity, GPS C/A signal), and the astro domain (scale-tagged time, frame transforms, Sun/Moon ephemerides, eclipse / body angles, DOP, passes / visibility, conjunction + collision probability, CDM / OMM / ANTEX parsing, RF link budget)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|