0

Spatial Capabilities (Within) と Logical Operators (And) を組み合わせることは可能ですか? 実際には、ポリゴンに基づいて特定のレコード間でデータをフィルタリングしたいと考えています。

ポリゴン座標とプロパティ名 ID があるとします。そのポリゴン内に 1 ~ 10 の ID があります。これを達成する方法を教えてください。

4

1 に答える 1

1

必要な場合に備えて解決策を見つけました....

    <ogc:Filter xmlns="http://www.opengis.net/ogc">
        <ogc:And>
                <ogc:Within>
                    <ogc:PropertyName>Shape</ogc:PropertyName>
                    <gml:Polygon>
                        Coordinates.................
                    </gml:Polygon>
                </ogc:Within>
                <ogc:PropertyIsGreaterThan>
                    <ogc:PropertyName>OBJECTID</ogc:PropertyName>
                    <ogc:Literal>5</ogc:Literal>
                </ogc:PropertyIsGreaterThan>
                <ogc:PropertyIsLessThan>
                    <ogc:PropertyName>OBJECTID</ogc:PropertyName>
                    <ogc:Literal>10</ogc:Literal>
                </ogc:PropertyIsLessThan>
        </ogc:And>
    </ogc:Filter> 
于 2013-07-11T06:06:51.690 に答える