1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#![warn(missing_docs)]
//! Functions and data types for analyzing soundings from the
//! [sounding-base](https://github.com/rnleach/sounding-base.git) crate.

//
// API
//
pub mod error;
pub use error::*;

pub use interpolation::linear_interpolate;

pub mod layers;
pub use layers::Layer;

pub mod levels;

pub mod parcel;
pub use parcel::Parcel;

pub mod profile;

//
// Internal use only
//

// 3rd party libs
extern crate failure;
#[macro_use]
extern crate failure_derive;
extern crate smallvec;

// framework libs
extern crate metfor;
extern crate sounding_base;

// dev only libs
#[cfg(test)]
extern crate sounding_validate;

// Modules
mod interpolation;
#[cfg(test)]
mod test_data;

// Internal use only
pub(crate) const VEC_SIZE: usize = 2;