Struct geo::geometry::Coord

source ·
pub struct Coord<T = f64>where
    T: CoordNum,{
    pub x: T,
    pub y: T,
}
Expand description

A lightweight struct used to store coordinates on the 2-dimensional Cartesian plane.

Unlike Point (which in the future may contain additional information such as an envelope, a precision model, and spatial reference system information), a Coord only contains ordinate values and accessor methods.

This type implements the vector space operations: Add, Sub, Neg, Zero, Mul<T>, and Div<T> traits.

Semantics

This type does not represent any geospatial primitive, but is used in their definitions. The only requirement is that the coordinates it contains are valid numbers (for eg. not f64::NAN).

Fields§

§x: T§y: T

Implementations§

source§

impl<T> Coord<T>where T: CoordNum,

source

pub fn x_y(&self) -> (T, T)

Returns a tuple that contains the x/horizontal & y/vertical component of the coordinate.

Examples
use geo_types::coord;

let c = coord! {
    x: 40.02f64,
    y: 116.34,
};
let (x, y) = c.x_y();

assert_eq!(y, 116.34);
assert_eq!(x, 40.02f64);
source§

impl<T> Coord<T>where T: CoordNum,

Create a coordinate at the origin.

Examples

use geo_types::Coord;
use num_traits::Zero;

let p: Coord = Zero::zero();

assert_eq!(p.x, 0.);
assert_eq!(p.y, 0.);
source

pub fn zero() -> Coord<T>

Trait Implementations§

source§

impl<T> AbsDiffEq<Coord<T>> for Coord<T>where T: CoordNum + AbsDiffEq<T>, <T as AbsDiffEq<T>>::Epsilon: Copy,

§

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

Used for specifying relative comparisons.
source§

fn default_epsilon() -> <T as AbsDiffEq<T>>::Epsilon

The default tolerance to use when testing values that are close together. Read more
source§

fn abs_diff_eq( &self, other: &Coord<T>, epsilon: <T as AbsDiffEq<T>>::Epsilon ) -> bool

A test for equality that uses the absolute difference to compute the approximate equality of two numbers.
§

fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool

The inverse of [AbsDiffEq::abs_diff_eq].
source§

impl<T> Add<Coord<T>> for Coord<T>where T: CoordNum,

Add two coordinates.

Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = coord! { x: 1.5, y: 2.5 };
let sum = p + q;

assert_eq!(sum.x, 2.75);
assert_eq!(sum.y, 5.0);
§

type Output = Coord<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Coord<T>) -> Coord<T>

Performs the + operation. Read more
source§

impl<T> BoundingRect<T> for Coord<T>where T: CoordNum,

source§

fn bounding_rect(&self) -> Self::Output

Return the bounding rectangle for a Coord. It will have zero width and zero height.

§

type Output = Rect<T>

source§

impl<T> Clone for Coord<T>where T: Clone + CoordNum,

source§

fn clone(&self) -> Coord<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<F: GeoFloat> ClosestPoint<F, Point<F>> for Coord<F>

source§

fn closest_point(&self, p: &Point<F>) -> Closest<F>

Find the closest point between self and p.
source§

impl<T> Contains<Coord<T>> for Geometry<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for GeometryCollection<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for Line<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for LineString<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for MultiPoint<T>where T: CoordNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for MultiPolygon<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for Point<T>where T: CoordNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for Polygon<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for Rect<T>where T: CoordNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> Contains<Coord<T>> for Triangle<T>where T: GeoNum,

source§

fn contains(&self, coord: &Coord<T>) -> bool

source§

impl<T> CoordinatePosition for Coord<T>where T: GeoNum,

§

type Scalar = T

source§

fn calculate_coordinate_position( &self, coord: &Coord<T>, is_inside: &mut bool, _boundary_count: &mut usize )

source§

fn coordinate_position(&self, coord: &Coord<Self::Scalar>) -> CoordPos

source§

impl<T> Debug for Coord<T>where T: Debug + CoordNum,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Default for Coord<T>where T: Default + CoordNum,

source§

fn default() -> Coord<T>

Returns the “default value” for a type. Read more
source§

impl<'de, T> Deserialize<'de> for Coord<T>where T: CoordNum + Deserialize<'de>,

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Coord<T>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> Div<T> for Coord<T>where T: CoordNum,

Divide coordinate wise by a scalar.

Examples

use geo_types::coord;

let p = coord! { x: 5., y: 10. };
let q = p / 4.;

assert_eq!(q.x, 1.25);
assert_eq!(q.y, 2.5);
§

type Output = Coord<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Coord<T>

Performs the / operation. Read more
source§

impl<T> EuclideanDistance<T, Coord<T>> for Coord<T>where T: GeoFloat,

source§

fn euclidean_distance(&self, c: &Coord<T>) -> T

Minimum distance between two Coords

source§

impl<T> EuclideanDistance<T, Coord<T>> for Line<T>where T: GeoFloat,

source§

fn euclidean_distance(&self, coord: &Coord<T>) -> T

Minimum distance from a Line to a Coord

source§

impl<T> EuclideanDistance<T, Line<T>> for Coord<T>where T: GeoFloat,

source§

fn euclidean_distance(&self, line: &Line<T>) -> T

Minimum distance from a Coord to a Line

source§

impl<T> From<[T; 2]> for Coord<T>where T: CoordNum,

source§

fn from(coords: [T; 2]) -> Coord<T>

Converts to this type from the input type.
source§

impl<T> From<(T, T)> for Coord<T>where T: CoordNum,

source§

fn from(coords: (T, T)) -> Coord<T>

Converts to this type from the input type.
source§

impl<T: GeoNum> From<Coord<T>> for LineOrPoint<T>

Convert from a Coord

source§

fn from(c: Coord<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Coord<T>> for Point<T>where T: CoordNum,

source§

fn from(x: Coord<T>) -> Point<T>

Converts to this type from the input type.
source§

impl<T> From<Point<T>> for Coord<T>where T: CoordNum,

source§

fn from(point: Point<T>) -> Coord<T>

Converts to this type from the input type.
source§

impl<T> Hash for Coord<T>where T: Hash + CoordNum,

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T> Intersects<Coord<T>> for Coord<T>where T: CoordNum,

source§

fn intersects(&self, rhs: &Coord<T>) -> bool

source§

impl<T> Intersects<Coord<T>> for Line<T>where T: GeoNum,

source§

fn intersects(&self, rhs: &Coord<T>) -> bool

source§

impl<T> Intersects<Coord<T>> for Polygon<T>where T: GeoNum,

source§

fn intersects(&self, p: &Coord<T>) -> bool

source§

impl<T> Intersects<Coord<T>> for Rect<T>where T: CoordNum,

source§

fn intersects(&self, rhs: &Coord<T>) -> bool

source§

impl<T> Intersects<Geometry<T>> for Coord<T>where Geometry<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &Geometry<T>) -> bool

source§

impl<T> Intersects<GeometryCollection<T>> for Coord<T>where GeometryCollection<T>: Intersects<Coord<T>>, T: CoordNum,

source§

impl<T> Intersects<Line<T>> for Coord<T>where Line<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &Line<T>) -> bool

source§

impl<T> Intersects<LineString<T>> for Coord<T>where LineString<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &LineString<T>) -> bool

source§

impl<T> Intersects<MultiPoint<T>> for Coord<T>where MultiPoint<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &MultiPoint<T>) -> bool

source§

impl<T> Intersects<Point<T>> for Coord<T>where T: CoordNum,

source§

fn intersects(&self, rhs: &Point<T>) -> bool

source§

impl<T> Intersects<Polygon<T>> for Coord<T>where Polygon<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &Polygon<T>) -> bool

source§

impl<T> Intersects<Rect<T>> for Coord<T>where Rect<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &Rect<T>) -> bool

source§

impl<T> Intersects<Triangle<T>> for Coord<T>where Triangle<T>: Intersects<Coord<T>>, T: CoordNum,

source§

fn intersects(&self, rhs: &Triangle<T>) -> bool

source§

impl<T> Mul<T> for Coord<T>where T: CoordNum,

Multiply coordinate wise by a scalar.

Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = p * 4.;

assert_eq!(q.x, 5.0);
assert_eq!(q.y, 10.0);
§

type Output = Coord<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Coord<T>

Performs the * operation. Read more
source§

impl<T> Neg for Coord<T>where T: CoordNum + Neg<Output = T>,

Negate a coordinate.

Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = -p;

assert_eq!(q.x, -p.x);
assert_eq!(q.y, -p.y);
§

type Output = Coord<T>

The resulting type after applying the - operator.
source§

fn neg(self) -> Coord<T>

Performs the unary - operation. Read more
source§

impl<T> PartialEq<Coord<T>> for Coord<T>where T: PartialEq<T> + CoordNum,

source§

fn eq(&self, other: &Coord<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Point for Coord<T>where T: Float + RTreeNum,

§

type Scalar = T

The number type used by this point type.
source§

const DIMENSIONS: usize = 2usize

The number of dimensions of this point type.
source§

fn generate( generator: impl FnMut(usize) -> <Coord<T> as Point>::Scalar ) -> Coord<T>

Creates a new point value with given values for each dimension. Read more
source§

fn nth(&self, index: usize) -> <Coord<T> as Point>::Scalar

Returns a single coordinate of this point. Read more
source§

fn nth_mut(&mut self, index: usize) -> &mut <Coord<T> as Point>::Scalar

Mutable variant of nth.
source§

impl<T> RelativeEq<Coord<T>> for Coord<T>where T: CoordNum + RelativeEq<T>, <T as AbsDiffEq<T>>::Epsilon: Copy,

source§

fn default_max_relative() -> <T as AbsDiffEq<T>>::Epsilon

The default relative tolerance for testing values that are far-apart. Read more
source§

fn relative_eq( &self, other: &Coord<T>, epsilon: <T as AbsDiffEq<T>>::Epsilon, max_relative: <T as AbsDiffEq<T>>::Epsilon ) -> bool

A test for equality that uses a relative comparison if the values are far apart.
§

fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon ) -> bool

The inverse of [RelativeEq::relative_eq].
source§

impl<T> Serialize for Coord<T>where T: CoordNum + Serialize,

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T> Sub<Coord<T>> for Coord<T>where T: CoordNum,

Subtract a coordinate from another.

Examples

use geo_types::coord;

let p = coord! { x: 1.5, y: 2.5 };
let q = coord! { x: 1.25, y: 2.5 };
let diff = p - q;

assert_eq!(diff.x, 0.25);
assert_eq!(diff.y, 0.);
§

type Output = Coord<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Coord<T>) -> Coord<T>

Performs the - operation. Read more
source§

impl<T> UlpsEq<Coord<T>> for Coord<T>where T: CoordNum + UlpsEq<T>, <T as AbsDiffEq<T>>::Epsilon: Copy,

source§

fn default_max_ulps() -> u32

The default ULPs to tolerate when testing values that are far-apart. Read more
source§

fn ulps_eq( &self, other: &Coord<T>, epsilon: <T as AbsDiffEq<T>>::Epsilon, max_ulps: u32 ) -> bool

A test for equality that uses units in the last place (ULP) if the values are far apart.
§

fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of [UlpsEq::ulps_eq].
source§

impl<T> Zero for Coord<T>where T: CoordNum,

source§

fn zero() -> Coord<T>

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl<T> Copy for Coord<T>where T: Copy + CoordNum,

source§

impl<T> Eq for Coord<T>where T: Eq + CoordNum,

source§

impl<T> StructuralEq for Coord<T>where T: CoordNum,

source§

impl<T> StructuralPartialEq for Coord<T>where T: CoordNum,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Coord<T>where T: RefUnwindSafe,

§

impl<T> Send for Coord<T>where T: Send,

§

impl<T> Sync for Coord<T>where T: Sync,

§

impl<T> Unpin for Coord<T>where T: Unpin,

§

impl<T> UnwindSafe for Coord<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<P> PointDistance for Pwhere P: Point,

source§

fn distance_2(&self, point: &P) -> <P as Point>::Scalar

Returns the squared euclidean distance between an object to a point.
source§

fn contains_point( &self, point: &<<P as RTreeObject>::Envelope as Envelope>::Point ) -> bool

Returns true if a point is contained within this object. Read more
source§

fn distance_2_if_less_or_equal( &self, point: &<<P as RTreeObject>::Envelope as Envelope>::Point, max_distance_2: <<<P as RTreeObject>::Envelope as Envelope>::Point as Point>::Scalar ) -> Option<<P as Point>::Scalar>

Returns the squared distance to this object, or None if the distance is larger than a given maximum value. Read more
source§

impl<P> RTreeObject for Pwhere P: Point,

§

type Envelope = AABB<P>

The object’s envelope type. Usually, AABB will be the right choice. This type also defines the object’s dimensionality.
source§

fn envelope(&self) -> AABB<P>

Returns the object’s envelope. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<G1, G2> Within<G2> for G1where G2: Contains<G1>,

source§

fn is_within(&self, b: &G2) -> bool

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,