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
More a question than a real issue.
I'm playing with WFS 3.0 and your library and I'm not sure about this use case for the bbox.
In the compliance tests, I need to be able to manage when a polygon is crossing either 180th meridian or poles https://github.com/opengeospatial/ets-wfs30/blob/master/src/main/java/org/opengis/cite/wfs30/collections/GetFeaturesOperation.java#L123-L126 To deal with these cases, I'm wondering if I need to split my polygon crossing the meridian or the pole, get two polygons, run both tree.search(poly1) and tree.search(poly2), dedupe and merge in one GeoJSON or does Rbush and GeoJSON-RBush can manage it another way? Thanks for any input.
tree.search(poly1)
tree.search(poly2)
The text was updated successfully, but these errors were encountered:
@ThomasG77 did you ever get an answer for this?
I'm assuming you'll need to split based on experience
Sorry, something went wrong.
No branches or pull requests
More a question than a real issue.
I'm playing with WFS 3.0 and your library and I'm not sure about this use case for the bbox.
In the compliance tests, I need to be able to manage when a polygon is crossing either 180th meridian or poles https://github.com/opengeospatial/ets-wfs30/blob/master/src/main/java/org/opengis/cite/wfs30/collections/GetFeaturesOperation.java#L123-L126
To deal with these cases, I'm wondering if I need to split my polygon crossing the meridian or the pole, get two polygons, run both
tree.search(poly1)
andtree.search(poly2)
, dedupe and merge in one GeoJSON or does Rbush and GeoJSON-RBush can manage it another way? Thanks for any input.The text was updated successfully, but these errors were encountered: