|
GEOS-6484
Improve bbox reprojection accuracy introduces an error on src/wfs/src/main/java/org/geoserver/wfs/GetFeature.java
http://<host>/geoserver/ows?service=WFS&request=GetFeature&version=1.1.0&typeName=my:FeatureType&maxFeatures=1&bbox=1818131,6142575,1818198,6142642,EPSG:3857&srsName=EPSG:4326
returns
<ows:Exception exceptionCode="InvalidParameterValue"><ows:ExceptionText>bounding box out of valid range of crs</ows:ExceptionText></ows:Exception>
when reverting the patch on GetFeature.java from e = CRS.transform(e, geo) to e = CRS.transform(CRS.findMathTransform(crs, geo, true), e)
the response contains features again.
|