ionex 0.0.1-alpha

IONEX (Ionosphere Maps) parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::prelude::{Epoch, QuantizedCoordinates};

/// [Key] allows efficient IONEX data storage.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Key {
    /// [Epoch] of the attached TEC estimation.
    pub epoch: Epoch,

    /// [QuantizedCoordinates] of the attached TEC estimate.
    pub coordinates: QuantizedCoordinates,
}