1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
mod area; mod climbs; mod elevation; mod extrema; #[cfg(test)] mod helper; mod location; mod simplify; mod trace; #[cfg(feature = "wasm")] mod wasm; pub use area::Area; pub use climbs::ClimbStats; pub use elevation::{Elevation, GainLoss}; pub use location::Location; pub use trace::Trace; #[cfg(feature = "wasm")] pub use wasm::build_trace as build_wasm_trace; pub fn build_trace(locations: &[Location]) -> Trace { Trace::new(locations) }