@neilberkman/sidereon 0.10.0 → 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 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, batch
110
- constellation propagation, pass prediction, look angles, coverage.
111
- - **GNSS positioning:** SPP, RTK (float/fixed), PPP (float/fixed), DGNSS, RAIM/FDE,
112
- DOP, velocity.
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
- JPL SPK (DAF/.bsp) kernels, scale-aware time (`Instant` with GMST/GAST and
115
- resolved TT/UT1/TDB), Earth orientation parameters.
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
- look angles, eclipse and shadow geometry, conjunction screening with collision
118
- probability, initial orbit determination, orbital elements.
119
- - **Atmosphere:** Klobuchar and NeQuick-G ionosphere, IONEX slant delay,
120
- troposphere models.
121
- - **RF link budget:** free-space path loss, EIRP, C/N0, antenna gain.
122
- - **Format parsing and serialization:** TLE/OMM, CCSDS, RINEX, CRINEX (Hatanaka),
123
- SP3, IONEX, ANTEX, RTCM.
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.10.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",