@neilberkman/sidereon 0.15.0 → 0.16.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 +12 -8
- package/package.json +1 -1
- package/pkg/sidereon.d.ts +1728 -1084
- package/pkg/sidereon.js +1485 -23
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1170 -1082
- package/pkg-node/sidereon.d.ts +557 -1
- package/pkg-node/sidereon.js +1516 -23
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1170 -1082
- package/types/sidereon-extra.d.ts +36 -2
package/README.md
CHANGED
|
@@ -107,11 +107,13 @@ positions and scalar attributes out.
|
|
|
107
107
|
The wasm surface mirrors the full breadth of the engine:
|
|
108
108
|
|
|
109
109
|
- **Orbit propagation:** SGP4 from TLE and OMM, numerical propagation with a
|
|
110
|
-
composable force model (
|
|
111
|
-
solar radiation pressure, relativistic
|
|
112
|
-
atmospheric drag) and orbital decay
|
|
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,
|
|
113
114
|
batch constellation propagation, pass prediction, look angles, coverage, and
|
|
114
|
-
batch least-squares orbit fitting against precise ephemerides
|
|
115
|
+
batch least-squares orbit fitting against precise ephemerides (including
|
|
116
|
+
terrestrial-frame SP3 through the Earth-orientation chain) with a
|
|
115
117
|
per-satellite residual ledger.
|
|
116
118
|
- **GNSS positioning:** SPP, RTK (float/fixed), PPP (float/fixed), DGNSS,
|
|
117
119
|
moving-baseline RTK, DOP, velocity, and a robust SPP driver that runs fault
|
|
@@ -128,8 +130,10 @@ The wasm surface mirrors the full breadth of the engine:
|
|
|
128
130
|
- **Timing, estimation, and geodesy:** Allan-family clock stability with
|
|
129
131
|
power-law noise identification (IEEE 1139), scalar Kalman and alpha-beta
|
|
130
132
|
trackers, CFAR detection thresholds, source localization (ToA/TDOA), robust
|
|
131
|
-
station velocity (MIDAS) with trajectory fitting and step detection,
|
|
132
|
-
repeating-geometry (sidereal) filtering
|
|
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.
|
|
133
137
|
- **Ephemeris and time:** broadcast ephemeris and SP3 (load/interpolate/merge),
|
|
134
138
|
source-agnostic precise ephemeris sampling (one sampling interface over SP3,
|
|
135
139
|
broadcast, or caller-supplied samples), JPL SPK (DAF/.bsp) kernels,
|
|
@@ -153,8 +157,8 @@ The wasm surface mirrors the full breadth of the engine:
|
|
|
153
157
|
pole tides, ocean tide loading, DTED terrain elevation lookup.
|
|
154
158
|
- **RF link budget:** free-space path loss, EIRP, C/N0, antenna gain, Doppler
|
|
155
159
|
shift and range rate.
|
|
156
|
-
- **Format parsing and serialization:** TLE/OMM, CCSDS (OEM/OPM/CDM),
|
|
157
|
-
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,
|
|
158
162
|
Bias-SINEX, RTCM.
|
|
159
163
|
|
|
160
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.1",
|
|
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",
|