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
Copy file name to clipboardExpand all lines: docs/source/cql.rst
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
.. _cql:
1
+
.. _cql2:
2
2
3
-
CQL support
4
-
===========
3
+
CQL2 support
4
+
============
5
5
6
6
OGC Common Query Language (`CQL2`_) is a generic language designed to provide enhanced query and subset/filtering to (primarily) feature and record data.
7
7
@@ -14,7 +14,7 @@ for current provider support.
14
14
Limitations
15
15
-----------
16
16
17
-
Support of CQL is limited to `Basic CQL2 <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-core>`_ and thus it allows to query with the
17
+
Support is limited to `Basic CQL2 <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-core>`_ and thus it allows to query with the
18
18
following predicates:
19
19
20
20
* comparison predicates
@@ -24,9 +24,9 @@ following predicates:
24
24
Formats
25
25
-------
26
26
27
-
Supported providers leverage the CQL2 dialect with the JSON encoding `CQL-JSON <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-json>`_.
27
+
Supported providers leverage the CQL2 dialect with the JSON encoding `CQLJSON <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-json>`_.
28
28
29
-
PostgreSQL supports both `CQL2 JSON <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-json>`_ and `CQL text<https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-text>`_ dialects.
29
+
PostgreSQL supports both `CQL2 JSON <https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-json>`_ and `CQL Text<https://docs.ogc.org/is/21-065r2/21-065r2.html#cql2-text>`_ dialects.
30
30
31
31
Queries
32
32
^^^^^^^
@@ -83,7 +83,7 @@ Or
83
83
]
84
84
}'
85
85
86
-
The same ``BETWEEN`` query using HTTP GET request formatted as CQL text and URL encoded as below:
86
+
The same ``BETWEEN`` query using HTTP GET request formatted as CQL2 text and URL encoded as below:
87
87
88
88
.. code-block:: bash
89
89
@@ -103,7 +103,7 @@ An ``EQUALS`` example for a specific property:
103
103
]
104
104
}'
105
105
106
-
A ``CROSSES`` example via an HTTP GET request. The CQL text is passed via the ``filter`` parameter.
106
+
A ``CROSSES`` example via an HTTP GET request. The CQL2 text is passed via the ``filter`` parameter.
107
107
108
108
.. code-block:: bash
109
109
@@ -122,6 +122,6 @@ The same example, but this time providing a geometry in EWKT format:
Note that the CQL text has been URL encoded. This is required in curl commands but when entering in a browser, plain text can be used e.g. ``CROSSES(foo_geom, LINESTRING(28 -2, 30 -4))``.
125
+
Note that the CQL2 text has been URL encoded. This is required in curl commands but when entering in a browser, plain text can be used e.g. ``CROSSES(foo_geom, LINESTRING(28 -2, 30 -4))``.
0 commit comments