@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.
@@ -233,6 +233,19 @@ export class AtmosphereDensity {
233
233
  readonly temperatureK: number;
234
234
  }
235
235
 
236
+ export class BiasSet {
237
+ private constructor();
238
+ free(): void;
239
+ [Symbol.dispose](): void;
240
+ codeBiasModelM(sat: string, used_obs1: string, used_obs2: string, freq1_hz: number, freq2_hz: number, glonass_channel: number | null | undefined, clock_ref_obs1: string, clock_ref_obs2: string, epoch_j2000_s: number, time_scale?: string | null): number | undefined;
241
+ codeDsbSeconds(sat: string, obs1: string, obs2: string, epoch_j2000_s: number, time_scale?: string | null): number | undefined;
242
+ codeOsbSeconds(sat: string, obs: string, epoch_j2000_s: number, time_scale?: string | null): number | undefined;
243
+ phaseOsbCycles(sat: string, obs: string, epoch_j2000_s: number, time_scale?: string | null): number | undefined;
244
+ readonly recordCount: number;
245
+ readonly records: any;
246
+ readonly skippedRecords: number;
247
+ }
248
+
236
249
  /**
237
250
  * A parsed broadcast ephemeris store from a RINEX NAV file. `records` are the
238
251
  * usable GPS/Galileo/BeiDou records selected by the core default SPP policy.
@@ -1299,6 +1312,27 @@ export class DopplerShift {
1299
1312
  readonly rangeRateKmS: number;
1300
1313
  }
1301
1314
 
1315
+ export class DragForce {
1316
+ private constructor();
1317
+ free(): void;
1318
+ [Symbol.dispose](): void;
1319
+ acceleration(epoch_s: number, position_km: Float64Array, velocity_km_s: Float64Array): Float64Array;
1320
+ static fromAreaMass(cd: number, area_m2: number, mass_kg: number, space_weather: SpaceWeather, cutoff_altitude_km?: number | null): DragForce;
1321
+ static fromBallisticCoefficient(bc_kg_m2: number, space_weather: SpaceWeather, cutoff_altitude_km?: number | null): DragForce;
1322
+ static fromBcFactor(bc_factor_m2_kg: number, space_weather: SpaceWeather, cutoff_altitude_km?: number | null): DragForce;
1323
+ readonly bcFactorM2Kg: number;
1324
+ readonly cutoffAltitudeKm: number;
1325
+ readonly spaceWeather: SpaceWeather;
1326
+ }
1327
+
1328
+ export class DtedTerrain {
1329
+ free(): void;
1330
+ [Symbol.dispose](): void;
1331
+ heightM(longitude_deg: number, latitude_deg: number): number;
1332
+ heightMWithOptions(longitude_deg: number, latitude_deg: number, options: any): number;
1333
+ constructor(root: string);
1334
+ }
1335
+
1302
1336
  /**
1303
1337
  * Orthonormal encounter frame built from two relative states.
1304
1338
  */
@@ -3978,6 +4012,11 @@ export class ReducedOrbitState {
3978
4012
  readonly velocityMS: Float64Array;
3979
4013
  }
3980
4014
 
4015
+ export enum RetrogradeFactor {
4016
+ Prograde = 0,
4017
+ Retrograde = 1,
4018
+ }
4019
+
3981
4020
  /**
3982
4021
  * A parsed RINEX clock product with satellite clock-bias interpolation.
3983
4022
  */
@@ -4168,6 +4207,15 @@ export class SatelliteVector {
4168
4207
  readonly values: Float64Array;
4169
4208
  }
4170
4209
 
4210
+ export class SbasCorrectionStore {
4211
+ free(): void;
4212
+ [Symbol.dispose](): void;
4213
+ ingest(bytes: Uint8Array, form: string | null | undefined, geo: string, week: number, tow_s: number, time_scale?: string | null): void;
4214
+ ionoSlantDelayM(geo: string, receiver_lat_rad: number, receiver_lon_rad: number, receiver_height_m: number, elevation_rad: number, azimuth_rad: number, frequency_hz: number): number | undefined;
4215
+ constructor();
4216
+ readyGeos(t_j2000_s: number): string[];
4217
+ }
4218
+
4171
4219
  /**
4172
4220
  * Per-constellation single-frequency pseudorange code-selection policy. Build
4173
4221
  * with `new SignalPolicy()` then chain `.withSystem(system, codes)`, or use
@@ -4374,6 +4422,13 @@ export class Sp3 {
4374
4422
  * or failed. Delegates to the serial reference batch kernel.
4375
4423
  */
4376
4424
  solveSppBatch(epochs: any, options: any): SppBatchSolution;
4425
+ /**
4426
+ * Run the core robust-reweighted SPP driver under the RAIM/FDE exclusion loop.
4427
+ *
4428
+ * `request` is the FDE request with a `robust` object. The implementation
4429
+ * delegates to `sidereon_core::quality::spp_robust_fde_driver`.
4430
+ */
4431
+ sppRobustFdeDriver(request: any): FdeSolution;
4377
4432
  /**
4378
4433
  * The exact parsed state of `satellite` at record `epochIndex` (no
4379
4434
  * interpolation). Throws a `RangeError` past the last epoch and a
@@ -4516,7 +4571,7 @@ export class Sp3MergeReport {
4516
4571
  [Symbol.dispose](): void;
4517
4572
  /**
4518
4573
  * Per-(epoch, satellite) agreement statistics for every accepted cell, in
4519
- * output (epoch, then satellite) order one entry per cell written to the
4574
+ * output (epoch, then satellite) order, one entry per cell written to the
4520
4575
  * merged product.
4521
4576
  */
4522
4577
  readonly agreement: Sp3AgreementMetric[];
@@ -4619,6 +4674,15 @@ export class Sp3State {
4619
4674
  readonly velocityMS: Float64Array | undefined;
4620
4675
  }
4621
4676
 
4677
+ export class SpaceWeather {
4678
+ free(): void;
4679
+ [Symbol.dispose](): void;
4680
+ constructor(f107?: number | null, f107a?: number | null, ap?: number | null);
4681
+ readonly ap: number;
4682
+ readonly f107: number;
4683
+ readonly f107a: number;
4684
+ }
4685
+
4622
4686
  /**
4623
4687
  * Canonical quiet-Sun space-weather indices for NRLMSISE-00, mirrored from the
4624
4688
  * core so a JS caller can pass moderate-activity defaults to [`atmosphereDensity`]
@@ -4847,6 +4911,30 @@ export class SppSolution {
4847
4911
  readonly zM: number;
4848
4912
  }
4849
4913
 
4914
+ export class SsrCorrectionStore {
4915
+ free(): void;
4916
+ [Symbol.dispose](): void;
4917
+ clock(sat: string): any;
4918
+ ingest(bytes: Uint8Array, framed: boolean | null | undefined, week: number, tow_s: number, time_scale?: string | null): void;
4919
+ constructor();
4920
+ orbit(sat: string): any;
4921
+ uraIndex(sat: string): number | undefined;
4922
+ }
4923
+
4924
+ /**
4925
+ * Source stream for engineering-unit SSR corrections.
4926
+ */
4927
+ export enum SsrSource {
4928
+ /**
4929
+ * RTCM SSR messages.
4930
+ */
4931
+ RtcmSsr = 0,
4932
+ /**
4933
+ * Galileo High Accuracy Service messages.
4934
+ */
4935
+ GalileoHas = 1,
4936
+ }
4937
+
4850
4938
  /**
4851
4939
  * A batch of Sun and Moon positions, one per epoch: flat row-major `sun` and
4852
4940
  * `moon` `Float64Array`s of length `3 * epochCount`, in **metres**.
@@ -5243,6 +5331,16 @@ export class ZenithDelay {
5243
5331
  */
5244
5332
  export function acquire(samples: Float64Array, prn: bigint, options: any): AcquisitionResult;
5245
5333
 
5334
+ /**
5335
+ * On-sky angle in degrees between two direction vectors.
5336
+ */
5337
+ export function angularSeparation(a: Float64Array, b: Float64Array): number;
5338
+
5339
+ /**
5340
+ * On-sky angle in degrees between two `(lonDeg, latDeg)` direction pairs.
5341
+ */
5342
+ export function angularSeparationCoords(a_lon_deg: number, a_lat_deg: number, b_lon_deg: number, b_lat_deg: number): number;
5343
+
5246
5344
  /**
5247
5345
  * Evaluate NRLMSISE-00 neutral-atmosphere density and temperature.
5248
5346
  *
@@ -5262,6 +5360,16 @@ export function atmosphereDensity(lat_deg: number, lon_deg: number, alt_km: numb
5262
5360
  */
5263
5361
  export function atmosphereSpaceWeatherDefaults(): SpaceWeatherDefaults;
5264
5362
 
5363
+ /**
5364
+ * Solar beta angle in degrees from orbit normal and Sun vectors.
5365
+ */
5366
+ export function betaAngle(orbit_normal: Float64Array, sun: Float64Array): number;
5367
+
5368
+ /**
5369
+ * Solar beta angle in degrees from an inertial state and Sun vector.
5370
+ */
5371
+ export function betaAngleFromState(r: Float64Array, v: Float64Array, sun: Float64Array): number;
5372
+
5265
5373
  /**
5266
5374
  * Resolve integer ambiguities with a bounded lattice search.
5267
5375
  *
@@ -5312,6 +5420,10 @@ export function civilToJ2000Seconds(year: number, month: number, day: number, ho
5312
5420
  */
5313
5421
  export function cn0(eirp_dbw: number, fspl_db: number, receiver_gt_dbk: number, other_losses_db?: number | null): number;
5314
5422
 
5423
+ export function coe2eq(coe: any, factor?: RetrogradeFactor | null): any;
5424
+
5425
+ export function coe2mee(coe: any, factor?: RetrogradeFactor | null): any;
5426
+
5315
5427
  /**
5316
5428
  * Convert classical orbital elements to an inertial Cartesian state.
5317
5429
  *
@@ -5381,6 +5493,10 @@ export function covarianceIsSymmetric(covariance_km2: Float64Array): boolean;
5381
5493
  */
5382
5494
  export function coverageLookAngles(satellites: Tle[], stations: GroundStation[], epoch_unix_us: bigint): CoverageGrid;
5383
5495
 
5496
+ export function cwPropagate(rel: any, n_rad_s: number, dt_s: number): any;
5497
+
5498
+ export function cwStm(n_rad_s: number, dt_s: number): Float64Array;
5499
+
5384
5500
  /**
5385
5501
  * Decode Compact RINEX (Hatanaka) bytes into plain RINEX OBS text. Throws a
5386
5502
  * `TypeError` on non-UTF-8 input and an `Error` on a decode failure.
@@ -5424,6 +5540,10 @@ export function decodeRtcmFrame(bytes: Uint8Array): any;
5424
5540
  */
5425
5541
  export function decodeRtcmMessage(body: Uint8Array): any;
5426
5542
 
5543
+ export function decodeSbasMessage(bytes: Uint8Array, form?: string | null): any;
5544
+
5545
+ export function decodeSsr(bytes: Uint8Array, framed?: boolean | null): any;
5546
+
5427
5547
  /**
5428
5548
  * Standard dual-frequency ionosphere-free carrier pair for a constellation.
5429
5549
  */
@@ -5508,6 +5628,10 @@ export function dopplerToRangeRate(doppler_hz: number, carrier_hz: number): numb
5508
5628
  */
5509
5629
  export function earthAngularRadius(satellite_position_km: Float64Array): Float64Array;
5510
5630
 
5631
+ export function eccentricToMean(eccentric_anomaly_rad: number, eccentricity: number): number;
5632
+
5633
+ export function eccentricToTrue(eccentric_anomaly_rad: number, eccentricity: number): number;
5634
+
5511
5635
  /**
5512
5636
  * Convert a batch of ITRS (ECEF) positions to geodetic coordinates.
5513
5637
  *
@@ -5611,6 +5735,10 @@ export function encounterFrame(position1_km: Float64Array, velocity1_km_s: Float
5611
5735
  */
5612
5736
  export function encounterPlaneCovariance(frame: EncounterFrame, covariance_km2: Float64Array): Float64Array;
5613
5737
 
5738
+ export function eq2coe(eq: any): any;
5739
+
5740
+ export function eq2rv(eq: any, mu_km3_s2: number): any;
5741
+
5614
5742
  /**
5615
5743
  * Confidence ellipse from an arbitrary 2x2 covariance block.
5616
5744
  *
@@ -5622,6 +5750,8 @@ export function encounterPlaneCovariance(frame: EncounterFrame, covariance_km2:
5622
5750
  */
5623
5751
  export function errorEllipse2(covariance: Float64Array, confidence: number): ErrorEllipse2;
5624
5752
 
5753
+ export function estimateDecay(drag: DragForce, request: any): any;
5754
+
5625
5755
  /**
5626
5756
  * Find Moon elevation threshold crossings (moonrise / moonset) over a UTC
5627
5757
  * window.
@@ -5770,7 +5900,7 @@ export function fromCelestrakJson(json: string, system?: string | null): any;
5770
5900
  * skipping (rather than throwing on) entries that do not resolve.
5771
5901
  *
5772
5902
  * The lenient sibling of [`fromCelestrakJson`]: feed it a raw combined CelesTrak
5773
- * `gnss` feed and it returns `{ records, skipped }` `records` is the `Record[]`
5903
+ * `gnss` feed and it returns `{ records, skipped }`. `records` is the `Record[]`
5774
5904
  * for `system` (the same shape `fromCelestrakJson` returns, sorted by
5775
5905
  * `(system, prn)`), and `skipped` is a `SkippedOmm[]` of the entries whose
5776
5906
  * `OBJECT_NAME` did not resolve to a PRN for `system` (another constellation's
@@ -5894,7 +6024,7 @@ export function gnssPasses(sp3: Sp3, station_ecef_m: Float64Array, start_j2000_s
5894
6024
  export function gnssSp3Id(system: string, prn: number): string;
5895
6025
 
5896
6026
  /**
5897
- * Stable lower-case display label for a constellation, e.g. `"gps"`.
6027
+ * Canonical core display label for a constellation, e.g. `"GPS"`.
5898
6028
  */
5899
6029
  export function gnssSystemLabel(system: GnssSystem): string;
5900
6030
 
@@ -6049,7 +6179,7 @@ export function kurtosis(x: Float64Array, fisher?: boolean | null, bias?: boolea
6049
6179
  * `covariance` is its `n x n` covariance as a row-major `number[][]`, and
6050
6180
  * `ratioThreshold` is the ratio-test acceptance threshold (RTKLIB's default is
6051
6181
  * `3.0`). Finds the true integer-least-squares optimum and runner-up for any
6052
- * positive-definite covariance no search box, no combinatorial blow-up.
6182
+ * positive-definite covariance. No search box, no combinatorial blow-up.
6053
6183
  * Returns an `IlsResult`. Throws a `TypeError` on a malformed shape, a
6054
6184
  * `RangeError` on a non-finite or out-of-domain input, and an `Error` on a
6055
6185
  * singular covariance or a non-converging search.
@@ -6172,6 +6302,14 @@ export function lnavTow(bits: Uint8Array): bigint | undefined;
6172
6302
  */
6173
6303
  export function loadAntex(bytes: Uint8Array): Antex;
6174
6304
 
6305
+ export function loadBiasSinex(bytes: Uint8Array): BiasSet;
6306
+
6307
+ export function loadBiasSinexLossy(bytes: Uint8Array): BiasSet;
6308
+
6309
+ export function loadCodeDcb(bytes: Uint8Array, options: any): BiasSet;
6310
+
6311
+ export function loadCodeDcbLossy(bytes: Uint8Array, options: any): BiasSet;
6312
+
6175
6313
  /**
6176
6314
  * Alias of [`decodeCrinex`] for callers that read a file as bytes.
6177
6315
  */
@@ -6209,6 +6347,24 @@ export function loadRinexObs(bytes: Uint8Array): RinexObs;
6209
6347
  */
6210
6348
  export function loadSp3(bytes: Uint8Array): Sp3;
6211
6349
 
6350
+ export function lunarSolarEclipses(start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6351
+
6352
+ export function lunarSolarEclipsesSpk(spk: Spk, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6353
+
6354
+ export function lvlhRotation(position_km: Float64Array, velocity_km_s: Float64Array): Float64Array;
6355
+
6356
+ export function meanMotionCircular(radius_km: number): number;
6357
+
6358
+ export function meanMotionFromState(position_km: Float64Array, velocity_km_s: Float64Array): number;
6359
+
6360
+ export function meanToEccentric(mean_anomaly_rad: number, eccentricity: number): number;
6361
+
6362
+ export function meanToTrue(mean_anomaly_rad: number, eccentricity: number): number;
6363
+
6364
+ export function mee2coe(mee: any): any;
6365
+
6366
+ export function mee2rv(mee: any, mu_km3_s2: number): any;
6367
+
6212
6368
  /**
6213
6369
  * Melbourne-Wubbena combination, metres.
6214
6370
  */
@@ -6235,6 +6391,10 @@ export function mergeNavcen(records: any, statuses: any): any;
6235
6391
  */
6236
6392
  export function mergeSp3(sources: Sp3[], options: any): Sp3MergeResult;
6237
6393
 
6394
+ export function meridianTransits(body: string, station: any, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6395
+
6396
+ export function meridianTransitsSpk(spk: Spk, body: string, station: any, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6397
+
6238
6398
  /**
6239
6399
  * Mean, variance, skewness, and excess kurtosis of a residual set in one pass.
6240
6400
  *
@@ -6276,6 +6436,10 @@ export function moonElevationDeg(latitude_deg: number, longitude_deg: number, al
6276
6436
  */
6277
6437
  export function moonIllumination(latitude_deg: number, longitude_deg: number, altitude_km: number, epoch_unix_us: bigint): any;
6278
6438
 
6439
+ export function moonPhases(start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6440
+
6441
+ export function moonPhasesSpk(spk: Spk, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6442
+
6279
6443
  /**
6280
6444
  * Narrow-lane code combination, metres.
6281
6445
  */
@@ -6351,6 +6515,21 @@ export function observablesSp3(sp3: Sp3, satellite: string, receiver_ecef_m: Flo
6351
6515
  */
6352
6516
  export function observationKindLabel(kind: ObservationKind): string;
6353
6517
 
6518
+ /**
6519
+ * Observe `"sun"` or `"moon"` from a geodetic station at a UTC unix microsecond epoch.
6520
+ */
6521
+ export function observe(station: any, epoch_unix_us: bigint, target: string, options: any): any;
6522
+
6523
+ /**
6524
+ * Observe a caller-supplied SSB-centered target state using an SPK for Earth and Sun.
6525
+ */
6526
+ export function observeBarycentricState(station: any, epoch_unix_us: bigint, spk: Spk, position_km: Float64Array, velocity_km_s: Float64Array, options: any): any;
6527
+
6528
+ /**
6529
+ * Observe an SPK target body by NAIF id using default full-chain options.
6530
+ */
6531
+ export function observeSpkBody(station: any, epoch_unix_us: bigint, spk: Spk, naif_id: number): any;
6532
+
6354
6533
  /**
6355
6534
  * Ocean tide loading displacement of an ITRF station, metres (ECEF).
6356
6535
  *
@@ -6501,6 +6680,13 @@ export function phaseAngle(satellite_position_km: Float64Array, sun_position_km:
6501
6680
  */
6502
6681
  export function phaseMeters(phi_cycles: number, f_hz: number): number;
6503
6682
 
6683
+ export function planetaryEvents(spk: Spk, planet: string, kind: string, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6684
+
6685
+ /**
6686
+ * Position angle in degrees from North through East.
6687
+ */
6688
+ export function positionAngle(from_lon_deg: number, from_lat_deg: number, to_lon_deg: number, to_lat_deg: number): number;
6689
+
6504
6690
  /**
6505
6691
  * Precompute static PPP correction tables for a precise-orbit arc.
6506
6692
  *
@@ -6516,6 +6702,8 @@ export function phaseMeters(phi_cycles: number, f_hz: number): number;
6516
6702
  */
6517
6703
  export function pppCorrections(sp3: Sp3, epochs: any, receiver_ecef_m: Float64Array, options: any): any;
6518
6704
 
6705
+ export function pppCorrectionsWithCodeBias(sp3: Sp3, epochs: any, receiver_ecef_m: Float64Array, options: any, bias_set: BiasSet, code_bias: any): any;
6706
+
6519
6707
  /**
6520
6708
  * Build a sample-backed precise-ephemeris source from an array of samples.
6521
6709
  *
@@ -6581,6 +6769,8 @@ export function prepareIonosphereFreeRtkArc(epochs: any, wide_lane_cycles: any,
6581
6769
  */
6582
6770
  export function propagateBatch(satellites: Tle[], epochs_unix_us: BigInt64Array): FleetPropagation;
6583
6771
 
6772
+ export function propagateKepler(coe: any, mu_km3_s2: number, dt_s: number): any;
6773
+
6584
6774
  /**
6585
6775
  * Numerically propagate an ECI Cartesian state and sample it at a grid of
6586
6776
  * epochs.
@@ -6621,11 +6811,15 @@ export function raimFdeDesign(rows: any, options: any): any;
6621
6811
  */
6622
6812
  export function rangeRateToDoppler(range_rate_m_s: number, carrier_hz: number): number;
6623
6813
 
6814
+ export function relativeState(chief: any, deputy: any): any;
6815
+
6624
6816
  /**
6625
6817
  * Build a sampled GPS C/A code replica, an `Int8Array`.
6626
6818
  */
6627
6819
  export function replica(prn: bigint, options: any): Int8Array;
6628
6820
 
6821
+ export function ricRotation(position_km: Float64Array, velocity_km_s: Float64Array): Float64Array;
6822
+
6629
6823
  /**
6630
6824
  * RINEX observation band frequency in hertz for a system and band digit.
6631
6825
  */
@@ -6636,6 +6830,8 @@ export function rinexBandFrequencyHz(system: GnssSystem, band: string, glonass_c
6636
6830
  */
6637
6831
  export function rinexBandWavelengthM(system: GnssSystem, band: string, glonass_channel?: number | null): number | undefined;
6638
6832
 
6833
+ export function rswRotation(position_km: Float64Array, velocity_km_s: Float64Array): Float64Array;
6834
+
6639
6835
  /**
6640
6836
  * Read the 12-bit RTCM message number from a message body.
6641
6837
  *
@@ -6644,6 +6840,8 @@ export function rinexBandWavelengthM(system: GnssSystem, band: string, glonass_c
6644
6840
  */
6645
6841
  export function rtcmMessageNumber(body: Uint8Array): number;
6646
6842
 
6843
+ export function rtnRotation(position_km: Float64Array, velocity_km_s: Float64Array): Float64Array;
6844
+
6647
6845
  /**
6648
6846
  * Transform a 3x3 RTN covariance (flat row-major length 9) to ECI for the given
6649
6847
  * orbit state. Returns a flat row-major length-9 `Float64Array`.
@@ -6662,6 +6860,14 @@ export function rtnToEciCovariance(covariance_rtn: Float64Array, position_km: Fl
6662
6860
  */
6663
6861
  export function rv2coe(r: Float64Array, v: Float64Array, mu: number): any;
6664
6862
 
6863
+ export function rv2eq(r: Float64Array, v: Float64Array, mu_km3_s2: number, factor?: RetrogradeFactor | null): any;
6864
+
6865
+ export function rv2mee(r: Float64Array, v: Float64Array, mu_km3_s2: number, factor?: RetrogradeFactor | null): any;
6866
+
6867
+ export function sampleBroadcastEphemeris(broadcast: BroadcastEphemeris, satellites: string[], start_j2000_s: number, stop_j2000_s: number, step_s: number): any;
6868
+
6869
+ export function sampleSp3Ephemeris(sp3: Sp3, satellites: string[], start_j2000_s: number, stop_j2000_s: number, step_s: number): any;
6870
+
6665
6871
  /**
6666
6872
  * Apparent visual magnitude of a sunlit body from a diffuse-sphere phase law.
6667
6873
  *
@@ -6673,6 +6879,8 @@ export function rv2coe(r: Float64Array, v: Float64Array, mu: number): any;
6673
6879
  */
6674
6880
  export function satelliteVisualMagnitude(range_km: number, phase_angle_deg: number, standard_magnitude: number, reference_range_km: number): number;
6675
6881
 
6882
+ export function sbasCorrectedState(broadcast: BroadcastEphemeris, store: SbasCorrectionStore, geo: string, sat: string, t_j2000_s: number, mode?: string | null): any;
6883
+
6676
6884
  /**
6677
6885
  * Screen a primary satellite against a secondary TLE catalog for threshold TCAs.
6678
6886
  *
@@ -6694,6 +6902,10 @@ export function screenTcaCandidates(primary_line1: string, primary_line2: string
6694
6902
  */
6695
6903
  export function screenTcaConjunctions(primary_line1: string, primary_line2: string, secondaries: any, window_start_unix_micros: bigint, window_end_unix_micros: bigint, miss_distance_threshold_km: number, pc_options: any, options: any): any;
6696
6904
 
6905
+ export function seasons(start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6906
+
6907
+ export function seasonsSpk(spk: Spk, start_unix_us: bigint, end_unix_us: bigint, step_s: number, tolerance_s: number): any;
6908
+
6697
6909
  /**
6698
6910
  * Select an IONEX product usable at `requestedEpochJ2000S`, degrading to a
6699
6911
  * diurnal-shifted prior product within `policy`.
@@ -6796,6 +7008,8 @@ export function solidEarthPoleTide(station_ecef_m: Float64Array, year: number, m
6796
7008
  */
6797
7009
  export function solidEarthTide(station_ecef_m: Float64Array, year: number, month: number, day: number, fractional_hour: number, sun_ecef_m: Float64Array, moon_ecef_m: Float64Array): Float64Array;
6798
7010
 
7011
+ export function solveKepler(mean_anomaly_rad: number, eccentricity: number): any;
7012
+
6799
7013
  /**
6800
7014
  * Solve a sequence of moving-baseline RTK epochs.
6801
7015
  *
@@ -6881,6 +7095,8 @@ export function solveRtkFixed(config: any): RtkFixedSolution;
6881
7095
  */
6882
7096
  export function solveRtkFloat(config: any): RtkFloatSolution;
6883
7097
 
7098
+ export function solveSppSbas(broadcast: BroadcastEphemeris, store: SbasCorrectionStore, geo: string, request: any, mode?: string | null): SppSolution;
7099
+
6884
7100
  /**
6885
7101
  * Solve a static RTK arc with one batch float solution and one validated fixed
6886
7102
  * solution over the whole arc.
@@ -6937,6 +7153,13 @@ export function sp3PreciseEphemerisSamples(sp3: Sp3): any;
6937
7153
  */
6938
7154
  export function splitJdToJ2000Seconds(jd_whole: number, jd_fraction: number): number;
6939
7155
 
7156
+ export function ssrCorrectedState(broadcast: BroadcastEphemeris, store: SsrCorrectionStore, sat: string, t_j2000_s: number, fallback_to_broadcast?: boolean | null, allow_regional_provider?: number | null): any;
7157
+
7158
+ /**
7159
+ * Stable lower-camel-case SSR source token.
7160
+ */
7161
+ export function ssrSourceLabel(source: SsrSource): string;
7162
+
6940
7163
  /**
6941
7164
  * Sub-observer point (planetary central meridian) on a rotating body.
6942
7165
  *
@@ -7086,6 +7309,10 @@ export function tropoSlantDelay(elevation_deg: number, lat_deg: number, lon_deg:
7086
7309
  */
7087
7310
  export function tropoZenithDelay(lat_deg: number, height_m: number, met: any): ZenithDelay;
7088
7311
 
7312
+ export function trueToEccentric(true_anomaly_rad: number, eccentricity: number): number;
7313
+
7314
+ export function trueToMean(true_anomaly_rad: number, eccentricity: number): number;
7315
+
7089
7316
  /**
7090
7317
  * Provenance and coverage of the embedded UT1-UTC / delta-T (EOP) table.
7091
7318
  */