sinex 0.2.0

Package to parse and analyze SINEX data
Documentation
#[derive(Debug, Clone)]
pub struct Description {
    /// Sampling rate [s]
    pub data_rate: Option<u32>,
    /// Sampling rate for all trop estimates [s]
    pub tropo_rate: Option<u32>,
    /// TODO
    pub elevation_cutoff_angle: u32,
    /// Tropospheric Hydrostatic and Wet Mapping
    /// functions used
    pub mapping_functions: Vec<String>,
    /// 
    pub solution_fields: Vec<String>,
}

impl Default for Description {
    fn default() -> Self {
        Self {
            data_rate: None,
            tropo_rate: None,
            elevation_cutoff_angle: 0,
            mapping_functions: Vec::new(),
            solution_fields: Vec::new(),
        }
    }
}

impl Description {
    pub fn with_sampling_interval (&self, interval: u32) -> Self {
        let mut s = self.clone();
        s.data_rate = Some(interval);
        s
    }
    pub fn with_tropo_sampling (&self, interval: u32) -> Self {
        let mut s = self.clone();
        s.tropo_rate = Some(interval);
        s
    }
    pub fn with_elevation_angle (&self, angle: u32) -> Self {
        let mut s = self.clone();
        s.elevation_cutoff_angle = angle;
        s
    }
    pub fn with_mapping_function (&self, func: &str) -> Self {
        let mut s = self.clone();
        s.mapping_functions.push(func.to_string());
        s
    }
    pub fn with_solution_field (&self, field: &str) -> Self {
        let mut s = self.clone();
        s.solution_fields.push(field.to_string());
        s
    }
}