Skip to content

EopParseError

Defined in: error.rs:7

pub enum EopParseError {
InvalidLine { line: usize, reason: &'static str },
InvalidNumber { line: usize, column: &'static str, value: String },
Empty,
NonMonotonicMjd { line: usize, previous: f64, current: f64 },
}

Error during EOP data file parsing.

line: usize reason: &‘static str

A line could not be parsed.


line: usize column: &‘static str value: String

A numeric field could not be parsed.


The file contained no valid entries.


line: usize previous: f64 current: f64

MJD values are not monotonically increasing.