nexrad-model 0.1.0

Common model for NEXRAD weather radar data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//!
//! Contains the Result and Error types for NEXRAD model operations.
//!

use thiserror::Error as ThisError;

pub type Result<T> = std::result::Result<T, Error>;

#[derive(ThisError, Debug)]
pub enum Error {
    #[error("two sweeps' elevation numbers do not match")]
    ElevationMismatchError,
}