pub enum Edges {
Spherical,
Vincenty,
Thomas,
Andoyer,
Karney,
}Expand description
The edge interpolation algorithms used with GEOMETRY logical types.
Variants§
Spherical
Edges are interpolated as geodesics on a sphere.
Vincenty
Thomas
Thomas, Paul D. Spheroidal geodesics, reference systems, & local geometry. US Naval Oceanographic Office, 1970
Andoyer
Thomas, Paul D. Mathematical models for navigation systems. US Naval Oceanographic Office, 1965.
Karney
Karney, Charles FF. “Algorithms for geodesics.” Journal of Geodesy 87 (2013): 43-55
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Edges
impl<'de> Deserialize<'de> for Edges
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Edges
impl Eq for Edges
impl StructuralPartialEq for Edges
Auto Trait Implementations§
impl Freeze for Edges
impl RefUnwindSafe for Edges
impl Send for Edges
impl Sync for Edges
impl Unpin for Edges
impl UnwindSafe for Edges
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