下面的代码按给定的多边形过滤,coords
但我需要做同样的事情,除了折线。如何使用 找到与折线相交的多边形OGC
?
<ogc:Filter>
<ogc:Intersects>
<ogc:PropertyName>SHAPE</ogc:PropertyName>
<gml:Polygon srsName="urn:ogc:def:crs:EPSG::4326">
<gml:outerBoundaryIs>
<gml:LinearRing>
<gml:coordinates>" + coords + "</gml:coordinates>
</gml:LinearRing>
</gml:outerBoundaryIs>
</gml:Polygon>
</ogc:Intersects>
</ogc:Filter>