**Describe the bug** Requesting features with a request containing a BBOX returns features which are not located inside the BBOX. The behavior was detected with the reference implementation: http://cite.deegree.org/deegree-ogcapi-1.3/datasets/kitaeinrichtung/ **To Reproduce** Steps to reproduce the behavior: 1. Send request: http://cite.deegree.org/deegree-ogcapi-1.3/datasets/kitaeinrichtung/collections/KitaEinrichtungen/items?f=json&bbox=177.0000000,65.0000000,-177.0000000,70.0000000 2. Compare returned features with BBOX of request: ``` { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "APP_KITAEINRICHTUNGEN_1010263", "geometry": { "type": "Point", "coordinates": [ 10.010474613490274, 53.60929655136682 ] }, ... ``` **Expected behavior** Only features located inside the BBOX shall be returned. **Additional context** This error was detected via the OGC CITE ETS using the code provided by this PR: https://github.com/opengeospatial/ets-ogcapi-features10/pull/220
Describe the bug
Requesting features with a request containing a BBOX returns features which are not located inside the BBOX.
The behavior was detected with the reference implementation: http://cite.deegree.org/deegree-ogcapi-1.3/datasets/kitaeinrichtung/
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Only features located inside the BBOX shall be returned.
Additional context
This error was detected via the OGC CITE ETS using the code provided by this PR: opengeospatial/ets-ogcapi-features10#220