rinex 0.22.0

RINEX file parsing, analysis and production
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::navigation::Record;
use qc_traits::Repair;

// Zero fields are invalid Ephemeris content (according to ICD specs).
// Depending on quality of publisher, it may be required to fix
// the RINex prior post processing.
fn repair_zero_mut(_rec: &mut Record) {}

pub fn repair_mut(rec: &mut Record, repair: Repair) {
    match repair {
        Repair::Zero => repair_zero_mut(rec),
    }
}