pub struct GstmercData { /* private fields */ }Expand description
§Gauss-Schreiber Transverse Mercator (aka Gauss-Laborde Reunion)
Classification: Conformal
Available forms: Forward and inverse, spherical projection
Defined area: Global
Alias: gstmerc
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
§Projection String
+proj=gstmerc§Optional Parameters
+k_0=<value>: Scale factor at the central meridian.+lon_0=<value>: Longitude of the central meridian.+lat_0=<value>: Latitude of origin.+ellps=<value>: Ellipsoid name (e.g., GRS80, WGS84).+R=<value>: Radius of the sphere (used in spherical projections).+x_0=<value>: False easting.+y_0=<value>: False northing.
§Usage Example
echo 12 55 | proj +proj=gstmerc +ellps=WGS84
echo 12 55 | proj +proj=gstmerc +k_0=1 +lon_0=0 +x_0=500000 +y_0=0
Trait Implementations§
Source§impl Clone for GstmercData
impl Clone for GstmercData
Source§fn clone(&self) -> GstmercData
fn clone(&self) -> GstmercData
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GstmercData
impl Debug for GstmercData
Source§impl Default for GstmercData
impl Default for GstmercData
Source§fn default() -> GstmercData
fn default() -> GstmercData
Returns the “default value” for a type. Read more
Source§impl PartialEq for GstmercData
impl PartialEq for GstmercData
impl StructuralPartialEq for GstmercData
Auto Trait Implementations§
impl Freeze for GstmercData
impl RefUnwindSafe for GstmercData
impl Send for GstmercData
impl Sync for GstmercData
impl Unpin for GstmercData
impl UnwindSafe for GstmercData
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().