File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -594,14 +594,16 @@ impl IONEX {
594
594
/// The 2D planar interpolation is applied to define the TEC as originally
595
595
/// non existing coordinates.
596
596
/// - stretch < 1.0: reduces precision.
597
+ /// NB: work in progress, not validated yet.
597
598
pub fn grid_precision_stretch ( & self , stretch_factor : f64 ) -> IONEX {
598
599
let mut s = self . clone ( ) ;
599
600
s. grid_precision_stretch_mut ( stretch_factor) ;
600
601
s
601
602
}
602
603
603
604
/// Stretch this mutable [IONEX], modifying the grid precision.
604
- /// See [Self::grid_precision_stretch] for more information.
605
+ /// See [Self::grid_precision_stretch] for more information.
606
+ /// NB: work in progress, not validated yet.
605
607
pub fn grid_precision_stretch_mut ( & mut self , stretch_factor : f64 ) {
606
608
// update grid
607
609
self . header . grid . latitude . start *= stretch_factor;
Original file line number Diff line number Diff line change @@ -70,7 +70,8 @@ impl Record {
70
70
self . map . get_mut ( key)
71
71
}
72
72
73
- /// Collect a IONEX [Record] from a list of [MapCell].
73
+ /// Collect a IONEX [Record] from a list of [MapCell].
74
+ /// NB: work in progress, not validated yet.
74
75
pub fn from_map_cells (
75
76
fixed_altitude_km : f64 ,
76
77
min_latitude_ddeg : f64 ,
You can’t perform that action at this time.
0 commit comments