@neilberkman/sidereon 0.9.2 → 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 +1398 -1078
- package/pkg/sidereon.js +1506 -37
- package/pkg/sidereon_bg.wasm +0 -0
- package/pkg/sidereon_bg.wasm.d.ts +1161 -1068
- package/pkg-node/sidereon.d.ts +231 -4
- package/pkg-node/sidereon.js +1571 -38
- package/pkg-node/sidereon_bg.wasm +0 -0
- package/pkg-node/sidereon_bg.wasm.d.ts +1161 -1068
package/README.md
CHANGED
|
@@ -106,21 +106,42 @@ 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
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
- **Orbit propagation:** SGP4 from TLE and OMM, numerical propagation with
|
|
110
|
+
selectable force models including atmospheric drag (space-weather driven) and
|
|
111
|
+
orbital decay estimation, Kepler two-body propagation, batch constellation
|
|
112
|
+
propagation, pass prediction, look angles, coverage.
|
|
113
|
+
- **GNSS positioning:** SPP, RTK (float/fixed), PPP (float/fixed), DGNSS,
|
|
114
|
+
moving-baseline RTK, DOP, velocity, and a robust SPP driver that runs fault
|
|
115
|
+
detection and exclusion (RAIM/FDE) with iterative reweighting.
|
|
116
|
+
- **GNSS corrections and biases:** SBAS message decoding with SBAS-corrected
|
|
117
|
+
solves, RTCM SSR orbit and clock correction streams, Bias-SINEX code and
|
|
118
|
+
phase biases (DCB/OSB).
|
|
113
119
|
- **Ephemeris and time:** broadcast ephemeris and SP3 (load/interpolate/merge),
|
|
114
|
-
|
|
115
|
-
|
|
120
|
+
source-agnostic precise ephemeris sampling (one sampling interface over SP3,
|
|
121
|
+
broadcast, or caller-supplied samples), JPL SPK (DAF/.bsp) kernels,
|
|
122
|
+
scale-aware time (`Instant` with GMST/GAST and resolved TT/UT1/TDB), Earth
|
|
123
|
+
orientation parameters.
|
|
116
124
|
- **Geometry and events:** reference frames (TEME, GCRS, ITRS, geodetic, ECEF),
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
- **
|
|
123
|
-
|
|
125
|
+
relative motion in RIC/RTN/LVLH frames with Clohessy-Wiltshire propagation,
|
|
126
|
+
look angles, eclipse and shadow geometry, angular separation, position angle,
|
|
127
|
+
phase angle, beta angle, conjunction screening with collision probability,
|
|
128
|
+
initial orbit determination, Lambert transfer solutions, orbital elements
|
|
129
|
+
with anomaly conversions and equinoctial / modified equinoctial forms.
|
|
130
|
+
- **Observational astronomy:** apparent places (astrometric and apparent
|
|
131
|
+
RA/Dec plus topocentric azimuth/elevation with optional refraction) for the
|
|
132
|
+
Sun, Moon, and any SPK body; Moon rise/set and meridian-transit finding;
|
|
133
|
+
sub-solar and sub-observer points, day-night terminator, parallactic angle,
|
|
134
|
+
satellite visual magnitude.
|
|
135
|
+
- **Almanac:** seasons, moon phases, lunar and solar eclipses, planetary
|
|
136
|
+
conjunctions and oppositions, Sun/Moon/planet meridian transits.
|
|
137
|
+
- **Atmosphere and Earth models:** Klobuchar and NeQuick-G ionosphere, IONEX
|
|
138
|
+
slant delay, troposphere models, geoid undulation (EGM96), solid Earth and
|
|
139
|
+
pole tides, ocean tide loading, DTED terrain elevation lookup.
|
|
140
|
+
- **RF link budget:** free-space path loss, EIRP, C/N0, antenna gain, Doppler
|
|
141
|
+
shift and range rate.
|
|
142
|
+
- **Format parsing and serialization:** TLE/OMM, CCSDS (OEM/OPM/CDM), RINEX
|
|
143
|
+
observation/navigation/clock, CRINEX (Hatanaka), SP3, IONEX, ANTEX,
|
|
144
|
+
Bias-SINEX, RTCM.
|
|
124
145
|
|
|
125
146
|
The binding adds no modeling of its own: every result is exactly what the engine
|
|
126
147
|
computes. Failures surface as the JS exception you would expect (`Error` for
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neilberkman/sidereon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.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",
|