@neilberkman/sidereon 0.14.0 → 0.16.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 +24 -6
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +2787 -1506
- package/pkg/sidereon.js +4028 -1337
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1192 -1013
- package/pkg-node/sidereon.d.ts +1146 -44
- package/pkg-node/sidereon.js +4087 -1332
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1192 -1013
- package/types/sidereon-extra.d.ts +575 -6
package/README.md
CHANGED
|
@@ -106,16 +106,34 @@ positions and scalar attributes out.
|
|
|
106
106
|
|
|
107
107
|
The wasm surface mirrors the full breadth of the engine:
|
|
108
108
|
|
|
109
|
-
- **Orbit propagation:** SGP4 from TLE and OMM, numerical propagation with
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
- **Orbit propagation:** SGP4 from TLE and OMM, numerical propagation with a
|
|
110
|
+
composable force model (spherical-harmonic geopotential to selectable degree
|
|
111
|
+
and order, Sun/Moon third-body, solar radiation pressure, relativistic
|
|
112
|
+
correction, space-weather-driven atmospheric drag) and orbital decay
|
|
113
|
+
estimation with a post-decay validity latch, Kepler two-body propagation,
|
|
114
|
+
batch constellation propagation, pass prediction, look angles, coverage, and
|
|
115
|
+
batch least-squares orbit fitting against precise ephemerides (including
|
|
116
|
+
terrestrial-frame SP3 through the Earth-orientation chain) with a
|
|
117
|
+
per-satellite residual ledger.
|
|
113
118
|
- **GNSS positioning:** SPP, RTK (float/fixed), PPP (float/fixed), DGNSS,
|
|
114
119
|
moving-baseline RTK, DOP, velocity, and a robust SPP driver that runs fault
|
|
115
120
|
detection and exclusion (RAIM/FDE) with iterative reweighting.
|
|
121
|
+
- **Integrity and error bounds:** multi-constellation ARAIM protection levels,
|
|
122
|
+
SBAS protection levels (DO-229), per-observation reliability (minimal
|
|
123
|
+
detectable bias, internal/external), observability classification of every
|
|
124
|
+
solution (rank, redundancy, conditioning), and covariance-derived error
|
|
125
|
+
metrics (CEP, R95, SEP, error ellipse) that report wide or flagged bounds
|
|
126
|
+
for weak geometry rather than fabricated confidence.
|
|
116
127
|
- **GNSS corrections and biases:** SBAS message decoding with SBAS-corrected
|
|
117
128
|
solves, RTCM SSR orbit and clock correction streams, Bias-SINEX code and
|
|
118
129
|
phase biases (DCB/OSB).
|
|
130
|
+
- **Timing, estimation, and geodesy:** Allan-family clock stability with
|
|
131
|
+
power-law noise identification (IEEE 1139), scalar Kalman and alpha-beta
|
|
132
|
+
trackers, CFAR detection thresholds, source localization (ToA/TDOA), robust
|
|
133
|
+
station velocity (MIDAS) with trajectory fitting and step detection,
|
|
134
|
+
repeating-geometry (sidereal) filtering, geodesic direct and inverse
|
|
135
|
+
problems (Karney), an epoch-aware terrestrial frame catalog (ITRF/ETRF
|
|
136
|
+
Helmert sets), and EGM2008 geoid grids alongside EGM96.
|
|
119
137
|
- **Ephemeris and time:** broadcast ephemeris and SP3 (load/interpolate/merge),
|
|
120
138
|
source-agnostic precise ephemeris sampling (one sampling interface over SP3,
|
|
121
139
|
broadcast, or caller-supplied samples), JPL SPK (DAF/.bsp) kernels,
|
|
@@ -139,8 +157,8 @@ The wasm surface mirrors the full breadth of the engine:
|
|
|
139
157
|
pole tides, ocean tide loading, DTED terrain elevation lookup.
|
|
140
158
|
- **RF link budget:** free-space path loss, EIRP, C/N0, antenna gain, Doppler
|
|
141
159
|
shift and range rate.
|
|
142
|
-
- **Format parsing and serialization:** TLE/OMM, CCSDS (OEM/OPM/CDM),
|
|
143
|
-
observation/navigation/clock, CRINEX (Hatanaka), SP3, IONEX, ANTEX,
|
|
160
|
+
- **Format parsing and serialization:** TLE/OMM, CCSDS (OEM/OPM/CDM/TDM),
|
|
161
|
+
RINEX observation/navigation/clock, CRINEX (Hatanaka), SP3, IONEX, ANTEX,
|
|
144
162
|
Bias-SINEX, RTCM.
|
|
145
163
|
|
|
146
164
|
The binding adds no modeling of its own: every result is exactly what the engine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neilberkman/sidereon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.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",
|