pub struct StereParams {
pub ellipsoid: Ellipsoid,
pub lat_ts: f64,
pub lat_0: f64,
pub lon_0: f64,
}Expand description
Parameters for Stereographic projection.
Fields§
§ellipsoid: EllipsoidEllipsoid definition.
lat_ts: f64Latitude where scale is not distorted (in degrees).
lat_0: f64Latitude of origin (in degrees).
lon_0: f64Central meridian (in degrees).
Trait Implementations§
Source§impl Clone for StereParams
impl Clone for StereParams
Source§fn clone(&self) -> StereParams
fn clone(&self) -> StereParams
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 StereParams
impl Debug for StereParams
Source§impl PartialEq for StereParams
impl PartialEq for StereParams
impl StructuralPartialEq for StereParams
Auto Trait Implementations§
impl Freeze for StereParams
impl RefUnwindSafe for StereParams
impl Send for StereParams
impl Sync for StereParams
impl Unpin for StereParams
impl UnsafeUnpin for StereParams
impl UnwindSafe for StereParams
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