@neilberkman/sidereon 0.13.0 → 0.15.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 +18 -4
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +2063 -1293
- package/pkg/sidereon.js +1449 -10
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1420 -1311
- package/pkg-node/sidereon.d.ts +662 -1
- package/pkg-node/sidereon.js +1485 -10
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1420 -1311
- package/types/sidereon-extra.d.ts +665 -1
package/README.md
CHANGED
|
@@ -106,16 +106,30 @@ 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 (zonal harmonics through J6, Sun/Moon third-body,
|
|
111
|
+
solar radiation pressure, relativistic correction, space-weather-driven
|
|
112
|
+
atmospheric drag) and orbital decay estimation, Kepler two-body propagation,
|
|
113
|
+
batch constellation propagation, pass prediction, look angles, coverage, and
|
|
114
|
+
batch least-squares orbit fitting against precise ephemerides with a
|
|
115
|
+
per-satellite residual ledger.
|
|
113
116
|
- **GNSS positioning:** SPP, RTK (float/fixed), PPP (float/fixed), DGNSS,
|
|
114
117
|
moving-baseline RTK, DOP, velocity, and a robust SPP driver that runs fault
|
|
115
118
|
detection and exclusion (RAIM/FDE) with iterative reweighting.
|
|
119
|
+
- **Integrity and error bounds:** multi-constellation ARAIM protection levels,
|
|
120
|
+
SBAS protection levels (DO-229), per-observation reliability (minimal
|
|
121
|
+
detectable bias, internal/external), observability classification of every
|
|
122
|
+
solution (rank, redundancy, conditioning), and covariance-derived error
|
|
123
|
+
metrics (CEP, R95, SEP, error ellipse) that report wide or flagged bounds
|
|
124
|
+
for weak geometry rather than fabricated confidence.
|
|
116
125
|
- **GNSS corrections and biases:** SBAS message decoding with SBAS-corrected
|
|
117
126
|
solves, RTCM SSR orbit and clock correction streams, Bias-SINEX code and
|
|
118
127
|
phase biases (DCB/OSB).
|
|
128
|
+
- **Timing, estimation, and geodesy:** Allan-family clock stability with
|
|
129
|
+
power-law noise identification (IEEE 1139), scalar Kalman and alpha-beta
|
|
130
|
+
trackers, CFAR detection thresholds, source localization (ToA/TDOA), robust
|
|
131
|
+
station velocity (MIDAS) with trajectory fitting and step detection, and
|
|
132
|
+
repeating-geometry (sidereal) filtering.
|
|
119
133
|
- **Ephemeris and time:** broadcast ephemeris and SP3 (load/interpolate/merge),
|
|
120
134
|
source-agnostic precise ephemeris sampling (one sampling interface over SP3,
|
|
121
135
|
broadcast, or caller-supplied samples), JPL SPK (DAF/.bsp) kernels,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neilberkman/sidereon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.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",
|