-
Notifications
You must be signed in to change notification settings - Fork 5
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
Polygon clipping performance #129
Comments
Huh! We should add the test suite polygons as benchmarks as well, so that all the bases are covered. That could be a good start to a PkgBenchmark type of thing, since the current benchmarks are more focused on scaling across number of vertices which there isn't really a good solution for (yet) in the benchmark world.
|
This is with ExactPredicates since I was just testing a few of things in the REPL. |
Ugh no if that is one point on the left then the scaling is just from our head start. |
Yeah, looks like it...on the bright side, we at least have a head start :D |
The code for that plot is in Caltech-OCTO#8 |
For a lot of geospatial usecases, polygons of size > 100 are de rigueur. GeometryOps' performance on these polygons is horrible, more than 10x slower than LibGEOS.
This could probably be improved by a monotone chain optimization, which we should add. This will probably also need the prepared geometry interface.
The text was updated successfully, but these errors were encountered: