@neilberkman/sidereon 0.11.0 → 0.12.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.
@@ -755,12 +755,34 @@ export interface RinexNavRepairOptions {
755
755
 
756
756
  /** Options accepted by `observationQc`. */
757
757
  export interface ObservationQcOptions {
758
- minSatellitesPerEpoch?: number;
759
- expectedIntervalS?: number;
760
- checkCycleSlips?: boolean;
761
- geometryFreeThresholdM?: number;
762
- melbourneWubbenaThresholdCycles?: number;
763
- gapThresholdS?: number;
758
+ intervalOverrideS?: number;
759
+ gapFactor?: number;
760
+ clockJumpThresholdS?: number;
761
+ }
762
+
763
+ /** Civil epoch used inside observation QC report rows. */
764
+ export interface ObservationQcEpochTime {
765
+ year: number;
766
+ month: number;
767
+ day: number;
768
+ hour: number;
769
+ minute: number;
770
+ second: number;
771
+ }
772
+
773
+ /** One detected gap between adjacent observation epochs. */
774
+ export interface ObservationQcDataGap {
775
+ startEpoch: ObservationQcEpochTime;
776
+ endEpoch: ObservationQcEpochTime;
777
+ nominalIntervalS: number;
778
+ observedDeltaS: number;
779
+ missingEpochs: number;
780
+ }
781
+
782
+ /** One detected receiver-clock jump. */
783
+ export interface ObservationQcClockJump {
784
+ epochIndex: number;
785
+ deltaS: number;
764
786
  }
765
787
 
766
788
  /** One satellite summary in an observation QC report. */
@@ -802,7 +824,55 @@ export interface ObservationQcSystemSignal {
802
824
  snr?: ObservationQcSnr;
803
825
  }
804
826
 
805
- /** Plain object returned by `observationQc`. */
827
+ /** Per-system cycle-slip summary in an observation QC report. */
828
+ export interface ObservationQcSystemCycleSlip {
829
+ system: string;
830
+ observations: number;
831
+ slips: number;
832
+ observationsPerSlip?: number;
833
+ }
834
+
835
+ /** Cycle-slip summary in an observation QC report. */
836
+ export interface ObservationQcCycleSlips {
837
+ observations: number;
838
+ totalSlips: number;
839
+ observationsPerSlip?: number;
840
+ bySystem: ObservationQcSystemCycleSlip[];
841
+ }
842
+
843
+ /** MP1 or MP2 multipath RMS statistics. */
844
+ export interface ObservationQcMpStats {
845
+ n: number;
846
+ rmsM: number;
847
+ }
848
+
849
+ /** Per-satellite multipath summary in an observation QC report. */
850
+ export interface ObservationQcSatelliteMultipath {
851
+ satellite: string;
852
+ mp1?: ObservationQcMpStats;
853
+ mp2?: ObservationQcMpStats;
854
+ }
855
+
856
+ /** Per-system multipath summary in an observation QC report. */
857
+ export interface ObservationQcSystemMultipath {
858
+ system: string;
859
+ mp1?: ObservationQcMpStats;
860
+ mp2?: ObservationQcMpStats;
861
+ }
862
+
863
+ /** Multipath summary in an observation QC report. */
864
+ export interface ObservationQcMultipath {
865
+ satellites: ObservationQcSatelliteMultipath[];
866
+ systems: ObservationQcSystemMultipath[];
867
+ }
868
+
869
+ /** Non-fatal observation QC note. */
870
+ export interface ObservationQcNote {
871
+ kind: string;
872
+ epochIndex?: number;
873
+ }
874
+
875
+ /** Report object returned by `observationQc`. */
806
876
  export interface ObservationQcReport {
807
877
  totalEpochRecords: number;
808
878
  observationEpochs: number;
@@ -812,11 +882,17 @@ export interface ObservationQcReport {
812
882
  intervalS?: number;
813
883
  intervalSource?: string;
814
884
  missingEpochs: number;
815
- dataGaps: unknown[];
885
+ dataGaps: ObservationQcDataGap[];
886
+ clockJumps: ObservationQcClockJump[];
887
+ cycleSlips: ObservationQcCycleSlips;
888
+ multipath: ObservationQcMultipath;
816
889
  satellites: ObservationQcSatellite[];
817
890
  satelliteSignals: ObservationQcSatelliteSignal[];
818
891
  systemSignals: ObservationQcSystemSignal[];
819
- notes: string[];
892
+ notes: ObservationQcNote[];
893
+ renderText(): string;
894
+ renderHtml(): string;
895
+ toJson(): string;
820
896
  }
821
897
 
822
898
  // --- RTK baseline solving ---------------------------------------------------