-
Notifications
You must be signed in to change notification settings - Fork 199
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
Implement 3D and Measure support for geo types #742
Closed
Closed
Commits on Apr 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7c495e4 - Browse repository at this point
Copy the full SHA 7c495e4View commit details
Commits on Apr 5, 2022
-
remove WKT merge, bump versions
implement a converter between the geotypes from different versions.
Configuration menu - View commit details
-
Copy full SHA for 70943b2 - Browse repository at this point
Copy the full SHA 70943b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ecbe78c - Browse repository at this point
Copy the full SHA ecbe78cView commit details
Commits on Apr 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a19f7cb - Browse repository at this point
Copy the full SHA a19f7cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0072f2 - Browse repository at this point
Copy the full SHA a0072f2View commit details -
BREAKING: remove all deprecated features
## geo-types * BREAKING: Remove deprecated functions on the `Geometry<T>`: * `into_point` - Switch to `std::convert::TryInto<Point>` * `into_line_string` - Switch to `std::convert::TryInto<LineString>` * `into_line` - Switch to `std::convert::TryInto<Line>` * `into_polygon` - Switch to `std::convert::TryInto<Polygon>` * `into_multi_point` - Switch to `std::convert::TryInto<MultiPoint>` * `into_multi_line_string` - Switch to `std::convert::TryInto<MultiLineString>` * `into_multi_polygon` - Switch to `std::convert::TryInto<MultiPolygon>` * BREAKING: Remove deprecated `CoordinateType` trait. Use `CoordFloat` or `CoordNum` instead. * BREAKING: Remove deprecated functions from `LineString<T>` * Remove `points_iter()` -- use `points()` instead. * Remove `num_coords()` -- use `geo::algorithm::coords_iter::CoordsIter::coords_count` instead. * BREAKING: Remove deprecated functions from `Point<T>` * Remove `lng()` -- use `x()` instead. * Remove `set_lng()` -- use `set_x()` instead. * Remove `lat()` -- use `y()` instead. * Remove `set_lat()` -- use `set_y()` instead. * BREAKING: Remove deprecated `Polygon<T>::is_convex()` -- use `geo::is_convex` on `poly.exterior()` instead. * BREAKING: Remove deprecated `Rect<T>::try_new()` -- use `Rect::new` instead, since `Rect::try_new` will never Error. Also removes corresponding `InvalidRectCoordinatesError`. ## geo * BREAKING: Remove deprecated `rotate()` from the `Rotate` trait: > Equivalent to `rotate_around_centroid` except for `Polygon<T>`, where it is equivalent to rotating around the polygon's outer ring. Call that instead, or `rotate_around_center` if you'd like to rotate around the geometry's bounding box center. * BREAKING: Remove `ToGeo` trait. Switch to `std::convert::Into<Geo>` or `std::convert::TryInto<Geo>`.
Configuration menu - View commit details
-
Copy full SHA for 084bd15 - Browse repository at this point
Copy the full SHA 084bd15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c49460 - Browse repository at this point
Copy the full SHA 6c49460View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5247c1a - Browse repository at this point
Copy the full SHA 5247c1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for a087498 - Browse repository at this point
Copy the full SHA a087498View commit details -
Configuration menu - View commit details
-
Copy full SHA for afadf90 - Browse repository at this point
Copy the full SHA afadf90View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d1251a - Browse repository at this point
Copy the full SHA 8d1251aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ae1b31 - Browse repository at this point
Copy the full SHA 8ae1b31View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c0dffb - Browse repository at this point
Copy the full SHA 2c0dffbView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.