#data-transfer #data-analysis #fit #protocols #flexible #merging #reading

fit-rust

fit-rust is a Rust library designed for reading, writing, and merging FIT protocol files

9 releases

0.1.8 Dec 27, 2023
0.1.7 Dec 27, 2023
0.1.2 Nov 14, 2023

#4 in #fit

Download history 14/week @ 2024-01-05 7/week @ 2024-01-12 16/week @ 2024-02-16 40/week @ 2024-02-23 4/week @ 2024-03-01 5/week @ 2024-03-08 14/week @ 2024-03-15 42/week @ 2024-03-29 12/week @ 2024-04-05

54 downloads per month

MIT license

220KB
6.5K SLoC

fit-rust

中文

fit-rust is a Rust library designed for reading, writing, and merging Garmin Flexible and Interoperable Data Transfer (FIT) protocol files. It offers an efficient and type-safe approach to handle FIT files, suitable for sports and health data analysis and manipulation.

Features

  • Read FIT files, parsing them into Rust-friendly structures.
  • Write data to FIT files.
  • Merge data from multiple FIT files.

Installation

Add fit-rust to your Cargo project by including it in your Cargo.toml:

[dependencies]
fit-rust = "0.1"

Usage

Here are some basic examples of how to use the fit-rust library.

Reading FIT Files

use fit_rust::protocol::FitMessage;
use fit_rust::Fit;
use std::fs;

fn main() {
    let file = fs::read("tests/test.fit").unwrap();
    let fit: Fit = Fit::read(file).unwrap();
    for data in &fit.data {
        match data {
            FitMessage::Definition(msg) => {
                println!("Definition: {:?}", msg.data);
            }
            FitMessage::Data(msg) => {
                println!("Data: {:?}", msg.data);
            }
        }
    }
}

Writing FIT Files

use fit_rust::Fit;
use std::fs;

fn main() {
    let file = fs::read("tests/test.fit").unwrap();
    let fit: Fit = Fit::read(file).unwrap();
    fit.write("tests/write-test.fit").unwrap();
}

Merging FIT Files

use fit_rust::Fit;

fn main() {
    Fit::merge(
        vec![
            "tests/ride-0-2023-09-29-12-49-21.fit",
            "tests/ride-0-2023-09-29-09-41-54.fit",
        ],
        "tests/merge.fit",
    )
        .unwrap();
}

Contributing

Contributions to fit-rust are welcome. Feel free to submit Pull Requests or create Issues to discuss new features or report bugs.

License

fit-rust is released under the MIT License.

MIT License

Copyright (c) 2020 intent

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Acknowledgments

Dependencies

~2MB
~40K SLoC