| 123456789101112131415161718192021222324252627 |
- <!-- Performs a between filter to find the states with an area
- between 100,000 and 150,000.
- Also, it just returns the STATE_NAME, LAND_KM, and geometry
- (instead of all the attributes).
- -->
- <wfs:GetFeature service="WFS" version="1.0.0"
- outputFormat="GML2"
- xmlns:topp="http://www.openplans.org/topp"
- xmlns:wfs="http://www.opengis.net/wfs"
- xmlns:ogc="http://www.opengis.net/ogc"
- xmlns:gml="http://www.opengis.net/gml"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.opengis.net/wfs
- http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd">
- <wfs:Query typeName="topp:states">
- <ogc:PropertyName>topp:STATE_NAME</ogc:PropertyName>
- <ogc:PropertyName>topp:LAND_KM</ogc:PropertyName>
- <ogc:PropertyName>topp:the_geom</ogc:PropertyName>
- <ogc:Filter>
- <ogc:PropertyIsBetween>
- <ogc:PropertyName>topp:LAND_KM</ogc:PropertyName>
- <ogc:LowerBoundary><ogc:Literal>100000</ogc:Literal></ogc:LowerBoundary>
- <ogc:UpperBoundary><ogc:Literal>150000</ogc:Literal></ogc:UpperBoundary>
- </ogc:PropertyIsBetween>
- </ogc:Filter>
- </wfs:Query>
- </wfs:GetFeature>
|