-
Notifications
You must be signed in to change notification settings - Fork 230
Add geo-traits crate #1157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add geo-traits crate #1157
Changes from 2 commits
e337d8a
7f68df2
34ed5be
d57995e
7308df3
ee04201
ad48ee1
4261836
449b39f
f54fffc
db08c55
7ecdb7e
03f6615
31435e8
1d30066
ab0bf7b
33c1ef9
6363ad8
9421e05
9552705
3725844
7a2effd
8dcbe50
6889cae
de7ca8a
0fb5ab8
58117ce
6b697dd
2eb3b03
1f68cc3
b1364ef
d49873b
7c0e90f
09de278
8418780
4a9b3cc
ba9bf98
4764343
2b77691
711dfac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| [package] | ||
| name = "geo-traits" | ||
| version = "0.1.0" | ||
| license = "MIT OR Apache-2.0" | ||
| repository = "https://github.com/georust/geo" | ||
| documentation = "https://docs.rs/geo-traits/" | ||
| readme = "../README.md" | ||
| keywords = ["gis", "geo", "geography", "geospatial"] | ||
| description = "Geospatial traits" | ||
| rust-version = "1.65" | ||
| edition = "2021" | ||
|
|
||
| [dependencies] | ||
| geo-types = "0.7" | ||
|
|
||
| [dev-dependencies] | ||
| approx = ">= 0.4.0, < 0.6.0" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| use geo_types::{Coord, CoordNum, Point}; | ||
|
|
||
| /// A trait for accessing data from a generic Coord. | ||
| pub trait CoordTrait { | ||
| type T: CoordNum; | ||
|
|
||
| /// x component of this coord | ||
| fn x(&self) -> Self::T; | ||
|
|
||
| /// y component of this coord | ||
| fn y(&self) -> Self::T; | ||
|
|
||
| /// Returns a tuple that contains the x/horizontal & y/vertical component of the coord. | ||
| fn x_y(&self) -> (Self::T, Self::T) { | ||
| (self.x(), self.y()) | ||
| } | ||
| } | ||
|
|
||
| impl<T: CoordNum> CoordTrait for Point<T> { | ||
| type T = T; | ||
|
|
||
| fn x(&self) -> Self::T { | ||
| self.0.x | ||
| } | ||
|
|
||
| fn y(&self) -> Self::T { | ||
| self.0.y | ||
| } | ||
| } | ||
|
|
||
| impl<T: CoordNum> CoordTrait for &Point<T> { | ||
| type T = T; | ||
|
|
||
| fn x(&self) -> Self::T { | ||
| self.0.x | ||
| } | ||
|
|
||
| fn y(&self) -> Self::T { | ||
| self.0.y | ||
| } | ||
| } | ||
|
|
||
| impl<T: CoordNum> CoordTrait for Coord<T> { | ||
| type T = T; | ||
|
|
||
| fn x(&self) -> Self::T { | ||
| self.x | ||
| } | ||
|
|
||
| fn y(&self) -> Self::T { | ||
| self.y | ||
| } | ||
| } | ||
|
|
||
| impl<T: CoordNum> CoordTrait for &Coord<T> { | ||
| type T = T; | ||
|
|
||
| fn x(&self) -> Self::T { | ||
| self.x | ||
| } | ||
|
|
||
| fn y(&self) -> Self::T { | ||
| self.y | ||
| } | ||
| } | ||
|
|
||
| impl<T: CoordNum> CoordTrait for (T, T) { | ||
| type T = T; | ||
|
|
||
| fn x(&self) -> Self::T { | ||
| self.0 | ||
| } | ||
|
|
||
| fn y(&self) -> Self::T { | ||
| self.1 | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,153 @@ | ||
| use geo_types::{ | ||
| CoordNum, Geometry, GeometryCollection, LineString, MultiLineString, MultiPoint, MultiPolygon, | ||
| Point, Polygon, Rect, | ||
| }; | ||
|
|
||
| use super::{ | ||
| GeometryCollectionTrait, LineStringTrait, MultiLineStringTrait, MultiPointTrait, | ||
| MultiPolygonTrait, PointTrait, PolygonTrait, RectTrait, | ||
| }; | ||
|
|
||
| /// A trait for accessing data from a generic Geometry. | ||
| #[allow(clippy::type_complexity)] | ||
| pub trait GeometryTrait { | ||
| type T: CoordNum; | ||
| type Point<'a>: 'a + PointTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type LineString<'a>: 'a + LineStringTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type Polygon<'a>: 'a + PolygonTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type MultiPoint<'a>: 'a + MultiPointTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type MultiLineString<'a>: 'a + MultiLineStringTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type MultiPolygon<'a>: 'a + MultiPolygonTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type GeometryCollection<'a>: 'a + GeometryCollectionTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
| type Rect<'a>: 'a + RectTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
|
|
||
| fn as_type( | ||
| &self, | ||
| ) -> GeometryType< | ||
| '_, | ||
| Self::Point<'_>, | ||
| Self::LineString<'_>, | ||
| Self::Polygon<'_>, | ||
| Self::MultiPoint<'_>, | ||
| Self::MultiLineString<'_>, | ||
| Self::MultiPolygon<'_>, | ||
| Self::GeometryCollection<'_>, | ||
| Self::Rect<'_>, | ||
| >; | ||
| } | ||
|
|
||
| /// An enumeration of all geometry types that can be contained inside a [GeometryTrait]. This is | ||
| /// used for extracting concrete geometry types out of a [GeometryTrait]. | ||
| #[derive(Debug)] | ||
| pub enum GeometryType<'a, P, L, Y, MP, ML, MY, GC, R> | ||
| where | ||
| P: PointTrait, | ||
| L: LineStringTrait, | ||
| Y: PolygonTrait, | ||
| MP: MultiPointTrait, | ||
| ML: MultiLineStringTrait, | ||
| MY: MultiPolygonTrait, | ||
| GC: GeometryCollectionTrait, | ||
| R: RectTrait, | ||
| { | ||
| Point(&'a P), | ||
| LineString(&'a L), | ||
| Polygon(&'a Y), | ||
| MultiPoint(&'a MP), | ||
| MultiLineString(&'a ML), | ||
| MultiPolygon(&'a MY), | ||
| GeometryCollection(&'a GC), | ||
| Rect(&'a R), | ||
| } | ||
|
|
||
| impl<'a, T: CoordNum + 'a> GeometryTrait for Geometry<T> { | ||
| type T = T; | ||
| type Point<'b> = Point<Self::T> where Self: 'b; | ||
| type LineString<'b> = LineString<Self::T> where Self: 'b; | ||
| type Polygon<'b> = Polygon<Self::T> where Self: 'b; | ||
| type MultiPoint<'b> = MultiPoint<Self::T> where Self: 'b; | ||
| type MultiLineString<'b> = MultiLineString<Self::T> where Self: 'b; | ||
| type MultiPolygon<'b> = MultiPolygon<Self::T> where Self: 'b; | ||
| type GeometryCollection<'b> = GeometryCollection<Self::T> where Self: 'b; | ||
| type Rect<'b> = Rect<Self::T> where Self: 'b; | ||
|
|
||
| fn as_type( | ||
| &self, | ||
| ) -> GeometryType< | ||
| '_, | ||
| Point<T>, | ||
| LineString<T>, | ||
| Polygon<T>, | ||
| MultiPoint<T>, | ||
| MultiLineString<T>, | ||
| MultiPolygon<T>, | ||
| GeometryCollection<T>, | ||
| Rect<T>, | ||
| > { | ||
| match self { | ||
| Geometry::Point(p) => GeometryType::Point(p), | ||
| Geometry::LineString(p) => GeometryType::LineString(p), | ||
| Geometry::Polygon(p) => GeometryType::Polygon(p), | ||
| Geometry::MultiPoint(p) => GeometryType::MultiPoint(p), | ||
| Geometry::MultiLineString(p) => GeometryType::MultiLineString(p), | ||
| Geometry::MultiPolygon(p) => GeometryType::MultiPolygon(p), | ||
| Geometry::GeometryCollection(p) => GeometryType::GeometryCollection(p), | ||
| Geometry::Rect(p) => GeometryType::Rect(p), | ||
| _ => todo!(), | ||
kylebarron marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| } | ||
|
|
||
| impl<'a, T: CoordNum + 'a> GeometryTrait for &'a Geometry<T> { | ||
| type T = T; | ||
| type Point<'b> = Point<Self::T> where Self: 'b; | ||
| type LineString<'b> = LineString<Self::T> where Self: 'b; | ||
| type Polygon<'b> = Polygon<Self::T> where Self: 'b; | ||
| type MultiPoint<'b> = MultiPoint<Self::T> where Self: 'b; | ||
| type MultiLineString<'b> = MultiLineString<Self::T> where Self: 'b; | ||
| type MultiPolygon<'b> = MultiPolygon<Self::T> where Self: 'b; | ||
| type GeometryCollection<'b> = GeometryCollection<Self::T> where Self: 'b; | ||
| type Rect<'b> = Rect<Self::T> where Self: 'b; | ||
|
|
||
| fn as_type( | ||
| &self, | ||
| ) -> GeometryType< | ||
| '_, | ||
| Point<T>, | ||
| LineString<T>, | ||
| Polygon<T>, | ||
| MultiPoint<T>, | ||
| MultiLineString<T>, | ||
| MultiPolygon<T>, | ||
| GeometryCollection<T>, | ||
| Rect<T>, | ||
| > { | ||
| match self { | ||
| Geometry::Point(p) => GeometryType::Point(p), | ||
| Geometry::LineString(p) => GeometryType::LineString(p), | ||
| Geometry::Polygon(p) => GeometryType::Polygon(p), | ||
| Geometry::MultiPoint(p) => GeometryType::MultiPoint(p), | ||
| Geometry::MultiLineString(p) => GeometryType::MultiLineString(p), | ||
| Geometry::MultiPolygon(p) => GeometryType::MultiPolygon(p), | ||
| Geometry::GeometryCollection(p) => GeometryType::GeometryCollection(p), | ||
| Geometry::Rect(p) => GeometryType::Rect(p), | ||
| _ => todo!(), | ||
kylebarron marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| use super::{GeometryCollectionIterator, GeometryTrait}; | ||
| use geo_types::{CoordNum, Geometry, GeometryCollection}; | ||
|
|
||
| /// A trait for accessing data from a generic GeometryCollection. | ||
| pub trait GeometryCollectionTrait: Sized { | ||
| type T: CoordNum; | ||
| type ItemType<'a>: 'a + GeometryTrait<T = Self::T> | ||
| where | ||
| Self: 'a; | ||
|
|
||
| /// An iterator over the geometries in this GeometryCollection | ||
| fn geometries(&self) -> GeometryCollectionIterator<'_, Self::T, Self::ItemType<'_>, Self> { | ||
| GeometryCollectionIterator::new(self, 0, self.num_geometries()) | ||
| } | ||
|
|
||
| /// The number of geometries in this GeometryCollection | ||
| fn num_geometries(&self) -> usize; | ||
|
Comment on lines
+27
to
+28
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm more of an
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I feel like I don't commonly see Even (@JosiahParry perfect time for us to pull out that "bikeshedding" definition 😆)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think of |
||
|
|
||
| /// Access to a specified geometry in this GeometryCollection | ||
| /// Will return None if the provided index is out of bounds | ||
| fn geometry(&self, i: usize) -> Option<Self::ItemType<'_>> { | ||
| if i >= self.num_geometries() { | ||
| None | ||
| } else { | ||
| unsafe { Some(self.geometry_unchecked(i)) } | ||
| } | ||
| } | ||
|
|
||
| /// Access to a specified geometry in this GeometryCollection | ||
| /// | ||
| /// # Safety | ||
| /// | ||
| /// Accessing an index out of bounds is UB. | ||
| unsafe fn geometry_unchecked(&self, i: usize) -> Self::ItemType<'_>; | ||
| } | ||
|
|
||
| impl<T: CoordNum> GeometryCollectionTrait for GeometryCollection<T> { | ||
| type T = T; | ||
| type ItemType<'a> = &'a Geometry<Self::T> | ||
| where | ||
| Self: 'a; | ||
|
|
||
| fn num_geometries(&self) -> usize { | ||
| self.0.len() | ||
| } | ||
|
|
||
| unsafe fn geometry_unchecked(&self, i: usize) -> Self::ItemType<'_> { | ||
| self.0.get_unchecked(i) | ||
| } | ||
| } | ||
|
|
||
| impl<'a, T: CoordNum> GeometryCollectionTrait for &'a GeometryCollection<T> { | ||
| type T = T; | ||
| type ItemType<'b> = &'a Geometry<Self::T> where | ||
| Self: 'b; | ||
|
|
||
| fn num_geometries(&self) -> usize { | ||
| self.0.len() | ||
| } | ||
|
|
||
| unsafe fn geometry_unchecked(&self, i: usize) -> Self::ItemType<'_> { | ||
| self.0.get_unchecked(i) | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.