Skip to content

Commit 548d3b3

Browse files
author
Phil Varner
authored
Merge pull request #22 from stac-api-extensions/pv/fix-bad-links
fix bad links
2 parents 82b0fd5 + d521935 commit 548d3b3

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,21 @@
5858
- **Title:** Filter
5959
- **OpenAPI specification:** [openapi.yaml](openapi.yaml)
6060
- **Conformance Classes:**
61-
- Filter: <http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter>
62-
- Features Filter: <http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter>
63-
- Item Search Filter: <https://api.stacspec.org/v1.0.0-rc.2/item-search#filter>
64-
- CQL2 Text: <http://www.opengis.net/spec/cql2/1.0/conf/cql2-text>
65-
- CQL2 JSON: <http://www.opengis.net/spec/cql2/1.0/conf/cql2-json>
66-
- Basic CQL2: <http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2>
67-
- Advanced Comparison Operators: <http://www.opengis.net/spec/cql2/1.0/conf/advanced-comparison-operators>
68-
- Basic Spatial Operators: <http://www.opengis.net/spec/cql2/1.0/conf/basic-spatial-operators>
69-
- Spatial Operators: <http://www.opengis.net/spec/cql2/1.0/conf/spatial-operators>
70-
- Temporal Operators: <http://www.opengis.net/spec/cql2/1.0/conf/temporal-operators>
71-
- Custom Functions: <http://www.opengis.net/spec/cql2/1.0/conf/functions>
72-
- Arithmetic Expressions: <http://www.opengis.net/spec/cql2/1.0/conf/arithmetic>
73-
- Array Operators: <http://www.opengis.net/spec/cql2/1.0/conf/array-operators>
74-
- Property-Property Comparisons: <http://www.opengis.net/spec/cql2/1.0/conf/property-property>
75-
- Accent and Case-insensitive Comparison: <http://www.opengis.net/spec/cql2/1.0/conf/accent-case-insensitive-comparison>
61+
- Filter: `http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter`
62+
- Features Filter: `http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter`
63+
- Item Search Filter: `https://api.stacspec.org/v1.0.0-rc.2/item-search#filter`
64+
- CQL2 Text: `http://www.opengis.net/spec/cql2/1.0/conf/cql2-text`
65+
- CQL2 JSON: `http://www.opengis.net/spec/cql2/1.0/conf/cql2-json`
66+
- Basic CQL2: `http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2`
67+
- Advanced Comparison Operators: `http://www.opengis.net/spec/cql2/1.0/conf/advanced-comparison-operators`
68+
- Basic Spatial Operators: `http://www.opengis.net/spec/cql2/1.0/conf/basic-spatial-operators`
69+
- Spatial Operators: `http://www.opengis.net/spec/cql2/1.0/conf/spatial-operators`
70+
- Temporal Operators: `http://www.opengis.net/spec/cql2/1.0/conf/temporal-operators`
71+
- Custom Functions: `http://www.opengis.net/spec/cql2/1.0/conf/functions`
72+
- Arithmetic Expressions: `http://www.opengis.net/spec/cql2/1.0/conf/arithmetic`
73+
- Array Operators: `http://www.opengis.net/spec/cql2/1.0/conf/array-operators`
74+
- Property-Property Comparisons: `http://www.opengis.net/spec/cql2/1.0/conf/property-property`
75+
- Accent and Case-insensitive Comparison: `http://www.opengis.net/spec/cql2/1.0/conf/accent-case-insensitive-comparison`
7676
- **Scope:** STAC API - Features, STAC API - Item Search
7777
- **[Extension Maturity Classification](https://github.com/radiantearth/stac-api-spec/tree/main/README.md#maturity-classification):** Pilot
7878
- **Dependencies:**
@@ -238,9 +238,9 @@ Formal definitions and grammars for CQL2 can be found in the
238238
a BNF grammar for CQL2 Text and both a JSON Schema and an OpenAPI specification for CQL2 JSON.
239239
The standalone files are:
240240

241-
- [cql.bnf](https://github.com/opengeospatial/ogcapi-features/blob/master/extensions/cql/standard/schema/cql.bnf)
242-
- [cql.json](https://github.com/opengeospatial/ogcapi-features/blob/master/extensions/cql/standard/schema/cql.json)
243-
- [cql.yml](https://github.com/opengeospatial/ogcapi-features/blob/master/extensions/cql/standard/schema/cql.yml)
241+
- [cql2.bnf](https://github.com/opengeospatial/ogcapi-features/blob/master/cql2/standard/schema/cql2.bnf)
242+
- [cql2.json](https://github.com/opengeospatial/ogcapi-features/blob/master/cql2/standard/schema/cql2.json)
243+
- [cql2.yml](https://github.com/opengeospatial/ogcapi-features/blob/master/cql2/standard/schema/cql2.yml)
244244

245245
These projects have or are developing CQL2 support:
246246

@@ -253,7 +253,7 @@ These projects have or are developing CQL2 support:
253253
- [xtraplatform-spatial](https://github.com/interactive-instruments/xtraplatform-spatial) has support for CQL2 Text and provides an [ANTLR 4 grammer](https://github.com/interactive-instruments/xtraplatform-spatial/tree/master/xtraplatform-cql/src/main/antlr/de/ii/xtraplatform/cql/infra)
254254
- [Geotools](https://github.com/geotools/geotools) has support for [CQL2 text](https://github.com/geotools/geotools/tree/main/modules/library/cql/src/main/java/org/geotools/filter/text/cql2)
255255

256-
Note that the [xbib CQL library (JVM)](https://github.com/xbib/cql) is the OASIS Contextual Query Language, not
256+
Note that the xbib CQL library (JVM) is the OASIS Contextual Query Language, not
257257
OGC CQL, and should not be used to implement this extension, as they are significantly different query languages.
258258
[Stacatto](https://github.com/planetlabs/staccato) uses this for their query language implementation, but it is
259259
not compliant with this extension.

0 commit comments

Comments
 (0)