sounding-base 0.3.0

Data formats and algorithms for atmospheric soundings. The base crate is meant to be a common base for other crates to build on. These crates may be for managing a data-store, displaying data, or saving and loading files.
Documentation
#![warn(missing_docs)]
//! Library to represent an atmospheric sounding.

extern crate chrono;
extern crate smallvec;

extern crate metfor;

pub mod sounding;
pub use sounding::{DataRow, Index, Profile, Sounding, StationInfo, Surface};