fit2gpx 0.6.1

.fit to .gpx converter
Documentation
//! fit2gpx
//!
//! A simple, yet powerful fit to gpx converter,
//! capable of adding elevation while conversion from `HGT` DTM data.
//!
//! Uses `rayon` for multithreaded execution.
//!
//! # Usage
//!
//! ```rust
#![doc = include_str!("../examples/demo.rs")]
//! ```

/// universal Result, but not sendable
pub type Res<T> = Result<T, Box<dyn std::error::Error>>;

#[cfg(feature = "elevation")]
pub mod elevation;
pub use fit::Fit;
pub mod fit;
mod utils;