I am running GeoServer 1.7.0, using ArcSDE 9.3 as my back end.
Does GeoServer/WFS range check long/lat coordinates in a bounding box for
example? I would think if you gave a bogus long/lat coordinate like
-99999999... you would get back some sort of exception.
Here is a sample request.
<wfs:GetFeature
service="WFS"
version="1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:gml="http://www.opengis.net/gml"
xmlns:wfs="http://www.opengis.net/wfs"
xmlns:ogc="http://www.opengis.net/ogc"
xsi:schemaLocation="http://www.opengis.net/wfs
http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd">
outputFormat="GML2"
<wfs:Query typeName="topp:MAPDATA.WVS001M_GAZETTE_GAZETTE">
<wfs:PropertyName>COUNTRY_DESCRIPTION</wfs:PropertyName>
<ogc:Filter>
<ogc:BBOX>
<ogc:PropertyName>SHAPE</ogc:PropertyName>
<gml:Box>
<gml:coordinates>-99999999999,27 -13,30</gml:coordinates>
</gml:Box>
</ogc:BBOX>
</ogc:Filter>
</wfs:Query>
</wfs:GetFeature>
I get valid data in my response, and if you look at the what the data is
bounded by, my request is clearly out of range.
<gml:boundedBy>
<gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs=","
ts="">-179.938,-73.3586 179.07381,81.4986</gml:coordinates>
</gml:Box>
</gml:boundedBy>
Any insight is appreciated.
Thanks,
Rett
--
View this message in context: http://www.nabble.com/GeoServer-WFS-range-checking--tp22164066p22164066.html
Sent from the GeoServer - User mailing list archive at Nabble.com.