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
#![warn(missing_docs)] //! Library to load, parse, validate, and iterate over [Bufkit][1] files. //! //! [1]: http://www.wdtb.noaa.gov/tools/BUFKIT/ // // API // pub use bufkit_data::{BufkitData, BufkitFile, SoundingIterator}; pub use error::*; // // Internal use only // extern crate chrono; extern crate failure; extern crate optional; extern crate sounding_analysis; extern crate sounding_base; mod bufkit_data; mod error; mod parse_util;