You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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" } } }
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] ] ] } ] }
The text was updated successfully, but these errors were encountered: