Skip to content

Commit 22abe23

Browse files
committed
regional cast and stretch does not work yet
1 parent 3cddfc6 commit 22abe23

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,14 +594,16 @@ impl IONEX {
594594
/// The 2D planar interpolation is applied to define the TEC as originally
595595
/// non existing coordinates.
596596
/// - stretch < 1.0: reduces precision.
597+
/// NB: work in progress, not validated yet.
597598
pub fn grid_precision_stretch(&self, stretch_factor: f64) -> IONEX {
598599
let mut s = self.clone();
599600
s.grid_precision_stretch_mut(stretch_factor);
600601
s
601602
}
602603

603604
/// 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.
605607
pub fn grid_precision_stretch_mut(&mut self, stretch_factor: f64) {
606608
// update grid
607609
self.header.grid.latitude.start *= stretch_factor;

src/record/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ impl Record {
7070
self.map.get_mut(key)
7171
}
7272

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.
7475
pub fn from_map_cells(
7576
fixed_altitude_km: f64,
7677
min_latitude_ddeg: f64,

0 commit comments

Comments
 (0)