Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CQL spatial capability #102

Merged
merged 14 commits into from
Mar 1, 2022
Prev Previous commit
Next Next commit
Add some doc
  • Loading branch information
dr-jts committed Mar 1, 2022
commit 1b1bd4886d90b73e8afcc6477fd1743c0f0ad119
9 changes: 7 additions & 2 deletions FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,21 @@ It includes [*OGC API - Features*](http://docs.opengeospatial.org/is/17-069r3/17
- [x] property names
- [x] character literals
- [x] numeric literals
- [x] spatial literals
- [x] geometry literals
- `POINT`,`LINESTRING`,`POLYGON`,`MULTIPOINT`,`MULTILINESTRING`,`MULTIPOLYGON`,`GEOMETRYCOLLECTION`,`ENVELOPE`
- [ ] temporal literals
- [x] binary comparisons (`<`,`<=`,`>`,`>=`,`=`,`<>`)
- [x] binary comparisons
- `<`,`<=`,`>`,`>=`,`=`,`<>`
- [x] `property [NOT] BETWEEN a AND B`
- [x] `property [NOT] IN ( value-list )`
- [x] `property [NOT] (LIKE | ILIKE) pattern`
- `pattern` can include `%` wildcards
- [x] `property [NOT] IS NULL`
- [x] boolean combinations (`AND`,`OR`,`NOT`)
- [x] spatial predicates
- `INTERSECTS`,`DISJOINT`,`CONTAINS`,`WITHIN`,`EQUALS`,`CROSSES`,`OVERLAPS`,`TOUCHES`
- [x] distance predicate
- `DWITHIN`
- [ ] temporal predicates
- [ ] functions

Expand Down
2 changes: 1 addition & 1 deletion hugo/content/usage/cql.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ and **spatial predicates**.
### Geometry Literals

Geometry literals use Well-Known Text (WKT) to describe
values for points, lines, polygons, and collections:
values for points, lines, polygons (with holes), and collections:

```
POINT (1 2)
Expand Down