gnss_qc/report/shared/mod.rs
1//! Shared analysis, that may apply to several [ProductType]
2
3mod sampling;
4pub(crate) use sampling::SamplingReport;
5
6//use maud::{html, Markup, Render};
7//use rinex::prelude::{Duration, Epoch};
8
9//pub(crate) struct EpochSlider {
10// start: Epoch,
11// end: Epoch,
12// dt: Duration,
13//}
14
15//impl EpochSlider {
16// pub fn new(start: Epoch, end: Epoch, dt: Duration) -> Self {
17// Self { start, end, dt }
18// }
19//}
20//
21//impl Render for EpochSlider {
22// fn render(&self) -> Markup {
23// html! {
24// table class="table is-bordered" {
25//
26// }
27// }
28// }
29//}