opengeospatial / ogcapi-features

An open standard for querying geospatial information on the web.
https://ogcapi.ogc.org/features
Other
341 stars 85 forks source link

Part 3: Filtering using Spatial dimension #969

Open Karyme-Nava opened 4 days ago

Karyme-Nava commented 4 days ago

If I need to use Spatial dimension as a spatialOperand using the expressions for filtering (as overlaps, contains, touches, etc) in the CQL filter param, how should I specify the Spatial dimension? If I use "property":"geometry" is confusing since a Feature's Spatial dimension is not included in the properties of a Feature's item response. see: Example 8. Examples of a NULL predicate { "not": { "isNull" : { "property": "geometry" } } }

Example 9. Example spatial predicate { "intersects": [ { "property": "geometry" }, { "type": "Polygon", "coordinates": [ [ [36.319836, 32.288087], [36.320041, 32.288032], [36.320210, 32.288402], [36.320008, 32.288458], [36.319836, 32.288087] ] ] } ] }