Crates.io | emotibit-data |
lib.rs | emotibit-data |
version | 0.1.1 |
source | src |
created_at | 2022-11-13 20:31:40.407588 |
updated_at | 2022-11-14 19:45:14.429588 |
description | Emotibit DataParser Library |
homepage | |
repository | https://github.com/lonesometraveler/emotibit-data |
max_upload_size | |
id | 714476 |
size | 50,905 |
A Rust library for parsing raw EmotiBit data.
EmotiBit is a wearable sensor module for capturing high-quality emotional, physiological, and movement data. Easy-to-use and scientifically-validated sensing lets you enjoy wireless data streaming to any platform or direct data recording to the built-in SD card.
Add the following line to your Cargo.toml file.
emotibit-data = "0.1"
Transform a single CSV line to DataPacket
.
use emotibit_data::types::DataPacket;
fn main() {
let csv_str = "1126349,49106,10,PI,1,100,156593,156471,156372,156300,156205,156136,156130,156103,156051,156103";
match TryInto::<DataPacket>::try_into(csv_str) {
Ok(packet) => println!("{:?}", packet),
Err(e) => println!("{:?}", e),
}
}
Read a CSV file and populate DataPacket
s.
use anyhow::Result;
use emotibit_data::{parser, types::DataPacket};
fn main() {
let file_path = "raw_data.csv";
let result: Vec<Result<DataPacket>> = parser::get_packets(file_path).unwrap();
let (data_packets, errors): (Vec<_>, Vec<_>) = result.into_iter().partition(Result::is_ok);
for packet in data_packets {
println!("{:?}", packet.unwrap());
}
for error in errors {
println!("{:?}", error);
}
}
There are more examples in the examples folder.