pub struct AzimuthalEquidistantProjection { /* private fields */ }Expand description
§Azimuthal Equidistant Projection
Classification: Azimuthal
Available forms: Forward and inverse, spherical and ellipsoidal
Defined area: Global
Alias: aeqd
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
§Projection String
+proj=aeqd§Required Parameters
None
§Optional Parameters
guam: Use Guam ellipsoidal formulas (accurate near Guam: $λ ≈ 144.5°$, $φ ≈ 13.5°$)lat0: Latitude of originlon0: Longitude of originx0: False eastingy0: False northingellps: Ellipsoid nameR: Radius of sphere

Trait Implementations§
Source§impl Clone for AzimuthalEquidistantProjection
impl Clone for AzimuthalEquidistantProjection
Source§fn clone(&self) -> AzimuthalEquidistantProjection
fn clone(&self) -> AzimuthalEquidistantProjection
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 ProjectCoordinates for AzimuthalEquidistantProjection
impl ProjectCoordinates for AzimuthalEquidistantProjection
impl StructuralPartialEq for AzimuthalEquidistantProjection
Auto Trait Implementations§
impl !Freeze for AzimuthalEquidistantProjection
impl !RefUnwindSafe for AzimuthalEquidistantProjection
impl !Send for AzimuthalEquidistantProjection
impl !Sync for AzimuthalEquidistantProjection
impl Unpin for AzimuthalEquidistantProjection
impl !UnwindSafe for AzimuthalEquidistantProjection
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 more