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
The covers spatial predicate gives an incorrect result for the case of a a GEOMETRYCOLLECTION containing a POLYGON EMPTY.
covers
bin/geosop -a "LINESTRING(75 15,55 43)" -b "GEOMETRYCOLLECTION(POLYGON EMPTY,LINESTRING(75 15,55 43))" covers ==> false
This is likely due to the dimension of the collection being determined as 2 and the predicate logic being short-circuited based on that.
Reported in https://trac.osgeo.org/postgis/ticket/5640
The text was updated successfully, but these errors were encountered:
Fixed by d963c0f
Sorry, something went wrong.
No branches or pull requests
The
covers
spatial predicate gives an incorrect result for the case of a a GEOMETRYCOLLECTION containing a POLYGON EMPTY.This is likely due to the dimension of the collection being determined as 2 and the predicate logic being short-circuited based on that.
Reported in https://trac.osgeo.org/postgis/ticket/5640
The text was updated successfully, but these errors were encountered: