-
Notifications
You must be signed in to change notification settings - Fork 4
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
Georust: use one big prepared geometry #28
base: main
Are you sure you want to change the base?
Conversation
fix deps
This reverts commit a2c6f42.
|
||
use geos::{CoordSeq, Geom, Geometry, PreparedGeometry}; | ||
use geo::{point, Contains, Geometry, MultiPolygon, Point, Polygon, PreparedGeometry, Relate}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great test case! I'm curious how the perf cares for your use case with geo vs. geos.
(I'll take a look at your PR soon!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I didnt get to work further on the pr yet.
c8ba5f1
to
9a6268b
Compare
9a6268b
to
00b0292
Compare
Unlikely to work on its own: georust/geo#1198 (comment) |
Based on #27.
Fixes #26 , #25.
PreparedGeometry
to speed up repeatedRelate
operations. georust/geo#1197