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
#![warn(missing_docs)]
//! Meteorological constants and formulas.
//!
//! I investigated using some sort of dimensional analysis via types with a crate like [uom][uom]
//! or [dimensioned][dimensioned]. However after experimentation, neither of these work well for a
//! library. Choosing to use one would force that library on the users of this library. In the
//! future I may make a feature to use one or the other of these crates.
//!
//! [uom]: https://crates.io/crates/uom
//! [dimensioned]: https://crates.io/crates/dimensioned

//
// API
//

pub mod constants;
pub use constants::*;

mod functions;
pub use functions::*;

mod error;
pub use error::*;

//
// Internal use only
//

extern crate failure;
#[macro_use]
extern crate failure_derive;