Skip to content

Commit 2cf7c43

Browse files
authored
Update timeoffset (#9)
* Update timeoffset --------- Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent d05f980 commit 2cf7c43

File tree

3 files changed

+306
-158
lines changed

3 files changed

+306
-158
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod processing;
1313
pub use processing::{
1414
Decimate, DecimationError, DecimationFilter, DecimationFilterType, Filter, FilterItem,
1515
MaskError, MaskFilter, MaskOperand, Masking, Preprocessing, Repair, RepairTrait, Split,
16-
TimeOffset, TimeShift,
16+
TimeOffset, Timeshift,
1717
};
1818

1919
#[cfg(feature = "html")]

src/processing/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ mod split;
1515
pub use split::Split;
1616

1717
mod time;
18-
pub use time::{TimeOffset, TimeShift};
18+
pub use time::{TimeOffset, Timeshift};
1919

2020
/// Preprocessing Trait is usually implemented by GNSS data
2121
/// to preprocess prior further analysis.
22-
pub trait Preprocessing: Masking + Decimate + Split + TimeShift {
22+
pub trait Preprocessing: Masking + Decimate + Split + Timeshift {
2323
/// Apply [Filter] algorithm on immutable dataset.
2424
fn filter(&self, filter: &Filter) -> Self
2525
where

0 commit comments

Comments
 (0)