-
Notifications
You must be signed in to change notification settings - Fork 454
Fix element number estimation when parsing WKB of GEOMETRYCOLLECTION containing empty geometries #905
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 8000 privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dr-jts
merged 1 commit into
locationtech:master
from
Kontinuation:fix-wkb-reading-for-geometry-collection
Sep 14, 2022
Merged
Fix element number estimation when parsing WKB of GEOMETRYCOLLECTION containing empty geometries #905
dr-jts
merged 1 commit into
locationtech:master
from
Kontinuation:fix-wkb-reading-for-geometry-collection
Sep 14, 2022
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…containing empty geometries Signed-off-by: Kristin Cowalcijk <morisama@yeah.net>
Thanks, good catch! |
Hi @dr-jts , if I may kindly ask - are there any plans to make a release with this fix in near future? I don't see any fixed date on https://github.com/locationtech/jts/milestones. |
No firm release date, but will try and get one out over the summer. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
WKBReader will raise
ParseException
when parsing WKB of GeometryCollection containing multiple empty geometries, such asGEOMETRYCOLLECTION(LINESTRING EMPTY, MULTIPOINT EMPTY)
. The following code reproduces this problem:Which yields:
This PR fixes this problem by estimating the number of geometries in GeometryCollection in a more conservative manner: the minimal length of a WKB geometry is 9 (1 byte order + 4 WKT type + 4 length), we estimate the number of geometries by dividing the length of WKB buffer by 8 instead of 16.