We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
related to #424.
A valid Polygon with a hole POLYGON((0 0,0 2,2 2,4 2,4 0,0 0),(2 2,1 1,3 1,2 2))
POLYGON((0 0,0 2,2 2,4 2,4 0,0 0),(2 2,1 1,3 1,2 2))
lat ^ | 2 b --- c --- f | /\ | 1 | d -- e | | | 0 a --------- g 0 1 2 3 4 -> lon with ways: A: (a, b, c) B: (c, d) C: (d, e, c) D: (c, f, g, a)
Could produce wrongly a overlapping and invalid Multipolygon like MULTIPOLYGON (((2 2, 1 1, 3 1, 2 2)), ((0 0, 0 2, 2 2, 4 2, 4 0, 0 0))) for permutation B:(c, d)C:(d,e,c)A:(a,b,c)D:(c,f,g,a)
MULTIPOLYGON (((2 2, 1 1, 3 1, 2 2)), ((0 0, 0 2, 2 2, 4 2, 4 0, 0 0)))
You will find a test at dbe4045
The text was updated successfully, but these errors were encountered:
test for bug #471
dbe4045
tyrasd
Hagellach37
No branches or pull requests
related to #424.
A valid Polygon with a hole
POLYGON((0 0,0 2,2 2,4 2,4 0,0 0),(2 2,1 1,3 1,2 2))
Could produce wrongly a overlapping and invalid Multipolygon like
MULTIPOLYGON (((2 2, 1 1, 3 1, 2 2)), ((0 0, 0 2, 2 2, 4 2, 4 0, 0 0)))
for permutation B:(c, d)C:(d,e,c)A:(a,b,c)D:(c,f,g,a)You will find a test at dbe4045
The text was updated successfully, but these errors were encountered: