pub struct Grid {
pub ni: u32,
pub nj: u32,
pub initial_production_domain_basic_angle: u32,
pub basic_angle_subdivisions: u32,
pub first_point_lat: i32,
pub first_point_lon: i32,
pub resolution_and_component_flags: ResolutionAndComponentFlags,
pub last_point_lat: i32,
pub last_point_lon: i32,
}Fields§
§ni: u32Ni - number of points along a parallel.
nj: u32Nj - number of points along a meridian.
initial_production_domain_basic_angle: u32Basic angle of the initial production domain (see Note 1).
basic_angle_subdivisions: u32Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments (see Note 1).
first_point_lat: i32La1 - latitude of first grid point (see Note 1).
first_point_lon: i32Lo1 - longitude of first grid point (see Note 1).
resolution_and_component_flags: ResolutionAndComponentFlags§last_point_lat: i32La2 - latitude of last grid point (see Note 1).
last_point_lon: i32Lo2 - longitude of last grid point (see Note 1).
Trait Implementations§
impl Eq for Grid
impl StructuralPartialEq for Grid
Auto Trait Implementations§
impl Freeze for Grid
impl RefUnwindSafe for Grid
impl Send for Grid
impl Sync for Grid
impl Unpin for Grid
impl UnsafeUnpin for Grid
impl UnwindSafe for Grid
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