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
Find geometries with coordinates that do not belong in projection:
SELECT * FROM your_table WHERE (st_x(geom) NOT BETWEEN -180 AND 180) OR (st_y(geom) NOT BETWEEN -90 AND 90) ;
We should check for those values and generate also some checks during INSERT statements.
https://stackoverflow.com/questions/42131056/find-geometries-with-coordinates-that-do-not-belong-in-projection
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Find geometries with coordinates that do not belong in projection:
We should check for those values and generate also some checks during INSERT statements.
https://stackoverflow.com/questions/42131056/find-geometries-with-coordinates-that-do-not-belong-in-projection
The text was updated successfully, but these errors were encountered: