flintec_lpp 11.0.2

CLI apps for logging, processing, and plotting load time series from Flintec load cells - DAD 141.1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use flintec_lpp::plot::parse_cli;
use flintec_lpp::TimeLoad;

fn main() {
    let (csvin, svgout) = parse_cli();
    println!(
        "read data from {} and plot to {}",
        csvin.to_str().unwrap(),
        svgout.to_str().unwrap()
    );
    let tw = TimeLoad::from_csv(csvin);
    tw.plot_datetime(svgout).unwrap();
}