Skip to main content

soil_sensor_toolbox/
lib.rs

1/*
2 * Soil Sensor Toolbox
3 *
4 * A Rust library for processing soil sensor data:
5 * - TMS4 moisture/VWC calculations (myClim algorithm)
6 * - LI-7810 gas flux calculations (MATLAB reader_gas_Flux_EPFL_may.m algorithm)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19pub mod gas_flux;
20pub mod vwc;
21
22pub use gas_flux::*;
23pub use vwc::*;