pub struct LatLonGrid {
pub grid: Grid,
pub i_direction_inc: u32,
pub j_direction_inc: u32,
pub scanning_mode: ScanningMode,
}Fields§
§grid: Grid§i_direction_inc: u32Di - i direction increment (see Notes 1 and 5).
j_direction_inc: u32Dj - j direction increment (see Notes 1 and 5).
scanning_mode: ScanningModeTrait Implementations§
Source§impl Debug for LatLonGrid
impl Debug for LatLonGrid
Source§impl Dump for LatLonGrid
impl Dump for LatLonGrid
Source§impl GridPointIndex for LatLonGrid
impl GridPointIndex for LatLonGrid
Source§fn grid_shape(&self) -> (usize, usize)
fn grid_shape(&self) -> (usize, usize)
Returns the shape of the grid, i.e. a tuple of the number of grids in
the i and j directions.
Source§fn scanning_mode(&self) -> &ScanningMode
fn scanning_mode(&self) -> &ScanningMode
Returns
ScanningMode used for the iteration.Source§impl GridShortName for LatLonGrid
impl GridShortName for LatLonGrid
Source§fn short_name(&self) -> &'static str
fn short_name(&self) -> &'static str
Returns the grid type. Read more
Source§impl LatLons for LatLonGrid
impl LatLons for LatLonGrid
Source§impl PartialEq for LatLonGrid
impl PartialEq for LatLonGrid
Source§impl TryFromSlice for LatLonGrid
impl TryFromSlice for LatLonGrid
impl Eq for LatLonGrid
impl StructuralPartialEq for LatLonGrid
Auto Trait Implementations§
impl Freeze for LatLonGrid
impl RefUnwindSafe for LatLonGrid
impl Send for LatLonGrid
impl Sync for LatLonGrid
impl Unpin for LatLonGrid
impl UnsafeUnpin for LatLonGrid
impl UnwindSafe for LatLonGrid
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more