Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] [jira] Created: (UDIG-1114) mapserver 4.8 problems with Geometry Filter

mapserver 4.8 problems with Geometry Filter
-------------------------------------------

                 Key: UDIG-1114
                 URL: http://jira.codehaus.org/browse/UDIG-1114
             Project: uDIG
          Issue Type: Bug
          Components: wfs
    Affects Versions: UDIG 1.1.RC5
            Reporter: Jesse Eichar
            Priority: Critical
             Fix For: UDIG 1.1.RC7


This fails with MapServer

<GetFeature xmlns="http://www.opengis.net/wfs"; xmlns:gml="http://www.opengis.net/gml"; xmlns:ogc="http://www.opengis.net/ogc"; version="1.0.0" service="WFS" outputFormat="GML2">
    <Query typeName="bourgogne_departement">
        <ogc:PropertyName>msGeometry</ogc:PropertyName>
           <ogc:Filter>
                <ogc:BBOX>
                   <ogc:PropertyName>msGeometry</ogc:PropertyName>
                        <gml:Box><gml:coordinates decimal="." cs="," ts=" ">-179.634,-122.5599329248366 179.479,25.01673292483661</gml:coordinates>
                      </gml:Box>
                 </ogc:BBOX>
           </ogc:Filter>
     </Query>
</GetFeature>


This passes with Geoserver:
<GetFeature xmlns="http://www.opengis.net/wfs"; xmlns:gml="http://www.opengis.net/gml"; xmlns:ogc="http://www.opengis.net/ogc"; version="1.0.0" service="WFS" outputFormat="GML2"><Query typeName="gd:swamps">
    <ogc:PropertyName>the_geom</ogc:PropertyName>
        <ogc:Filter>
          <ogc:BBOX>
              <ogc:PropertyName>the_geom</ogc:PropertyName>
                  <gml:Box>
                         <gml:coordinates decimal="." cs="," ts=" ">556739.8489987907,5233006.070104485 566333.8358431819,5246896.350104451</gml:coordinates>
                 </gml:Box>
             </ogc:BBOX>
     </ogc:Filter>
</Query>
</GetFeature>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


Back to the top