nexrad-decode 0.1.2

Decoding functions and models for NEXRAD weather radar data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//!
//! Primitive aliases matching the types referenced in the ICD.
//!

pub type Code1 = u8;
pub type Code2 = u16;
pub type Integer1 = u8;
pub type Integer2 = u16;
pub type Integer4 = u32;
pub type Real4 = f32;
pub type ScaledInteger1 = u8;
pub type ScaledInteger2 = u16;
pub type ScaledSInteger2 = i16;
pub type SInteger2 = i16;