gnss-rtk 0.8.0

GNSS position solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
use log::{debug, error};

#[cfg(doc)]
use crate::prelude::TimeScale;

mod dop;
mod kalman;
mod postfit;
mod ppp_ar;

pub(crate) mod apriori;
pub(crate) mod solutions;
pub(crate) mod state;
pub(crate) mod sv;
pub(crate) mod vector;

// use std::collections::HashMap;

use nalgebra::{DMatrix, DVector, DimName, U3, U4};

use crate::{
    candidate::differences::Differences,
    navigation::{
        apriori::Apriori,
        dop::DilutionOfPrecision,
        kalman::{Kalman, KfEstimate},
        postfit::PostfitKf,
        ppp_ar::Solver,
        state::State,
        sv::SVContribution,
    },
    prelude::{
        Candidate,
        Config,
        Duration,
        Epoch,
        Error,
        Frame,
        // Method,
        UserParameters,
        // SV,
    },
    rtk::RTKBase,
};

/// [Navigation] Solver
pub(crate) struct Navigation {
    /// [Config] preset
    cfg: Config,

    /// [Frame]
    frame: Frame,

    /// Y allocation
    y_k_vec: Vec<f64>,

    /// W allocation
    w_k_vec: Vec<f64>,

    /// W
    w_k: DMatrix<f64>,

    /// G
    g_k: DMatrix<f64>,

    /// F
    f_k: DMatrix<f64>,

    /// Q
    q_k: DMatrix<f64>,

    /// X
    x_k: DVector<f64>,

    /// P
    p_k: DMatrix<f64>,

    /// Prefit
    prefit: Option<Solver>,

    /// [Kalman]
    kalman: Kalman,

    /// Postfit (Kalman)
    postfit: Option<PostfitKf>,

    /// contribution allocation
    indexes: Vec<usize>,

    /// [SVContribution]s
    pub sv: Vec<SVContribution>,

    /// Current [State]
    pub state: State,

    /// [DilutionOfPrecision]
    pub dop: DilutionOfPrecision,

    /// Null on first iter
    prev_epoch: Option<Epoch>,
}

impl Navigation {
    /// Creates new [Navigation] solver.
    ///
    /// ## Input
    /// - cfg: [Config] preset
    /// - apriori: [Apriori] input
    /// - candidates: selected [Candidate]s
    /// - size: number of proposal
    /// ## Returns
    /// - [Navigation], [Error]
    pub fn new(cfg: &Config, frame: Frame) -> Self {
        let q_k = DMatrix::<f64>::zeros(U4::USIZE, U4::USIZE);
        let mut f_k = DMatrix::<f64>::zeros(U4::USIZE, U4::USIZE);

        for i in 0..=U3::USIZE {
            f_k[(i, i)] = 1.0;
        }

        Self {
            f_k,
            q_k,
            frame,
            postfit: None,
            prev_epoch: None,
            cfg: cfg.clone(),
            prefit: None,
            state: Default::default(),
            sv: Vec::with_capacity(8),
            kalman: Kalman::new(U4::USIZE),
            y_k_vec: Vec::with_capacity(8),
            w_k_vec: Vec::with_capacity(8),
            indexes: Vec::with_capacity(8),
            x_k: DVector::zeros(U4::USIZE),
            dop: DilutionOfPrecision::default(),
            g_k: DMatrix::<f64>::zeros(U4::USIZE, U4::USIZE),
            w_k: DMatrix::<f64>::zeros(U4::USIZE, U4::USIZE),
            p_k: DMatrix::<f64>::zeros(U4::USIZE, U4::USIZE),
        }
    }

    /// Reset [Navigation] filter.
    ///
    /// To this day, it has not been demonstrated that this
    /// operation is needed by any real-world application, even
    /// real-time processing. But anyways.. this exists.
    ///
    /// After reset, the [Navigation] solver is in the same state as deployment,
    /// ready to consume a first measurement.
    pub fn reset(&mut self) {
        self.clear();
        self.kalman.reset();

        if let Some(prefit) = &mut self.prefit {
            prefit.reset();
        }

        if let Some(postfit) = &mut self.postfit {
            postfit.reset();
        }

        self.prev_epoch = None;
        self.dop = DilutionOfPrecision::default();
    }

    /// Returns clock index
    pub(crate) fn clock_index() -> usize {
        U4::USIZE - 1
    }

    /// Mutable iteration of the [Navigation] filter.
    ///
    /// ## Input
    /// - epoch: sampling [Epoch]
    /// - user: [User] profile
    /// - past_state: past [State]
    /// - candidates: proposed [Candidate]s
    /// - size: number of proposed [Cadndidate]s
    /// - uses_rtk: true when RTK mode nav is being used
    /// - double_differences: possible double [Differences]
    pub fn solve<RTK: RTKBase>(
        &mut self,
        epoch: Epoch,
        params: UserParameters,
        initial_state: &State,
        candidates: &[Candidate],
        size: usize,
        uses_rtk: bool,
        rtk_base: &RTK,
        pivot_position_ecef_m: &Option<(f64, f64, f64)>,
        double_differences: &Option<Differences>,
    ) -> Result<(), Error> {
        self.clear();

        let initial_state = initial_state.clone();

        let mut ndf = U4::USIZE;

        if uses_rtk {
            ndf -= 1;
        }

        self.state.resize_mut(ndf);
        self.kalman.resize_mut(ndf);

        self.f_k.resize_mut(ndf, ndf, 0.0);
        self.q_k.resize_mut(ndf, ndf, 0.0);
        self.x_k.resize_vertically_mut(ndf, 0.0);

        for i in 0..ndf {
            self.f_k[(i, i)] = 1.0;
        }

        let dt = if let Some(past_epoch) = self.prev_epoch {
            epoch - past_epoch
        } else {
            Duration::ZERO
        };

        // if self.cfg.method == Method::PPP {
        //     if self.prefit.is_none() {
        //         self.prefit = Some(Solver::new(self.cfg.clone(), self.frame));
        //     }
        // }

        params.q_matrix(&mut self.q_k, dt, ndf);

        if let Some(prefit) = &mut self.prefit {
            let double_diff = double_differences
                .as_ref()
                .expect("internal error: missing RTK+PPP prefit");

            let pivot_position_ecef_m = pivot_position_ecef_m.unwrap_or_else(|| {
                panic!("internal error: undefined pivot satellite position");
            });

            match prefit.run(
                epoch,
                params,
                &initial_state,
                candidates,
                size,
                rtk_base,
                pivot_position_ecef_m,
                double_diff,
            ) {
                Ok(_) => {},
                Err(e) => {
                    error!("{epoch} - ppp prefit failed with {e}");
                    return Err(Error::FloatAmbiguitiesSolving);
                },
            }
        }

        // let fixed_ambiguities = if self.cfg.method == Method::PPP {
        //     // let prefit = self
        //     //     .prefit
        //     //     .as_ref()
        //     //     .expect("internal error: missing prefit solver");

        //     // Some(prefit.fixed_amb.clone())
        //     None
        // } else {
        //     None
        // };

        if !self.kalman.initialized {
            self.kf_initialization(
                epoch,
                &initial_state,
                candidates,
                size,
                uses_rtk,
                rtk_base,
                pivot_position_ecef_m,
                double_differences,
            )?;
        } else {
            self.kf_run(
                epoch,
                candidates,
                size,
                uses_rtk,
                rtk_base,
                pivot_position_ecef_m,
                double_differences,
            )?;
        }

        if self.cfg.solver.postfit_denoising > 0.0 {
            if let Some(postfit) = &mut self.postfit {
                let prev_epoch = self
                    .prev_epoch
                    .expect("internal error: undetermined past epoch");

                let dt = epoch - prev_epoch;
                let dx = postfit.run(&self.state, dt)?;

                // update state
                self.state
                    .postfit_update_mut(self.frame, &dx.x)
                    .map_err(|e| {
                        error!("{epoch} - postfit state update failed with physical error: {e}");
                        Error::StateUpdate
                    })?;
            } else {
                self.postfit = Some(PostfitKf::new(
                    &self.state,
                    1.0 / self.cfg.solver.postfit_denoising,
                    1.0 / self.cfg.solver.postfit_denoising,
                    1.0,
                    1.0,
                ));
            }
        }

        self.prev_epoch = Some(epoch);

        Ok(())
    }

    fn clear(&mut self) {
        self.sv.clear();
        self.indexes.clear();
        self.y_k_vec.clear();
        self.w_k_vec.clear();
    }

    /// Filter first iteration.
    ///
    /// ## Input
    /// - epoch: sampling [Epoch]
    /// - user: [User] profile
    /// - past_state: past [State]
    /// - candidates: proposed [Candidate]s
    /// - size: number of proposed [Cadndidate]s
    /// - uses_rtk: true when RTK mode nav is being used
    /// - double_differences: possible double [Differences]
    /// - fixed_ambiguities: possible fixed ambiguities
    pub fn kf_initialization<RTK: RTKBase>(
        &mut self,
        t: Epoch,
        state: &State,
        candidates: &[Candidate],
        size: usize,
        uses_rtk: bool,
        rtk_base: &RTK,
        pivot_position_ecef_m: &Option<(f64, f64, f64)>,
        double_differences: &Option<Differences>,
    ) -> Result<(), Error> {
        const NB_ITER: usize = 10;

        let mut pending = state.clone();
        let mut dop = DilutionOfPrecision::default();

        let (base_x0, base_y0, base_z0) = rtk_base.reference_position_ecef_m(t);

        // measurements
        for i in 0..size {
            let mut contrib = SVContribution::default();

            contrib.sv = candidates[i].sv;

            let position_m = pending.to_position_ecef_m();

            let vec = if uses_rtk {
                let double_differences = double_differences
                    .as_ref()
                    .expect("internal error: invalid rtk measurement/post fit");

                // let fixed_amb = if self.cfg.method == Method::PPP {
                //     let fixed_ambiguities = fixed_ambiguities
                //         .as_ref()
                //         .expect("internal error: missing PPP prefit");

                //     fixed_ambiguities.get(&candidates[i].sv)
                // } else {
                //     None
                // };

                match candidates[i].rtk_vector_contribution(
                    t,
                    false,
                    &self.cfg,
                    double_differences,
                    &mut contrib,
                ) {
                    Ok(vec) => Some(vec),
                    Err(e) => {
                        error!("{}({}) - rtk measurement error: {}", t, candidates[i].sv, e);
                        None
                    },
                }
            } else {
                match candidates[i].ppp_vector_contribution(
                    &self.cfg,
                    false,
                    position_m,
                    &mut contrib,
                ) {
                    Ok(vec) => Some(vec),
                    Err(e) => {
                        error!("{}({}) - ppp measurement error: {}", t, candidates[i].sv, e);
                        None
                    },
                }
            };

            if vec.is_none() {
                continue;
            }

            let vec = vec.unwrap();

            self.y_k_vec.push(vec.row_1);
            self.w_k_vec.push(1.0); // TODO improve model
            self.indexes.push(i);
            self.sv.push(contrib);
        }

        let y_len = self.indexes.len();

        if y_len < U4::USIZE {
            return Err(Error::MatrixMinimalDimension);
        }

        let mut ndf = U4::USIZE;

        if uses_rtk {
            ndf -= 1;
        }

        self.g_k.resize_mut(y_len, ndf, 0.0);

        // run
        for ith in 0..NB_ITER {
            let y_len = self.y_k_vec.len();

            // Form W
            self.w_k.resize_mut(y_len, y_len, 0.0);

            for i in 0..y_len {
                self.w_k[(i, i)] = 1.0 / self.w_k_vec[i];
            }

            let y_k = DVector::from_row_slice(&self.y_k_vec); // TODO malloc
            debug!("(i={ith}) Y: {y_k}");

            // Form G
            for (i, index) in self.indexes.iter().enumerate() {
                let position_m = pending.to_position_ecef_m();

                let (dx, dy, dz) = if uses_rtk {
                    let pivot_position_ecef_m = pivot_position_ecef_m.unwrap_or_else(|| {
                        panic!("internal error: undefined pivot satellite position");
                    });

                    candidates[*index].rtk_matrix_contribution(position_m, pivot_position_ecef_m)
                } else {
                    candidates[*index].ppp_matrix_contribution(&self.cfg, position_m)
                };

                self.g_k[(i, 0)] = dx;
                self.g_k[(i, 1)] = dy;
                self.g_k[(i, 2)] = dz;

                if !uses_rtk {
                    self.g_k[(i, Self::clock_index())] = 1.0;
                }
            }

            // run
            let gt = self.g_k.transpose();
            let gt_g = gt.clone() * self.g_k.clone();
            let gt_w = gt.clone() * self.w_k.clone();
            let gt_w_g = gt_w * self.g_k.clone();
            let gt_w_g_inv = gt_w_g.try_inverse().ok_or(Error::MatrixInversion)?;
            let gt_w_g_inv_gt = gt_w_g_inv.clone() * gt.clone();
            let gt_w_g_inv_gt_w = gt_w_g_inv_gt * self.w_k.clone();

            self.x_k = gt_w_g_inv_gt_w * y_k.clone();
            self.p_k = gt_w_g_inv.clone();

            if uses_rtk {
                let position_ecef_m = pending.to_position_ecef_m();

                let (baseline_dx, baseline_dy, baseline_dz) = (
                    position_ecef_m[0] - base_x0,
                    position_ecef_m[1] - base_y0,
                    position_ecef_m[2] - base_z0,
                );

                self.x_k[0] -= baseline_dx;
                self.x_k[1] -= baseline_dy;
                self.x_k[2] -= baseline_dz;
            }

            debug!("(i={}) dx={}", ith, self.x_k);

            let (dx, dy, dz) = (self.x_k[0], self.x_k[1], self.x_k[2]);

            pending
                .spatial_correction_mut(self.frame, (dx, dy, dz))
                .map_err(|e| {
                    error!("{t} - state update failed with physical error: {e}");
                    Error::StateUpdate
                })?;

            if !uses_rtk {
                pending.temporal_correction_mut(self.x_k[3]);
            }

            let gt_g_inv = gt_g.try_inverse().ok_or(Error::MatrixInversion)?;

            // update latest DoP
            dop = DilutionOfPrecision::new(&pending, gt_g_inv);

            debug!("(i={ith}) {t} - pending state {pending}");

            // models update
            self.y_k_vec.clear();
            self.w_k_vec.clear();

            self.indexes.retain(|i| {
                let position_m = pending.to_position_ecef_m();

                let mut unused = SVContribution::default();

                let vec = if uses_rtk {
                    let double_differences = double_differences
                        .as_ref()
                        .expect("internal error: invalid rtk measurement/post fit");

                    // let fixed_amb = if self.cfg.method == Method::PPP {
                    //     let fixed_ambiguities = fixed_ambiguities
                    //         .as_ref()
                    //         .expect("internal error: missing PPP prefit");

                    //     fixed_ambiguities.get(&candidates[*i].sv)
                    // } else {
                    //     None
                    // };

                    match candidates[*i].rtk_vector_contribution(
                        t,
                        false,
                        &self.cfg,
                        double_differences,
                        &mut unused,
                    ) {
                        Ok(vec) => Some(vec),
                        Err(e) => {
                            error!(
                                "{}({}) - rtk measurement error: {}",
                                t, candidates[*i].sv, e
                            );
                            None
                        },
                    }
                } else {
                    match candidates[*i].ppp_vector_contribution(
                        &self.cfg,
                        false,
                        position_m,
                        &mut unused,
                    ) {
                        Ok(vec) => Some(vec),
                        Err(e) => {
                            error!(
                                "{}({}) - ppp measurement error: {}",
                                t, candidates[*i].sv, e
                            );
                            None
                        },
                    }
                };

                if let Some(vec) = vec {
                    self.y_k_vec.push(vec.row_1);
                    self.w_k_vec.push(1.0); // TODO improve model
                    true
                } else {
                    false
                }
            });
        }

        // validation
        self.state_validation(&dop)?;

        let initial_estimate = KfEstimate::new(&self.x_k, &self.p_k);

        self.kalman
            .initialize(&self.f_k, self.q_k.clone(), initial_estimate);

        self.state = pending;
        self.dop = dop;

        debug!("{} - new state {}", t, self.state);
        debug!("{} - gdop={} tdop={}", t, self.dop.gdop, self.dop.tdop);

        Ok(())
    }

    /// [Kalman] filter run
    ///
    /// ## Input
    /// - epoch: sampling [Epoch]
    /// - user: [User] profile
    /// - past_state: past [State]
    /// - candidates: proposed [Candidate]s
    /// - size: number of proposed [Cadndidate]s
    /// - uses_rtk: true when RTK mode nav is being used
    /// - double_differences: possible double [Differences]
    pub fn kf_run<RTK: RTKBase>(
        &mut self,
        t: Epoch,
        candidates: &[Candidate],
        size: usize,
        uses_rtk: bool,
        rtk_base: &RTK,
        pivot_position_ecef_m: &Option<(f64, f64, f64)>,
        double_differences: &Option<Differences>,
    ) -> Result<(), Error> {
        let mut pending = self.state.clone();

        let (base_x0, base_y0, base_z0) = rtk_base.reference_position_ecef_m(t);

        // measurement
        for i in 0..size {
            let mut contrib = SVContribution::default();

            contrib.sv = candidates[i].sv;

            let pos_m = pending.to_position_ecef_m();

            let vec = if uses_rtk {
                let double_differences = double_differences
                    .as_ref()
                    .expect("internal error: invalid rtk measurement/post fit");

                // let fixed_amb = if self.cfg.method == Method::PPP {
                //     // let fixed_ambiguities = fixed_ambiguities
                //     //     .as_ref()
                //     //     .expect("internal error: missing PPP prefit");

                //     // fixed_ambiguities.get(&candidates[i].sv)
                //     None
                // } else {
                //     None
                // };

                match candidates[i].rtk_vector_contribution(
                    t,
                    false,
                    &self.cfg,
                    double_differences,
                    &mut contrib,
                ) {
                    Ok(vec) => Some(vec),
                    Err(e) => {
                        error!("{}({}) - rtk measurement error: {}", t, candidates[i].sv, e);
                        None
                    },
                }
            } else {
                match candidates[i].ppp_vector_contribution(&self.cfg, false, pos_m, &mut contrib) {
                    Ok(vec) => Some(vec),
                    Err(e) => {
                        error!("{}({}) - ppp measurement error: {}", t, candidates[i].sv, e);
                        None
                    },
                }
            };

            if let Some(vec) = vec {
                self.y_k_vec.push(vec.row_1);
                self.w_k_vec.push(1.0); // TODO improve model
                self.indexes.push(i);
                self.sv.push(contrib);
            } else {
                error!("{}({}) - cannot contribute", t, candidates[i].sv);
            }
        }

        let y_len = self.y_k_vec.len();

        if y_len < U4::USIZE {
            return Err(Error::MatrixMinimalDimension);
        }

        let y_k = DVector::from_row_slice(&self.y_k_vec); // TODO malloc
        debug!("Y: {y_k}");

        self.w_k.resize_mut(y_len, y_len, 0.0);

        let mut ndf = U4::USIZE;

        if uses_rtk {
            ndf -= 1;
        }

        self.g_k.resize_mut(y_len, ndf, 0.0);

        for i in 0..y_len {
            self.w_k[(i, i)] = 1.0 / self.w_k_vec[i];
        }

        // Form G
        for (i, index) in self.indexes.iter().enumerate() {
            let position_m = pending.to_position_ecef_m();

            let (dx, dy, dz) = if uses_rtk {
                let pivot_position_ecef_m = pivot_position_ecef_m.unwrap_or_else(|| {
                    panic!("internal error: undefined pivot satellite position");
                });

                candidates[*index].rtk_matrix_contribution(position_m, pivot_position_ecef_m)
            } else {
                candidates[*index].ppp_matrix_contribution(&self.cfg, position_m)
            };

            self.g_k[(i, 0)] = dx;
            self.g_k[(i, 1)] = dy;
            self.g_k[(i, 2)] = dz;

            if !uses_rtk {
                self.g_k[(i, Self::clock_index())] = 1.0;
            }
        }

        let estimate = self
            .kalman
            .run(&self.f_k, &self.g_k, &self.w_k, &self.q_k, &y_k)?;

        debug!("state correction: dx={}", estimate.x);

        let ndf = estimate.x.nrows();

        for i in 0..ndf {
            self.x_k[i] = estimate.x[i];
        }

        if uses_rtk {
            let position_ecef_m = pending.to_position_ecef_m();

            let (baseline_dx, baseline_dy, baseline_dz) = (
                position_ecef_m[0] - base_x0,
                position_ecef_m[1] - base_y0,
                position_ecef_m[2] - base_z0,
            );

            self.x_k[0] -= baseline_dx;
            self.x_k[1] -= baseline_dy;
            self.x_k[2] -= baseline_dz;
        }

        let (dx, dy, dz) = (self.x_k[0], self.x_k[1], self.x_k[2]);

        pending
            .spatial_correction_mut(self.frame, (dx, dy, dz))
            .map_err(|e| {
                error!("{t} - state update failed with physical error: {e}");
                Error::StateUpdate
            })?;

        if !uses_rtk {
            pending.temporal_correction_mut(self.x_k[3]);
        }

        let gt_g_inv = (self.g_k.transpose() * self.g_k.clone())
            .try_inverse()
            .ok_or(Error::MatrixInversion)?;

        // update
        let dop = DilutionOfPrecision::new(&pending, gt_g_inv);

        self.state_validation(&dop)?;

        self.dop = dop;
        self.state = pending.clone();

        debug!("{t} - new state {pending}");
        debug!("{} - gdop={} tdop={}", t, self.dop.gdop, self.dop.tdop);

        Ok(())
    }

    /// Validate pending [State]
    fn state_validation(&self, dop: &DilutionOfPrecision) -> Result<(), Error> {
        if dop.gdop > self.cfg.solver.max_gdop {
            return Err(Error::MaxGdopExceeded);
        }
        Ok(())
    }

    /// True if this filter is initialized
    pub fn is_initialized(&self) -> bool {
        self.kalman.initialized
    }
}

#[cfg(test)]
mod test {
    use crate::navigation::{DilutionOfPrecision, Navigation, State};
    use nalgebra::{DMatrix, DVector};

    #[test]
    fn navigation_dimensions_clock_index() {
        assert_eq!(Navigation::clock_index(), 3, "invalid clock index for U4");
    }

    #[test]
    fn dilution_of_navigation_precision() {
        let state = State::default();
        let matrix = DMatrix::from_diagonal(&DVector::from_row_slice(&[1.0, 2.0, 3.0, 4.0]));
        let dop = DilutionOfPrecision::new(&state, matrix);
        assert_eq!(dop.gdop, (1.0_f64 + 2.0_f64 + 3.0_f64 + 4.0_f64).sqrt());
        assert_eq!(dop.tdop, 2.0);
    }
}