pub struct LambertConformalGrid {Show 23 fields
pub number_of_points: u32,
pub shape_of_earth: u8,
pub scale_factor_radius: u8,
pub scaled_value_radius: u32,
pub scale_factor_major_axis: u8,
pub scaled_value_major_axis: u32,
pub scale_factor_minor_axis: u8,
pub scaled_value_minor_axis: u32,
pub nx: u32,
pub ny: u32,
pub lat_first: i32,
pub lon_first: u32,
pub resolution_and_component_flags: u8,
pub lat_d: i32,
pub lon_v: u32,
pub dx: u32,
pub dy: u32,
pub projection_center_flag: u8,
pub scanning_mode: u8,
pub latin1: i32,
pub latin2: i32,
pub lat_southern_pole: i32,
pub lon_southern_pole: u32,
}Expand description
Template 3.30: Lambert conformal grid.
Fields§
§number_of_points: u32§shape_of_earth: u8§scale_factor_radius: u8§scaled_value_radius: u32§scale_factor_major_axis: u8§scaled_value_major_axis: u32§scale_factor_minor_axis: u8§scaled_value_minor_axis: u32§nx: u32§ny: u32§lat_first: i32§lon_first: u32§resolution_and_component_flags: u8§lat_d: i32§lon_v: u32§dx: u32§dy: u32§projection_center_flag: u8§scanning_mode: u8§latin1: i32§latin2: i32§lat_southern_pole: i32§lon_southern_pole: u32Implementations§
Trait Implementations§
Source§impl Clone for LambertConformalGrid
impl Clone for LambertConformalGrid
Source§fn clone(&self) -> LambertConformalGrid
fn clone(&self) -> LambertConformalGrid
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LambertConformalGrid
impl Debug for LambertConformalGrid
Source§impl PartialEq for LambertConformalGrid
impl PartialEq for LambertConformalGrid
Source§fn eq(&self, other: &LambertConformalGrid) -> bool
fn eq(&self, other: &LambertConformalGrid) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LambertConformalGrid
Auto Trait Implementations§
impl Freeze for LambertConformalGrid
impl RefUnwindSafe for LambertConformalGrid
impl Send for LambertConformalGrid
impl Sync for LambertConformalGrid
impl Unpin for LambertConformalGrid
impl UnsafeUnpin for LambertConformalGrid
impl UnwindSafe for LambertConformalGrid
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more