├── .gitignore ├── CHARTER.adoc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── asciidoctor.json ├── core ├── README.md ├── examples │ ├── README.md │ ├── json │ │ ├── Collection.json │ │ ├── Collections.json │ │ ├── ConformsTo.json │ │ └── LandingPage.json │ ├── openapi │ │ ├── README.md │ │ ├── ogcapi-features-1-example1.yaml │ │ └── ogcapi-features-1-example2.yaml │ └── xml │ │ ├── Api.xml │ │ ├── Collection.xml │ │ ├── Collections.xml │ │ ├── ConformsTo.xml │ │ ├── FeatureCollection.xml │ │ ├── LandingPage.xml │ │ └── README.md ├── openapi │ ├── README.md │ ├── ogcapi-features-1-oas30.yaml │ ├── ogcapi-features-1-oas31.yaml │ ├── ogcapi-features-1.yaml │ ├── parameters │ │ ├── bbox.yaml │ │ ├── collectionId.yaml │ │ ├── datetime.yaml │ │ ├── featureId.yaml │ │ └── limit.yaml │ └── schemas │ │ ├── collection.yaml │ │ ├── collections.yaml │ │ ├── confClasses.yaml │ │ ├── exception.yaml │ │ ├── extent.yaml │ │ ├── featureCollectionGeoJSON.yaml │ │ ├── featureGeoJSON.yaml │ │ ├── geometryGeoJSON.yaml │ │ ├── geometrycollectionGeoJSON.yaml │ │ ├── landingPage.yaml │ │ ├── linestringGeoJSON.yaml │ │ ├── link.yaml │ │ ├── linkBase.yaml │ │ ├── linkTemplate.yaml │ │ ├── multilinestringGeoJSON.yaml │ │ ├── multipointGeoJSON.yaml │ │ ├── multipolygonGeoJSON.yaml │ │ ├── numberMatched.yaml │ │ ├── numberReturned.yaml │ │ ├── pointGeoJSON.yaml │ │ ├── polygonGeoJSON.yaml │ │ └── timeStamp.yaml ├── release-notes.md ├── standard │ ├── 17-069.adoc │ ├── ISO19168_draft_ogc.docx │ ├── README.md │ ├── abstract_tests │ │ ├── ATS_class_core.adoc │ │ ├── ATS_class_geojson.adoc │ │ ├── ATS_class_gmlsf0.adoc │ │ ├── ATS_class_gmlsf2.adoc │ │ ├── ATS_class_html.adoc │ │ ├── ATS_class_oas30.adoc │ │ ├── ATS_class_oas31.adoc │ │ ├── README.md │ │ ├── core │ │ │ ├── ATS_api-definition-op.adoc │ │ │ ├── ATS_api-definition-success.adoc │ │ │ ├── ATS_conformance-op.adoc │ │ │ ├── ATS_conformance-success.adoc │ │ │ ├── ATS_crs84.adoc │ │ │ ├── ATS_f-links.adoc │ │ │ ├── ATS_f-op.adoc │ │ │ ├── ATS_f-success.adoc │ │ │ ├── ATS_fc-bbox-definition.adoc │ │ │ ├── ATS_fc-bbox-response.adoc │ │ │ ├── ATS_fc-limit-definition.adoc │ │ │ ├── ATS_fc-limit-response.adoc │ │ │ ├── ATS_fc-links.adoc │ │ │ ├── ATS_fc-md-extent-multi.adoc │ │ │ ├── ATS_fc-md-extent.adoc │ │ │ ├── ATS_fc-md-items-links.adoc │ │ │ ├── ATS_fc-md-items.adoc │ │ │ ├── ATS_fc-md-links.adoc │ │ │ ├── ATS_fc-md-op.adoc │ │ │ ├── ATS_fc-md-success.adoc │ │ │ ├── ATS_fc-numberMatched.adoc │ │ │ ├── ATS_fc-numberReturned.adoc │ │ │ ├── ATS_fc-op.adoc │ │ │ ├── ATS_fc-response.adoc │ │ │ ├── ATS_fc-time-definition.adoc │ │ │ ├── ATS_fc-time-response.adoc │ │ │ ├── ATS_fc-timeStamp.adoc │ │ │ ├── ATS_http.adoc │ │ │ ├── ATS_query-param-invalid.adoc │ │ │ ├── ATS_query-param-unknown.adoc │ │ │ ├── ATS_root-op.adoc │ │ │ ├── ATS_root-success.adoc │ │ │ ├── ATS_sfc-md-op.adoc │ │ │ └── ATS_sfc-md-success.adoc │ │ ├── geojson │ │ │ ├── ATS_content.adoc │ │ │ └── ATS_definition.adoc │ │ ├── gmlsf0 │ │ │ ├── ATS_content.adoc │ │ │ └── ATS_definition.adoc │ │ ├── gmlsf2 │ │ │ ├── ATS_content.adoc │ │ │ └── ATS_definition.adoc │ │ ├── html │ │ │ ├── ATS_content.adoc │ │ │ └── ATS_definition.adoc │ │ ├── oas30 │ │ │ ├── ATS_completeness.adoc │ │ │ ├── ATS_definition-1.adoc │ │ │ ├── ATS_definition-2.adoc │ │ │ ├── ATS_exception-codes.adoc │ │ │ ├── ATS_oas-impl.adoc │ │ │ └── ATS_security.adoc │ │ └── oas31 │ │ │ ├── ATS_completeness.adoc │ │ │ ├── ATS_definition-1.adoc │ │ │ ├── ATS_definition-2.adoc │ │ │ ├── ATS_exception-codes.adoc │ │ │ ├── ATS_oas-impl.adoc │ │ │ └── ATS_security.adoc │ ├── annex_ats.adoc │ ├── annex_bibliography.adoc │ ├── annex_history.adoc │ ├── clause_0_front_material.adoc │ ├── clause_10_media_types.adoc │ ├── clause_11_security_considerations.adoc │ ├── clause_1_scope.adoc │ ├── clause_2_conformance.adoc │ ├── clause_3_references.adoc │ ├── clause_4_terms_and_definitions.adoc │ ├── clause_5_conventions.adoc │ ├── clause_6_overview.adoc │ ├── clause_7_core.adoc │ ├── clause_8_encodings.adoc │ ├── clause_9_oas.adoc │ ├── images │ │ └── clause_4_terms_and_definitions-2028d.png │ ├── recomendations │ │ ├── core │ │ │ ├── PER_additional-status-codes.adoc │ │ │ ├── PER_api-definition-uri.adoc │ │ │ ├── PER_f-id.adoc │ │ │ ├── PER_fc-bbox-default.adoc │ │ │ ├── PER_fc-filters-default.adoc │ │ │ ├── PER_fc-limit-default-minimum-maximum.adoc │ │ │ ├── PER_fc-limit-response-2.adoc │ │ │ ├── PER_fc-md-extent-extensions.adoc │ │ │ ├── PER_fc-md-items.adoc │ │ │ ├── PER_fc-prev.adoc │ │ │ ├── PER_fc-time-default.adoc │ │ │ ├── REC_api-definition-oas.adoc │ │ │ ├── REC_cross-origin.adoc │ │ │ ├── REC_etag.adoc │ │ │ ├── REC_fc-extent.adoc │ │ │ ├── REC_fc-filters.adoc │ │ │ ├── REC_fc-md-descriptions.adoc │ │ │ ├── REC_fc-md-extent-single.adoc │ │ │ ├── REC_fc-md-item-link-templates.adoc │ │ │ ├── REC_fc-md-license.adoc │ │ │ ├── REC_fc-md-self-links.adoc │ │ │ ├── REC_fc-next-1.adoc │ │ │ ├── REC_fc-next-2.adoc │ │ │ ├── REC_fc-next-3.adoc │ │ │ ├── REC_geojson.adoc │ │ │ ├── REC_head.adoc │ │ │ ├── REC_html.adoc │ │ │ ├── REC_link-header.adoc │ │ │ ├── REC_rfc3339.adoc │ │ │ ├── REC_rfc9457.adoc │ │ │ ├── REC_root-links.adoc │ │ │ ├── REC_sfc-md-links.adoc │ │ │ └── REC_string_i18n.adoc │ │ ├── html │ │ │ └── REC_schema-org.adoc │ │ └── oas │ │ │ └── REC_f-key-properties.adoc │ ├── requirements │ │ ├── README.md │ │ ├── core │ │ │ ├── REQ_api-definition-op.adoc │ │ │ ├── REQ_api-definition-success.adoc │ │ │ ├── REQ_conformance-op.adoc │ │ │ ├── REQ_conformance-success.adoc │ │ │ ├── REQ_crs84.adoc │ │ │ ├── REQ_f-links.adoc │ │ │ ├── REQ_f-op.adoc │ │ │ ├── REQ_f-success.adoc │ │ │ ├── REQ_fc-bbox-definition.adoc │ │ │ ├── REQ_fc-bbox-response.adoc │ │ │ ├── REQ_fc-limit-definition.adoc │ │ │ ├── REQ_fc-limit-response-1.adoc │ │ │ ├── REQ_fc-links.adoc │ │ │ ├── REQ_fc-md-extent-multi.adoc │ │ │ ├── REQ_fc-md-extent.adoc │ │ │ ├── REQ_fc-md-items-links.adoc │ │ │ ├── REQ_fc-md-items.adoc │ │ │ ├── REQ_fc-md-links.adoc │ │ │ ├── REQ_fc-md-op.adoc │ │ │ ├── REQ_fc-md-success.adoc │ │ │ ├── REQ_fc-numberMatched.adoc │ │ │ ├── REQ_fc-numberReturned.adoc │ │ │ ├── REQ_fc-op.adoc │ │ │ ├── REQ_fc-rel-type.adoc │ │ │ ├── REQ_fc-response.adoc │ │ │ ├── REQ_fc-time-definition.adoc │ │ │ ├── REQ_fc-time-response.adoc │ │ │ ├── REQ_fc-timeStamp.adoc │ │ │ ├── REQ_http.adoc │ │ │ ├── REQ_query-param-invalid.adoc │ │ │ ├── REQ_query-param-unknown.adoc │ │ │ ├── REQ_root-op.adoc │ │ │ ├── REQ_root-success.adoc │ │ │ ├── REQ_sfc-md-op.adoc │ │ │ └── REQ_sfc-md-success.adoc │ │ ├── geojson │ │ │ ├── REQ_content.adoc │ │ │ └── REQ_definition.adoc │ │ ├── gmlsf0 │ │ │ ├── REQ_content.adoc │ │ │ ├── REQ_definition.adoc │ │ │ └── REQ_headers.adoc │ │ ├── gmlsf2 │ │ │ ├── REQ_content.adoc │ │ │ ├── REQ_definition.adoc │ │ │ └── REQ_headers.adoc │ │ ├── html │ │ │ ├── REQ_content.adoc │ │ │ └── REQ_definition.adoc │ │ ├── oas │ │ │ ├── REQ_completeness.adoc │ │ │ ├── REQ_exception-codes.adoc │ │ │ ├── REQ_oas-definition.adoc │ │ │ ├── REQ_oas-impl.adoc │ │ │ └── REQ_security.adoc │ │ ├── oas30 │ │ │ └── REQ_oas-definition.adoc │ │ ├── oas31 │ │ │ └── REQ_oas-definition.adoc │ │ ├── requirements_class_core.adoc │ │ ├── requirements_class_geojson.adoc │ │ ├── requirements_class_gmlsf0.adoc │ │ ├── requirements_class_gmlsf2.adoc │ │ ├── requirements_class_html.adoc │ │ ├── requirements_class_oas.adoc │ │ ├── requirements_class_oas30.adoc │ │ └── requirements_class_oas31.adoc │ └── standard.css └── xml │ ├── core-sf.xsd │ └── core.xsd ├── cql2 ├── README.md ├── cql2-cc.png └── standard │ ├── 21-065.adoc │ ├── README.md │ ├── annex_ats.adoc │ ├── annex_ats_accent-insensitive-comparison.adoc │ ├── annex_ats_advanced-comparison-operators.adoc │ ├── annex_ats_arithmetic.adoc │ ├── annex_ats_array-functions.adoc │ ├── annex_ats_basic-cql2.adoc │ ├── annex_ats_basic-spatial-functions-plus.adoc │ ├── annex_ats_basic-spatial-functions.adoc │ ├── annex_ats_case-insensitive-comparison.adoc │ ├── annex_ats_cql2-json.adoc │ ├── annex_ats_cql2-text.adoc │ ├── annex_ats_functions.adoc │ ├── annex_ats_property-property.adoc │ ├── annex_ats_spatial-functions.adoc │ ├── annex_ats_temporal-functions.adoc │ ├── annex_bibliography.adoc │ ├── annex_bnf.adoc │ ├── annex_history.adoc │ ├── annex_js.adoc │ ├── clause_0_front_material.adoc │ ├── clause_1_scope.adoc │ ├── clause_2_conformance.adoc │ ├── clause_3_references.adoc │ ├── clause_4_terms_and_definitions.adoc │ ├── clause_5_conventions.adoc │ ├── clause_6_basic_cql2.adoc │ ├── clause_7_enhanced.adoc │ ├── clause_8_encodings.adoc │ ├── clause_9_media_types.adoc │ ├── data │ ├── ne110m4cql2.gpkg │ ├── ne_110m_admin_0_countries.json │ ├── ne_110m_populated_places_simple.json │ └── ne_110m_rivers_lake_centerlines.json │ ├── images │ ├── DE9IM_Matrix.png │ ├── crosses.png │ ├── overlaps.png │ ├── temporal_ops.png │ ├── touches.png │ └── within.png │ ├── recommendations │ ├── accent-insensitive-comparison │ │ └── REC_special_japanese_non_spacing_marks.adoc │ ├── advanced-comparison-operators │ │ ├── PER_between-predicate.adoc │ │ ├── PER_in-predicate.adoc │ │ └── PER_like-predicate.adoc │ ├── array-functions │ │ └── PER_array-predicates.adoc │ ├── basic-cql2 │ │ ├── PER_cql2-filter.adoc │ │ ├── PER_type-casts.adoc │ │ └── REC_string-normalization.adoc │ ├── basic-spatial-functions │ │ ├── PER_spatial-data-types.adoc │ │ └── PER_spatial-predicates.adoc │ ├── cql2-json │ │ └── PER_basic-cql2.adoc │ └── temporal-functions │ │ └── PER_temporal-predicates.adoc │ ├── requirements │ ├── README.md │ ├── accent-insensitive-comparison │ │ └── REQ_accenti-function.adoc │ ├── advanced-comparison-operators │ │ ├── REQ_between-predicate.adoc │ │ ├── REQ_in-predicate.adoc │ │ └── REQ_like-predicate.adoc │ ├── arithmetic │ │ └── REQ_arithmetic.adoc │ ├── array-functions │ │ └── REQ_array-predicates.adoc │ ├── basic-cql2 │ │ ├── REQ_binary-comparison-predicate.adoc │ │ ├── REQ_cql2-filter.adoc │ │ ├── REQ_null-predicate.adoc │ │ └── REQ_property.adoc │ ├── basic-spatial-functions-plus │ │ └── REQ_spatial-data-types.adoc │ ├── basic-spatial-functions │ │ ├── REQ_spatial-functions.adoc │ │ └── REQ_spatial-predicate.adoc │ ├── case-insensitive-comparison │ │ └── REQ_casei-function.adoc │ ├── cql2-json │ │ ├── REQ_accent-insensitive-comparison.adoc │ │ ├── REQ_advanced-comparison-operators.adoc │ │ ├── REQ_arithmetic.adoc │ │ ├── REQ_array-functions.adoc │ │ ├── REQ_basic-cql2.adoc │ │ ├── REQ_basic-spatial-functions-plus.adoc │ │ ├── REQ_basic-spatial-functions.adoc │ │ ├── REQ_case-insensitive-comparison.adoc │ │ ├── REQ_functions.adoc │ │ ├── REQ_property-property.adoc │ │ ├── REQ_spatial-functions.adoc │ │ └── REQ_temporal-functions.adoc │ ├── cql2-text │ │ ├── REQ_accent-insensitive-comparison.adoc │ │ ├── REQ_advanced-comparison-operators.adoc │ │ ├── REQ_arithmetic.adoc │ │ ├── REQ_array-functions.adoc │ │ ├── REQ_basic-cql2.adoc │ │ ├── REQ_basic-spatial-functions-plus.adoc │ │ ├── REQ_basic-spatial-functions.adoc │ │ ├── REQ_case-insensitive-comparison.adoc │ │ ├── REQ_escaping.adoc │ │ ├── REQ_functions.adoc │ │ ├── REQ_property-property.adoc │ │ ├── REQ_spatial-functions.adoc │ │ └── REQ_temporal-functions.adoc │ ├── functions │ │ ├── REQ_functions.adoc │ │ ├── REQ_get-functions-operation.adoc │ │ └── REQ_get-functions-response-json.adoc │ ├── property-property │ │ └── REQ_withdraw-permissions.adoc │ ├── requirements_class_accent-insensitive-comparison.adoc │ ├── requirements_class_advanced_comparison_operators.adoc │ ├── requirements_class_arithmetic.adoc │ ├── requirements_class_array-functions.adoc │ ├── requirements_class_basic-cql2.adoc │ ├── requirements_class_basic-spatial-functions-plus.adoc │ ├── requirements_class_basic-spatial-functions.adoc │ ├── requirements_class_case-insensitive-comparison.adoc │ ├── requirements_class_cql2-json.adoc │ ├── requirements_class_cql2-text.adoc │ ├── requirements_class_functions.adoc │ ├── requirements_class_property_property.adoc │ ├── requirements_class_spatial-functions.adoc │ ├── requirements_class_temporal-functions.adoc │ ├── spatial-functions │ │ └── REQ_spatial-functions.adoc │ └── temporal-functions │ │ ├── REQ_temporal-functions.adoc │ │ └── REQ_temporal-predicates.adoc │ ├── schema │ ├── cql2.bnf │ ├── cql2.json │ ├── cql2.yml │ ├── examples │ │ ├── json │ │ │ ├── clause6_01.json │ │ │ ├── clause6_02a.json │ │ │ ├── clause6_02b.json │ │ │ ├── clause6_02c.json │ │ │ ├── clause6_02d.json │ │ │ ├── clause6_03.json │ │ │ ├── clause7_01.json │ │ │ ├── clause7_02.json │ │ │ ├── clause7_03a.json │ │ │ ├── clause7_03b.json │ │ │ ├── clause7_04.json │ │ │ ├── clause7_05.json │ │ │ ├── clause7_07.json │ │ │ ├── clause7_10.json │ │ │ ├── clause7_12.json │ │ │ ├── clause7_13.json │ │ │ ├── clause7_15.json │ │ │ ├── clause7_16.json │ │ │ ├── clause7_17.json │ │ │ ├── clause7_18.json │ │ │ ├── clause7_19.json │ │ │ ├── example01.json │ │ │ ├── example02.json │ │ │ ├── example03.json │ │ │ ├── example04.json │ │ │ ├── example05a.json │ │ │ ├── example05b.json │ │ │ ├── example06a.json │ │ │ ├── example06b.json │ │ │ ├── example07.json │ │ │ ├── example08.json │ │ │ ├── example09.json │ │ │ ├── example10.json │ │ │ ├── example11.json │ │ │ ├── example12.json │ │ │ ├── example13.json │ │ │ ├── example14.json │ │ │ ├── example15.json │ │ │ ├── example16.json │ │ │ ├── example17.json │ │ │ ├── example18.json │ │ │ ├── example19.json │ │ │ ├── example20.json │ │ │ ├── example21.json │ │ │ ├── example22.json │ │ │ ├── example23.json │ │ │ ├── example24.json │ │ │ ├── example25.json │ │ │ ├── example26.json │ │ │ ├── example27.json │ │ │ ├── example28.json │ │ │ ├── example29.json │ │ │ ├── example30.json │ │ │ ├── example31.json │ │ │ ├── example32.json │ │ │ ├── example33.json │ │ │ ├── example34.json │ │ │ ├── example35.json │ │ │ ├── example36.json │ │ │ ├── example37.json │ │ │ ├── example38.json │ │ │ ├── example39.json │ │ │ ├── example40.json │ │ │ ├── example41.json │ │ │ ├── example42.json │ │ │ ├── example43.json │ │ │ ├── example44.json │ │ │ ├── example45.json │ │ │ ├── example46.json │ │ │ ├── example47.json │ │ │ ├── example48.json │ │ │ ├── example49.json │ │ │ ├── example50.json │ │ │ ├── example51.json │ │ │ ├── example52.json │ │ │ ├── example53.json │ │ │ ├── example54.json │ │ │ ├── example55.json │ │ │ ├── example56.json │ │ │ ├── example57.json │ │ │ ├── example58.json │ │ │ ├── example59.json │ │ │ ├── example60.json │ │ │ ├── example61.json │ │ │ ├── example62.json │ │ │ ├── example63.json │ │ │ ├── example64.json │ │ │ ├── example65.json │ │ │ ├── example66.json │ │ │ ├── example67.json │ │ │ ├── example68.json │ │ │ ├── example69.json │ │ │ ├── example70.json │ │ │ ├── example71.json │ │ │ ├── example72.json │ │ │ ├── example73.json │ │ │ ├── example74.json │ │ │ ├── example75.json │ │ │ ├── example76.json │ │ │ ├── example77.json │ │ │ ├── example78.json │ │ │ ├── example79.json │ │ │ ├── example80.json │ │ │ ├── example81.json │ │ │ ├── example82.json │ │ │ ├── example83.json │ │ │ ├── example84.json │ │ │ ├── example85.json │ │ │ ├── example86.json │ │ │ └── validate.sh │ │ └── text │ │ │ ├── clause6_01.txt │ │ │ ├── clause6_02a.txt │ │ │ ├── clause6_02b.txt │ │ │ ├── clause6_02c.txt │ │ │ ├── clause6_02d.txt │ │ │ ├── clause6_03.txt │ │ │ ├── clause7_01.txt │ │ │ ├── clause7_02.txt │ │ │ ├── clause7_03a.txt │ │ │ ├── clause7_03b.txt │ │ │ ├── clause7_04.txt │ │ │ ├── clause7_05.txt │ │ │ ├── clause7_07.txt │ │ │ ├── clause7_10.txt │ │ │ ├── clause7_12.txt │ │ │ ├── clause7_13.txt │ │ │ ├── clause7_15.txt │ │ │ ├── clause7_16.txt │ │ │ ├── clause7_17.txt │ │ │ ├── clause7_18.txt │ │ │ ├── clause7_19.txt │ │ │ ├── example01.txt │ │ │ ├── example02.txt │ │ │ ├── example03.txt │ │ │ ├── example04.txt │ │ │ ├── example05a.txt │ │ │ ├── example05b.txt │ │ │ ├── example06a.txt │ │ │ ├── example06b.txt │ │ │ ├── example07.txt │ │ │ ├── example08.txt │ │ │ ├── example09.txt │ │ │ ├── example10.txt │ │ │ ├── example11.txt │ │ │ ├── example12.txt │ │ │ ├── example13.txt │ │ │ ├── example14.txt │ │ │ ├── example15.txt │ │ │ ├── example16.txt │ │ │ ├── example17.txt │ │ │ ├── example18.txt │ │ │ ├── example19.txt │ │ │ ├── example20.txt │ │ │ ├── example21.txt │ │ │ ├── example22.txt │ │ │ ├── example23.txt │ │ │ ├── example24.txt │ │ │ ├── example25.txt │ │ │ ├── example26.txt │ │ │ ├── example27.txt │ │ │ ├── example28.txt │ │ │ ├── example29.txt │ │ │ ├── example30.txt │ │ │ ├── example31.txt │ │ │ ├── example32.txt │ │ │ ├── example33.txt │ │ │ ├── example34.txt │ │ │ ├── example35.txt │ │ │ ├── example36-alt01.txt │ │ │ ├── example36.txt │ │ │ ├── example37.txt │ │ │ ├── example38-alt01.txt │ │ │ ├── example38.txt │ │ │ ├── example39.txt │ │ │ ├── example40-alt01.txt │ │ │ ├── example40.txt │ │ │ ├── example41.txt │ │ │ ├── example42-alt01.txt │ │ │ ├── example42.txt │ │ │ ├── example43-alt01.txt │ │ │ ├── example43.txt │ │ │ ├── example44-alt01.txt │ │ │ ├── example44.txt │ │ │ ├── example45.txt │ │ │ ├── example46-alt01.txt │ │ │ ├── example46.txt │ │ │ ├── example47.txt │ │ │ ├── example48.txt │ │ │ ├── example49-alt01.txt │ │ │ ├── example49.txt │ │ │ ├── example50.txt │ │ │ ├── example51.txt │ │ │ ├── example52.txt │ │ │ ├── example53.txt │ │ │ ├── example54-alt01.txt │ │ │ ├── example54.txt │ │ │ ├── example55-alt01.txt │ │ │ ├── example55.txt │ │ │ ├── example56.txt │ │ │ ├── example57.txt │ │ │ ├── example58.txt │ │ │ ├── example59.txt │ │ │ ├── example60.txt │ │ │ ├── example61.txt │ │ │ ├── example62.txt │ │ │ ├── example63.txt │ │ │ ├── example64.txt │ │ │ ├── example65.txt │ │ │ ├── example66.txt │ │ │ ├── example67.txt │ │ │ ├── example68.txt │ │ │ ├── example69.txt │ │ │ ├── example70.txt │ │ │ ├── example71.txt │ │ │ ├── example72.txt │ │ │ ├── example73.txt │ │ │ ├── example74.txt │ │ │ ├── example75.txt │ │ │ ├── example76.txt │ │ │ ├── example77.txt │ │ │ ├── example78.txt │ │ │ ├── example79.txt │ │ │ ├── example80.txt │ │ │ ├── example81.txt │ │ │ ├── example82.txt │ │ │ ├── example83.txt │ │ │ ├── example84.txt │ │ │ ├── example85-alt01.txt │ │ │ ├── example85.txt │ │ │ └── example86.txt │ └── functions.yml │ └── standard.css ├── docs ├── background.md ├── ogc-web-api-guidelines-assessment.md ├── outdated │ ├── Parts.md │ └── placeholder-additional-conformance-class │ │ ├── examples │ │ └── dummy.yaml │ │ ├── parameters │ │ ├── dummy.yaml │ │ ├── f.yaml │ │ ├── resultType.yaml │ │ ├── startIndex.yaml │ │ └── zzz_save.yaml │ │ └── schemas │ │ └── dummy.yaml ├── overview.md └── uml │ ├── README.md │ ├── data_types.png │ ├── links_to_external_resources.png │ ├── ogc-api-features-core.eap │ ├── ogc-api-features-core.xml │ └── resources.png ├── extensions ├── README.md ├── crs │ ├── README.md │ ├── openapi │ │ ├── headers │ │ │ └── Content-Crs.yaml │ │ ├── ogcapi-features-2.yaml │ │ ├── parameters │ │ │ ├── bbox-crs.yaml │ │ │ └── crs.yaml │ │ └── schemas │ │ │ ├── collection.yaml │ │ │ ├── collectionExtensionCrs.yaml │ │ │ ├── collections.yaml │ │ │ └── collectionsExtensionCrs.yaml │ ├── release-notes.md │ └── standard │ │ ├── 18-058.adoc │ │ ├── README.md │ │ ├── abstract_tests │ │ ├── ATS_class_crs.adoc │ │ ├── README.md │ │ └── crs │ │ │ ├── ATS_bbox-crs-parameter-default.adoc │ │ │ ├── ATS_bbox-crs-parameter-invalid.adoc │ │ │ ├── ATS_bbox-crs-parameter.adoc │ │ │ ├── ATS_crs-parameter-default.adoc │ │ │ ├── ATS_crs-parameter-invalid.adoc │ │ │ ├── ATS_crs-parameter-transform.adoc │ │ │ ├── ATS_crs-parameter.adoc │ │ │ ├── ATS_crs-uri.adoc │ │ │ ├── ATS_default-crs.adoc │ │ │ └── ATS_storageCrs.adoc │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── annex_n.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_crs.adoc │ │ ├── clause_7_media_types.adoc │ │ ├── clause_8_security_considerations.adoc │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── recommendations │ │ └── crs │ │ │ ├── PER_fc-crs-action.adoc │ │ │ ├── REC_crs-format-model.adoc │ │ │ └── REC_fc-md-coordinateEpoch.adoc │ │ ├── requirements │ │ ├── README.md │ │ ├── crs │ │ │ ├── REQ_bbox-crs-exception.adoc │ │ │ ├── REQ_crs-exception.adoc │ │ │ ├── REQ_crs-uri.adoc │ │ │ ├── REQ_fc-bbox-crs-action.adoc │ │ │ ├── REQ_fc-bbox-crs-default-value.adoc │ │ │ ├── REQ_fc-bbox-crs-definition.adoc │ │ │ ├── REQ_fc-bbox-crs-valid-values.adoc │ │ │ ├── REQ_fc-crs-action.adoc │ │ │ ├── REQ_fc-crs-default-value.adoc │ │ │ ├── REQ_fc-crs-definition.adoc │ │ │ ├── REQ_fc-crs-valid-value.adoc │ │ │ ├── REQ_fc-md-crs-list-global.adoc │ │ │ ├── REQ_fc-md-crs-list.adoc │ │ │ ├── REQ_fc-md-storageCrs-valid-value.adoc │ │ │ ├── REQ_fc-md-storageCrs.adoc │ │ │ ├── REQ_geojson.adoc │ │ │ ├── REQ_ogc-crs-header-value.adoc │ │ │ └── REQ_ogc-crs-header.adoc │ │ └── requirements_class_crs.adoc │ │ └── standard.css ├── filtering │ ├── README.md │ └── standard │ │ ├── 19-079.adoc │ │ ├── README.md │ │ ├── abstract_tests │ │ ├── README.md │ │ └── cc │ │ │ └── TEST001.adoc │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_10_media_types.adoc │ │ ├── clause_11_security_considerations.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_queryables.adoc │ │ ├── clause_7_queryables-query-parameters.adoc │ │ ├── clause_8_filter.adoc │ │ ├── clause_9_features.adoc │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── openapi │ │ ├── ogcapi-features-3.yaml │ │ ├── parameters │ │ │ ├── filter-crs.yml │ │ │ ├── filter-lang.yml │ │ │ └── filter.yml │ │ └── schemas │ │ │ └── functions.yml │ │ ├── recommendations │ │ ├── features-filter │ │ │ ├── REC_json-encoding.adoc │ │ │ └── REC_text-encoding.adoc │ │ ├── filter │ │ │ ├── PER_filter-default.adoc │ │ │ └── REC_filter-crs-list.adoc │ │ └── queryables │ │ │ └── REC_queryables-schema.adoc │ │ ├── requirements │ │ ├── README.md │ │ ├── features-filter │ │ │ ├── REQ_filter-crs-param.adoc │ │ │ ├── REQ_filter-lang-param.adoc │ │ │ ├── REQ_filter-param.adoc │ │ │ ├── REQ_get-queryables-op.adoc │ │ │ ├── REQ_queryables-link.adoc │ │ │ └── REQ_response.adoc │ │ ├── filter │ │ │ ├── REQ_filter-crs-param.adoc │ │ │ ├── REQ_filter-crs-wgs84.adoc │ │ │ ├── REQ_filter-lang-param.adoc │ │ │ ├── REQ_filter-param.adoc │ │ │ ├── REQ_get-functions-operation.adoc │ │ │ ├── REQ_get-functions-response-json.adoc │ │ │ ├── REQ_mixing-expressions.adoc │ │ │ └── REQ_response.adoc │ │ ├── queryables-query-parameters │ │ │ └── REQ_parameters.adoc │ │ ├── queryables │ │ │ ├── REQ_expression-construction.adoc │ │ │ ├── REQ_get-queryables-op.adoc │ │ │ ├── REQ_get-queryables-response.adoc │ │ │ └── REQ_queryables-link.adoc │ │ ├── requirements_class_features-filter.adoc │ │ ├── requirements_class_filter.adoc │ │ ├── requirements_class_queryables-query-parameters.adoc │ │ └── requirements_class_queryables.adoc │ │ └── standard.css ├── geometry-simplification │ ├── README.md │ └── standard │ │ ├── 24-020.adoc │ │ ├── README.md │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_zoom_level.adoc │ │ ├── clause_7_zoom_level_features.adoc │ │ ├── clause_8_security_considerations.adoc │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── schema │ │ └── zoom-level.yaml │ │ └── standard.css ├── property-selection │ ├── README.md │ └── standard │ │ ├── 24-019.adoc │ │ ├── README.md │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_properties.adoc │ │ ├── clause_7_properties_features.adoc │ │ ├── clause_8_security_considerations.adoc │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── schema │ │ └── properties.yaml │ │ └── standard.css ├── schemas │ ├── README.md │ └── standard │ │ ├── 23-058.adoc │ │ ├── README.md │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_10_returnables_and_receivables.adoc │ │ ├── clause_11_queryables.adoc │ │ ├── clause_12_sortables.adoc │ │ ├── clause_13_profile_parameter.adoc │ │ ├── clause_14_profile_references.adoc │ │ ├── clause_15_profile_codelists.adoc │ │ ├── clause_16_profile_domains.adoc │ │ ├── clause_17_media_types.adoc │ │ ├── clause_18_security_considerations.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_overview.adoc │ │ ├── clause_7_schemas.adoc │ │ ├── clause_8_advanced_property_roles.adoc │ │ ├── clause_9_references.adoc │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ └── standard.css ├── sorting │ ├── README.md │ └── standard │ │ ├── 24-030.adoc │ │ ├── README.md │ │ ├── abstract_tests │ │ ├── README.md │ │ └── cc │ │ │ └── TEST001.adoc │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_10_security_considerations.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_sortables.adoc │ │ ├── clause_7_sorting.adoc │ │ ├── clause_8_features.adoc │ │ ├── clause_9_media_types.adoc │ │ ├── examples │ │ ├── README.md │ │ └── json │ │ │ ├── defaultSortOrder.json │ │ │ └── sortables.json │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── openapi │ │ ├── ogcapi-features-3.yaml │ │ ├── parameters │ │ │ └── sortby.yaml │ │ ├── responses │ │ │ └── Sortables.yaml │ │ └── schemas │ │ │ └── schema.yaml │ │ ├── recommendations │ │ ├── features-sorting │ │ │ ├── REC_json-encoding.adoc │ │ │ └── REC_text-encoding.adoc │ │ └── sortables │ │ │ ├── PER_synthetic.adoc │ │ │ └── REC_sortables-schema.adoc │ │ ├── requirements │ │ ├── README.md │ │ ├── features-sorting │ │ │ ├── REQ_get-sortables-op.adoc │ │ │ ├── REQ_response.adoc │ │ │ ├── REQ_sortables-link.adoc │ │ │ └── REQ_sortby-param.adoc │ │ ├── requirements_class_features-sorting.adoc │ │ ├── requirements_class_sortables.adoc │ │ ├── requirements_class_sorting.adoc │ │ ├── sortables │ │ │ ├── REQ_defaultSortOrder-definition.adoc │ │ │ ├── REQ_get-sortables-op.adoc │ │ │ ├── REQ_get-sortables-success.adoc │ │ │ └── REQ_sortables-link.adoc │ │ └── sorting │ │ │ ├── REQ_sortby-definition.adoc │ │ │ └── REQ_sortby-response.adoc │ │ └── standard.css ├── text-search │ ├── README.md │ └── standard │ │ ├── 24-031.adoc │ │ ├── README.md │ │ ├── abstract_tests │ │ ├── README.md │ │ └── cc │ │ │ └── TEST001.adoc │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_text-search.adoc │ │ ├── clause_7_features.adoc │ │ ├── clause_8_media_types.adoc │ │ ├── clause_9_security_considerations.adoc │ │ ├── examples │ │ ├── README.md │ │ ├── json │ │ │ ├── defaultSortOrder.json │ │ │ └── sortables.json │ │ └── yaml │ │ │ ├── collections │ │ │ ├── localResourcesCatalog.yaml │ │ │ └── localResourcesItem.yaml │ │ │ └── processes │ │ │ ├── localResourcesCatalog.yaml │ │ │ └── localResourcesItem.yaml │ │ ├── figures │ │ └── README.md │ │ ├── images │ │ └── README.md │ │ ├── openapi │ │ ├── ogcapi-features-3.yaml │ │ ├── parameters │ │ │ └── sortby.yaml │ │ ├── responses │ │ │ └── Sortables.yaml │ │ └── schemas │ │ │ └── schema.yaml │ │ ├── recommendations │ │ ├── features-sorting │ │ │ ├── REC_json-encoding.adoc │ │ │ └── REC_text-encoding.adoc │ │ └── text-search │ │ │ └── REC_param-q.adoc │ │ ├── requirements │ │ ├── README.md │ │ ├── features-text-search │ │ │ ├── REQ_q-param.adoc │ │ │ └── REQ_response.adoc │ │ ├── requirements_class_features-text-search.adoc │ │ ├── requirements_class_text-search.adoc │ │ └── text-search │ │ │ ├── REQ_query-param-q-definition.adoc │ │ │ └── REQ_query-param-q-response.adoc │ │ └── standard.css └── transactions │ ├── README.md │ ├── archive │ └── TX_Notes.adoc │ ├── atomic-batch │ └── README.md │ ├── create-replace-update-delete │ ├── README.md │ ├── examples │ │ ├── json │ │ │ ├── README.md │ │ │ ├── ex01_create.adoc │ │ │ ├── ex02_replace.adoc │ │ │ ├── ex03_update.adoc │ │ │ ├── ex04_delete.adoc │ │ │ ├── ex05_create-crs.adoc │ │ │ ├── ex06a_options.adoc │ │ │ ├── ex06b_options.adoc │ │ │ ├── ex07_supportsNonAutogeneratedResourceIds.adoc │ │ │ └── schema.adoc │ │ ├── openapi │ │ │ └── ogcapi-features-4-example1.yaml │ │ └── xml │ │ │ ├── README.md │ │ │ ├── create_schema.adoc │ │ │ ├── ex01_create.adoc │ │ │ ├── ex02_replace.adoc │ │ │ └── ex03_update.adoc │ ├── openapi │ │ ├── examples │ │ │ └── README.md │ │ ├── parameters │ │ │ └── README.md │ │ ├── responses │ │ │ └── README.md │ │ └── schemas │ │ │ └── README.md │ ├── standard │ │ ├── 20-002.adoc │ │ ├── README.md │ │ ├── abstract_tests │ │ │ ├── ATS_class_features.adoc │ │ │ ├── ATS_class_patch-update.adoc │ │ │ ├── ATS_class_simpletx.adoc │ │ │ ├── README.md │ │ │ ├── features │ │ │ │ ├── ATS_collection-items-end-point.adoc │ │ │ │ ├── ATS_resource-end-point.adoc │ │ │ │ └── crs │ │ │ │ │ ├── ATS_crs84.adoc │ │ │ │ │ ├── ATS_geojson.adoc │ │ │ │ │ └── ATS_storage-crs.adoc │ │ │ └── simpletx │ │ │ │ ├── delete │ │ │ │ ├── ATS_delete-op.adoc │ │ │ │ └── ATS_response.adoc │ │ │ │ ├── insert │ │ │ │ ├── ATS_body.adoc │ │ │ │ ├── ATS_content-type.adoc │ │ │ │ ├── ATS_post-op.adoc │ │ │ │ ├── ATS_response-rid.adoc │ │ │ │ └── ATS_response.adoc │ │ │ │ └── update │ │ │ │ └── put │ │ │ │ ├── ATS_body.adoc │ │ │ │ ├── ATS_content-type.adoc │ │ │ │ ├── ATS_put-op.adoc │ │ │ │ ├── ATS_response.adoc │ │ │ │ └── ATS_rid-exception.adoc │ │ ├── annex_ats.adoc │ │ ├── annex_bibliography.adoc │ │ ├── annex_history.adoc │ │ ├── clause_0_front_material.adoc │ │ ├── clause_10_media_types.adoc │ │ ├── clause_11_security_considerations.adoc │ │ ├── clause_1_scope.adoc │ │ ├── clause_2_conformance.adoc │ │ ├── clause_3_references.adoc │ │ ├── clause_4_terms_and_definitions.adoc │ │ ├── clause_5_conventions.adoc │ │ ├── clause_6_create-replace-delete.adoc │ │ ├── clause_7_update.adoc │ │ ├── clause_8_optimistic-locking.adoc │ │ ├── clause_9_features.adoc │ │ ├── figures │ │ │ └── README.md │ │ ├── images │ │ │ └── README.md │ │ ├── recommendations │ │ │ ├── create-replace-delete │ │ │ │ ├── PER_additional-status-codes.adoc │ │ │ │ ├── create │ │ │ │ │ ├── PER_body.adoc │ │ │ │ │ └── PER_rid.adoc │ │ │ │ ├── delete │ │ │ │ │ └── REC_no-feature.adoc │ │ │ │ ├── options │ │ │ │ │ ├── PER_other-methods.adoc │ │ │ │ │ ├── PER_req-body.adoc │ │ │ │ │ └── PER_res-body.adoc │ │ │ │ └── replace │ │ │ │ │ ├── PER_body.adoc │ │ │ │ │ └── PER_create.adoc │ │ │ ├── features │ │ │ │ ├── PER_other_update_vocabs.adoc │ │ │ │ └── REC_storage-crs.adoc │ │ │ ├── optimistic-locking-etags │ │ │ │ ├── PER_ifmatch-missing.adoc │ │ │ │ └── PER_ifmatch-star.adoc │ │ │ ├── optimistic-locking-timestamps │ │ │ │ └── PER_ifunmodifiedsince-missing.adoc │ │ │ └── update │ │ │ │ ├── REC_body-json-merge-patch.adoc │ │ │ │ ├── REC_body-xml-patch.adoc │ │ │ │ └── REC_schema.adoc │ │ ├── requirements │ │ │ ├── README.md │ │ │ ├── create-replace-delete │ │ │ │ ├── REQ_methods.adoc │ │ │ │ ├── create │ │ │ │ │ ├── REQ_body.adoc │ │ │ │ │ ├── REQ_content-type.adoc │ │ │ │ │ ├── REQ_post-op.adoc │ │ │ │ │ ├── REQ_response-rid.adoc │ │ │ │ │ └── REQ_response.adoc │ │ │ │ ├── delete │ │ │ │ │ ├── REQ_delete-op.adoc │ │ │ │ │ └── REQ_response.adoc │ │ │ │ ├── options │ │ │ │ │ ├── REQ_op.adoc │ │ │ │ │ └── REQ_response.adoc │ │ │ │ └── replace │ │ │ │ │ ├── REQ_body.adoc │ │ │ │ │ ├── REQ_content-type.adoc │ │ │ │ │ ├── REQ_put-op.adoc │ │ │ │ │ ├── REQ_response.adoc │ │ │ │ │ ├── REQ_rid-exception.adoc │ │ │ │ │ └── REQ_rid.adoc │ │ │ ├── features │ │ │ │ ├── REQ_collection-endpoint.adoc │ │ │ │ ├── REQ_geojson-create-replace.adoc │ │ │ │ ├── REQ_gml-create-replace.adoc │ │ │ │ ├── REQ_representation-geojson-replace.adoc │ │ │ │ ├── REQ_resource-endpoint.adoc │ │ │ │ ├── REQ_resources-endpoint.adoc │ │ │ │ ├── REQ_schema.adoc │ │ │ │ ├── REQ_update-json-merge-patch.adoc │ │ │ │ └── crs │ │ │ │ │ ├── REQ_content-crs-header.adoc │ │ │ │ │ ├── REQ_crs84.adoc │ │ │ │ │ ├── REQ_default-crs.adoc │ │ │ │ │ ├── REQ_gml-srsname.adoc │ │ │ │ │ └── REQ_other-crs.adoc │ │ │ ├── optimistic-locking-etags │ │ │ │ ├── REQ_etag-get-response.adoc │ │ │ │ ├── REQ_etag-patch-response.adoc │ │ │ │ ├── REQ_etag-put-response.adoc │ │ │ │ ├── REQ_ifmatch-patch-eval.adoc │ │ │ │ ├── REQ_ifmatch-patch-op.adoc │ │ │ │ ├── REQ_ifmatch-put-eval.adoc │ │ │ │ └── REQ_ifmatch-put-op.adoc │ │ │ ├── optimistic-locking-timestamps │ │ │ │ ├── REQ_ifunmodifiedsince-patch-eval.adoc │ │ │ │ ├── REQ_ifunmodifiedsince-patch-op.adoc │ │ │ │ ├── REQ_ifunmodifiedsince-put-eval.adoc │ │ │ │ ├── REQ_ifunmodifiedsince-put-op.adoc │ │ │ │ ├── REQ_lastmodified-get-response.adoc │ │ │ │ ├── REQ_lastmodified-patch-response.adoc │ │ │ │ └── REQ_lastmodified-put-response.adoc │ │ │ ├── requirements_class_create-replace-delete.adoc │ │ │ ├── requirements_class_features.adoc │ │ │ ├── requirements_class_optimistic-locking-etags.adoc │ │ │ ├── requirements_class_optimistic-locking-timestamps.adoc │ │ │ ├── requirements_class_update.adoc │ │ │ └── update │ │ │ │ ├── REQ_body.adoc │ │ │ │ ├── REQ_methods.adoc │ │ │ │ ├── REQ_patch-op.adoc │ │ │ │ ├── REQ_response.adoc │ │ │ │ └── REQ_rid.adoc │ │ └── standard.css │ └── xml │ │ ├── core.xsd │ │ └── wsdl │ │ └── README.md │ └── simple │ └── standard │ ├── clause_7a_optimistic-locking.adoc │ └── recommendations │ └── optimistic-locking │ ├── PER_ifmatch-star.adoc │ └── REC_last-modified.adoc ├── guide ├── README.md ├── annex_bibliography.adoc ├── annex_history.adoc ├── conformance_checklist.md ├── figures │ ├── PT1_FIG01.png │ └── README.md ├── images │ ├── Cookbook_Figure_10.png │ ├── Cookbook_Figure_10_2.png │ ├── Cookbook_Figure_11.png │ ├── Cookbook_Figure_5.png │ ├── Cookbook_Figure_6.png │ ├── Cookbook_Figure_7.png │ ├── Cookbook_Figure_8.png │ ├── Cookbook_Figure_9.png │ └── README.md ├── section_0_introduction.adoc ├── section_10_information_assurance.adoc ├── section_11_conformance_checklists.adoc ├── section_12_mediaTypes.adoc ├── section_1_scope.adoc ├── section_2_audience.adoc ├── section_3_references.adoc ├── section_4_terms_and_definitions.adoc ├── section_5_conventions.adoc ├── section_6_introduction_to_geospatial.adoc ├── section_7_introduction_to_OpenAPI.adoc ├── section_8_WFS_2_0_v_3_0.adoc ├── section_9_OpenAPI_v_Capabilities.adoc ├── standard.css └── user_guide.adoc ├── implementations ├── README.adoc ├── clients │ ├── README.md │ ├── arcgis-js.md │ ├── arcgis-pro.md │ ├── arcgis-runtime.md │ ├── fme.md │ ├── gdal.md │ ├── images │ │ ├── ArcGISPro-1-add-server.PNG │ │ ├── ArcGISPro-2-add-server-options.PNG │ │ ├── ArcGISPro-2-edit-properties.PNG │ │ ├── ArcGISPro-3-add-collection-to-map.PNG │ │ ├── ArcGISPro-3-data-catalog.PNG │ │ ├── ArcGISPro-4-vineyards.PNG │ │ ├── Kaoto-1-add-step.png │ │ ├── Kaoto-2-open-properties.png │ │ ├── Kaoto-3-load-collections.png │ │ ├── Kaoto-4-create-query.png │ │ ├── qgis-add-api.png │ │ ├── qgis-data-source-manager.png │ │ ├── qgis-select-layers.png │ │ └── qgis-zoomstack-national-roads.gif │ ├── kaoto.md │ ├── leaflet-featuregroup-ogcapi.md │ ├── leaflet.md │ ├── mapbox-gl-js.md │ ├── mapbox-gl-ogc-feature-collection.md │ ├── ogc-client.md │ ├── ogcapi-js.md │ ├── openlayers.md │ ├── other.md │ ├── owslib.md │ └── qgis.md └── servers │ ├── README.md │ ├── cubewerx.md │ ├── deegree.md │ ├── geoserver.md │ ├── hakunapi.md │ ├── ldproxy.md │ ├── mapserver.md │ ├── other.md │ ├── pg_featureserv.md │ ├── pygeoapi.md │ ├── qgis.md │ ├── sdirp.md │ └── sofp.md ├── ogcapi-ogc-org-features-overview.md ├── proposals ├── 000_OGC-proposal-template.md ├── README.md ├── archive │ ├── Alternative Schema │ │ ├── 001_Alternative-Schema-Proposal.md │ │ ├── CONTRIBUTORS.md │ │ ├── DEVELOPMENT.md │ │ ├── alternative_schema_examples.md │ │ ├── alternative_schema_object.md │ │ ├── implementations.md │ │ └── schema_object.md │ ├── README.md │ └── schemas │ │ └── README.md ├── geometry-simplification │ └── README.md ├── property-selection │ └── README.md ├── query-by-ids │ └── README.md └── search │ ├── README.md │ ├── examples │ └── README.md │ ├── global-list-of-queryables.adoc │ ├── openapi │ ├── examples │ │ └── README.md │ ├── parameters │ │ ├── README.md │ │ └── limit.yaml │ ├── responses │ │ └── README.md │ └── schemas │ │ ├── README.md │ │ ├── cql.yaml │ │ ├── parameter.yaml │ │ ├── parameters.yaml │ │ ├── queries.yaml │ │ ├── query-md.yaml │ │ └── query.yaml │ └── standard │ ├── 20-096.adoc │ ├── 20-096.html │ ├── 20-096.pdf │ ├── README.md │ ├── abstract_tests │ └── README.md │ ├── annex_ats.adoc │ ├── annex_bibliography.adoc │ ├── annex_history.adoc │ ├── clause_00_front_material.adoc │ ├── clause_01_scope.adoc │ ├── clause_02_conformance.adoc │ ├── clause_03_references.adoc │ ├── clause_04_terms_and_definitions.adoc │ ├── clause_05_conventions.adoc │ ├── clause_06_search.adoc │ ├── clause_07_multi-collection-search.adoc │ ├── clause_08_stored_query.adoc │ ├── clause_09_multi-collection-stored-query.adoc │ ├── clause_10_parameterized-stored-query.adoc │ ├── clause_11_parameterized-multi-collection-stored-query.adoc │ ├── clause_12_parameterized-query-expression.adoc │ ├── clause_13_query_expression.adoc │ ├── clause_14_standing-query.adoc │ ├── clause_15_oas.adoc │ ├── clause_16_media_types.adoc │ ├── clause_17_security_considerations.adoc │ ├── examples.txt │ ├── figures │ └── README.md │ ├── images │ └── README.md │ ├── recommendations │ └── ogc-json-query-expression │ │ └── REC_ogc-json-query-expression.adoc │ ├── requirements │ ├── multi-collection-search │ │ ├── REQ_limit-definition.adoc │ │ ├── REQ_limit-response.adoc │ │ ├── REQ_post-body.adoc │ │ ├── REQ_post-op.adoc │ │ └── REQ_response.adoc │ ├── multi-collection-stored-query │ │ ├── REQ_delete-op.adoc │ │ ├── REQ_delete-success.adoc │ │ ├── REQ_get-op.adoc │ │ ├── REQ_get-success.adoc │ │ ├── REQ_limit-definition.adoc │ │ ├── REQ_limit-response.adoc │ │ ├── REQ_post-op.adoc │ │ ├── REQ_put-body.adoc │ │ ├── REQ_put-create-success.adoc │ │ ├── REQ_put-create.adoc │ │ ├── REQ_put-update-success.adoc │ │ ├── REQ_put-update.adoc │ │ ├── REQ_queries-op.adoc │ │ └── REQ_queries-success.adoc │ ├── ogc-json-query-expression │ │ ├── REQ_crs.adoc │ │ └── REQ_schema.adoc │ ├── parameterized-multi-collection-stored-query │ │ ├── REQ_parameter-define-body.adoc │ │ ├── REQ_parameter-define-success.adoc │ │ ├── REQ_parameter-define.adoc │ │ ├── REQ_parameter-delete-success.adoc │ │ ├── REQ_parameter-delete.adoc │ │ ├── REQ_parameter-update-body.adoc │ │ ├── REQ_parameter-update-success.adoc │ │ ├── REQ_parameter-update.adoc │ │ ├── REQ_parameters-op.adoc │ │ └── REQ_parameters-success.adoc │ ├── parameterized-query-expression │ │ ├── REQ_substitution-variable.adoc │ │ └── REQ_url-query-parameter.adoc │ ├── parameterized-stored-query │ │ ├── REQ_parameter-define-body.adoc │ │ ├── REQ_parameter-define-success.adoc │ │ ├── REQ_parameter-define.adoc │ │ ├── REQ_parameter-delete-success.adoc │ │ ├── REQ_parameter-delete.adoc │ │ ├── REQ_parameter-update-body.adoc │ │ ├── REQ_parameter-update-success.adoc │ │ ├── REQ_parameter-update.adoc │ │ ├── REQ_parameters-op.adoc │ │ └── REQ_parameters-success.adoc │ ├── requirements_class_geojson.adoc │ ├── requirements_class_gmlsf0.adoc │ ├── requirements_class_gmlsf2.adoc │ ├── requirements_class_html.adoc │ ├── requirements_class_multi-collection-search.adoc │ ├── requirements_class_multi-collection-stored-query.adoc │ ├── requirements_class_ogc-json-query-expression.adoc │ ├── requirements_class_parameterized-multi-collection-stored-query.adoc │ ├── requirements_class_parameterized-query-expression.adoc │ ├── requirements_class_parameterized-stored-query.adoc │ ├── requirements_class_search.adoc │ ├── requirements_class_standing-query.adoc │ ├── requirements_class_stored-query.adoc │ ├── search │ │ ├── REQ_limit-definition.adoc │ │ ├── REQ_limit-response.adoc │ │ ├── REQ_post-body.adoc │ │ ├── REQ_post-op.adoc │ │ └── REQ_response.adoc │ ├── standing-query │ │ ├── REQ_period.adoc │ │ └── REQ_response-handler.adoc │ └── stored-query │ │ ├── REQ_delete-op.adoc │ │ ├── REQ_delete-success.adoc │ │ ├── REQ_get-op.adoc │ │ ├── REQ_get-success.adoc │ │ ├── REQ_immutablr │ │ ├── REQ_limit-definition.adoc │ │ ├── REQ_limit-response.adoc │ │ ├── REQ_post-op.adoc │ │ ├── REQ_put-body.adoc │ │ ├── REQ_put-create-success.adoc │ │ ├── REQ_put-create.adoc │ │ ├── REQ_put-update-success.adoc │ │ ├── REQ_put-update.adoc │ │ ├── REQ_queries-op.adoc │ │ └── REQ_queries-success.adoc │ ├── schemas │ └── query.json │ └── standard.css ├── specification-elements ├── 17-069r3.csv ├── 17-069r4.csv ├── 18-058.csv ├── 18-058r1.csv └── README.md └── template ├── README.md ├── examples ├── json │ └── README.md └── xml │ └── README.md ├── openapi ├── examples │ └── README.md ├── parameters │ └── README.md ├── responses │ └── README.md └── schemas │ └── README.md ├── standard ├── 19-xxx.adoc ├── README.md ├── abstract_tests │ ├── README.md │ └── cc │ │ └── TEST001.adoc ├── annex_ats.adoc ├── annex_bibliography.adoc ├── annex_history.adoc ├── annex_n.adoc ├── clause_0_front_material.adoc ├── clause_1_scope.adoc ├── clause_2_conformance.adoc ├── clause_3_references.adoc ├── clause_4_terms_and_definitions.adoc ├── clause_5_conventions.adoc ├── clause_6_cc.adoc ├── clause_7_media_types.adoc ├── clause_8_security_considerations.adoc ├── figures │ └── README.md ├── images │ └── README.md ├── recommendations │ └── cc │ │ ├── PER_per.adoc │ │ └── REC_rec.adoc ├── requirements │ ├── README.md │ ├── cc │ │ └── REQ_req.adoc │ └── requirements_class_cc.adoc └── standard.css └── xml ├── core.xsd └── wsdl └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | *.code-workspace 4 | *.html 5 | -------------------------------------------------------------------------------- /CHARTER.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/CHARTER.adoc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/README.md -------------------------------------------------------------------------------- /asciidoctor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/asciidoctor.json -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/README.md -------------------------------------------------------------------------------- /core/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/README.md -------------------------------------------------------------------------------- /core/examples/json/Collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/json/Collection.json -------------------------------------------------------------------------------- /core/examples/json/Collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/json/Collections.json -------------------------------------------------------------------------------- /core/examples/json/ConformsTo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/json/ConformsTo.json -------------------------------------------------------------------------------- /core/examples/json/LandingPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/json/LandingPage.json -------------------------------------------------------------------------------- /core/examples/openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/openapi/README.md -------------------------------------------------------------------------------- /core/examples/openapi/ogcapi-features-1-example1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/openapi/ogcapi-features-1-example1.yaml -------------------------------------------------------------------------------- /core/examples/openapi/ogcapi-features-1-example2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/openapi/ogcapi-features-1-example2.yaml -------------------------------------------------------------------------------- /core/examples/xml/Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/Api.xml -------------------------------------------------------------------------------- /core/examples/xml/Collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/Collection.xml -------------------------------------------------------------------------------- /core/examples/xml/Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/Collections.xml -------------------------------------------------------------------------------- /core/examples/xml/ConformsTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/ConformsTo.xml -------------------------------------------------------------------------------- /core/examples/xml/FeatureCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/FeatureCollection.xml -------------------------------------------------------------------------------- /core/examples/xml/LandingPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/LandingPage.xml -------------------------------------------------------------------------------- /core/examples/xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/examples/xml/README.md -------------------------------------------------------------------------------- /core/openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/README.md -------------------------------------------------------------------------------- /core/openapi/ogcapi-features-1-oas30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/ogcapi-features-1-oas30.yaml -------------------------------------------------------------------------------- /core/openapi/ogcapi-features-1-oas31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/ogcapi-features-1-oas31.yaml -------------------------------------------------------------------------------- /core/openapi/ogcapi-features-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/ogcapi-features-1.yaml -------------------------------------------------------------------------------- /core/openapi/parameters/bbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/parameters/bbox.yaml -------------------------------------------------------------------------------- /core/openapi/parameters/collectionId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/parameters/collectionId.yaml -------------------------------------------------------------------------------- /core/openapi/parameters/datetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/parameters/datetime.yaml -------------------------------------------------------------------------------- /core/openapi/parameters/featureId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/parameters/featureId.yaml -------------------------------------------------------------------------------- /core/openapi/parameters/limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/parameters/limit.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/collection.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/collections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/collections.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/confClasses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/confClasses.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/exception.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/exception.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/extent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/extent.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/featureCollectionGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/featureCollectionGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/featureGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/featureGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/geometryGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/geometryGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/geometrycollectionGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/geometrycollectionGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/landingPage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/landingPage.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/linestringGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/linestringGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/link.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/linkBase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/linkBase.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/linkTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/linkTemplate.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/multilinestringGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/multilinestringGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/multipointGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/multipointGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/multipolygonGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/multipolygonGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/numberMatched.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/numberMatched.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/numberReturned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/numberReturned.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/pointGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/pointGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/polygonGeoJSON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/polygonGeoJSON.yaml -------------------------------------------------------------------------------- /core/openapi/schemas/timeStamp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/openapi/schemas/timeStamp.yaml -------------------------------------------------------------------------------- /core/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/release-notes.md -------------------------------------------------------------------------------- /core/standard/17-069.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/17-069.adoc -------------------------------------------------------------------------------- /core/standard/ISO19168_draft_ogc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/ISO19168_draft_ogc.docx -------------------------------------------------------------------------------- /core/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/README.md -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_core.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_core.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_geojson.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_geojson.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_gmlsf0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_gmlsf0.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_gmlsf2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_gmlsf2.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_html.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_html.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_oas30.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_oas30.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/ATS_class_oas31.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/ATS_class_oas31.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_conformance-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_conformance-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_crs84.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_crs84.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_f-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_f-links.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_f-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_f-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_f-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_f-success.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-links.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-md-extent.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-md-extent.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-md-items.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-md-items.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-md-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-md-links.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-md-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-md-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-md-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-md-success.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-response.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-response.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_fc-timeStamp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_fc-timeStamp.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_http.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_http.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_root-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_root-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_root-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_root-success.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_sfc-md-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_sfc-md-op.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/core/ATS_sfc-md-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/core/ATS_sfc-md-success.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/geojson/ATS_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/geojson/ATS_content.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/geojson/ATS_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/geojson/ATS_definition.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/gmlsf0/ATS_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/gmlsf0/ATS_content.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/gmlsf0/ATS_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/gmlsf0/ATS_definition.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/gmlsf2/ATS_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/gmlsf2/ATS_content.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/gmlsf2/ATS_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/gmlsf2/ATS_definition.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/html/ATS_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/html/ATS_content.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/html/ATS_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/html/ATS_definition.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas30/ATS_completeness.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas30/ATS_completeness.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas30/ATS_definition-1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas30/ATS_definition-1.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas30/ATS_definition-2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas30/ATS_definition-2.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas30/ATS_oas-impl.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas30/ATS_oas-impl.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas30/ATS_security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas30/ATS_security.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas31/ATS_completeness.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas31/ATS_completeness.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas31/ATS_definition-1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas31/ATS_definition-1.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas31/ATS_definition-2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas31/ATS_definition-2.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas31/ATS_oas-impl.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas31/ATS_oas-impl.adoc -------------------------------------------------------------------------------- /core/standard/abstract_tests/oas31/ATS_security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/abstract_tests/oas31/ATS_security.adoc -------------------------------------------------------------------------------- /core/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/annex_ats.adoc -------------------------------------------------------------------------------- /core/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /core/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/annex_history.adoc -------------------------------------------------------------------------------- /core/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /core/standard/clause_10_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_10_media_types.adoc -------------------------------------------------------------------------------- /core/standard/clause_11_security_considerations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_11_security_considerations.adoc -------------------------------------------------------------------------------- /core/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /core/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /core/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /core/standard/clause_4_terms_and_definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_4_terms_and_definitions.adoc -------------------------------------------------------------------------------- /core/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /core/standard/clause_6_overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_6_overview.adoc -------------------------------------------------------------------------------- /core/standard/clause_7_core.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_7_core.adoc -------------------------------------------------------------------------------- /core/standard/clause_8_encodings.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_8_encodings.adoc -------------------------------------------------------------------------------- /core/standard/clause_9_oas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/clause_9_oas.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/PER_f-id.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/PER_f-id.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/PER_fc-bbox-default.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/PER_fc-bbox-default.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/PER_fc-md-items.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/PER_fc-md-items.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/PER_fc-prev.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/PER_fc-prev.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/PER_fc-time-default.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/PER_fc-time-default.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_cross-origin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_cross-origin.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_etag.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_etag.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-extent.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-extent.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-filters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-filters.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-md-license.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-md-license.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-next-1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-next-1.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-next-2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-next-2.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_fc-next-3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_fc-next-3.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_geojson.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_geojson.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_head.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_head.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_html.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_html.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_link-header.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_link-header.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_rfc3339.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_rfc3339.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_rfc9457.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_rfc9457.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_root-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_root-links.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_sfc-md-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_sfc-md-links.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/core/REC_string_i18n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/core/REC_string_i18n.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/html/REC_schema-org.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/html/REC_schema-org.adoc -------------------------------------------------------------------------------- /core/standard/recomendations/oas/REC_f-key-properties.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/recomendations/oas/REC_f-key-properties.adoc -------------------------------------------------------------------------------- /core/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/README.md -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_api-definition-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_api-definition-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_conformance-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_conformance-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_crs84.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_crs84.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_f-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_f-links.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_f-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_f-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_f-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_f-success.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-bbox-response.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-bbox-response.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-links.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-extent.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-extent.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-items-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-items-links.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-items.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-items.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-links.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-md-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-md-success.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-numberMatched.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-numberMatched.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-numberReturned.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-numberReturned.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-rel-type.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-rel-type.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-response.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-response.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-time-response.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-time-response.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_fc-timeStamp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_fc-timeStamp.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_http.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_http.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_root-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_root-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_root-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_root-success.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_sfc-md-op.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_sfc-md-op.adoc -------------------------------------------------------------------------------- /core/standard/requirements/core/REQ_sfc-md-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/core/REQ_sfc-md-success.adoc -------------------------------------------------------------------------------- /core/standard/requirements/geojson/REQ_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/geojson/REQ_content.adoc -------------------------------------------------------------------------------- /core/standard/requirements/geojson/REQ_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/geojson/REQ_definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf0/REQ_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf0/REQ_content.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf0/REQ_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf0/REQ_definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf0/REQ_headers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf0/REQ_headers.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf2/REQ_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf2/REQ_content.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf2/REQ_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf2/REQ_definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/gmlsf2/REQ_headers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/gmlsf2/REQ_headers.adoc -------------------------------------------------------------------------------- /core/standard/requirements/html/REQ_content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/html/REQ_content.adoc -------------------------------------------------------------------------------- /core/standard/requirements/html/REQ_definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/html/REQ_definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas/REQ_completeness.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas/REQ_completeness.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas/REQ_exception-codes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas/REQ_exception-codes.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas/REQ_oas-definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas/REQ_oas-definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas/REQ_oas-impl.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas/REQ_oas-impl.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas/REQ_security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas/REQ_security.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas30/REQ_oas-definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas30/REQ_oas-definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/oas31/REQ_oas-definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/oas31/REQ_oas-definition.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_core.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_core.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_geojson.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_geojson.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_gmlsf0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_gmlsf0.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_gmlsf2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_gmlsf2.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_html.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_html.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_oas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_oas.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_oas30.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_oas30.adoc -------------------------------------------------------------------------------- /core/standard/requirements/requirements_class_oas31.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/requirements/requirements_class_oas31.adoc -------------------------------------------------------------------------------- /core/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/standard/standard.css -------------------------------------------------------------------------------- /core/xml/core-sf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/xml/core-sf.xsd -------------------------------------------------------------------------------- /core/xml/core.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/core/xml/core.xsd -------------------------------------------------------------------------------- /cql2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/README.md -------------------------------------------------------------------------------- /cql2/cql2-cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/cql2-cc.png -------------------------------------------------------------------------------- /cql2/standard/21-065.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/21-065.adoc -------------------------------------------------------------------------------- /cql2/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/README.md -------------------------------------------------------------------------------- /cql2/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_accent-insensitive-comparison.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_accent-insensitive-comparison.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_advanced-comparison-operators.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_advanced-comparison-operators.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_arithmetic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_arithmetic.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_array-functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_array-functions.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_basic-cql2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_basic-cql2.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_basic-spatial-functions-plus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_basic-spatial-functions-plus.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_basic-spatial-functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_basic-spatial-functions.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_case-insensitive-comparison.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_case-insensitive-comparison.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_cql2-json.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_cql2-json.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_cql2-text.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_cql2-text.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_functions.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_property-property.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_property-property.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_spatial-functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_spatial-functions.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_ats_temporal-functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_ats_temporal-functions.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_bnf.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_bnf.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_history.adoc -------------------------------------------------------------------------------- /cql2/standard/annex_js.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/annex_js.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_4_terms_and_definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_4_terms_and_definitions.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_6_basic_cql2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_6_basic_cql2.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_7_enhanced.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_7_enhanced.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_8_encodings.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_8_encodings.adoc -------------------------------------------------------------------------------- /cql2/standard/clause_9_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/clause_9_media_types.adoc -------------------------------------------------------------------------------- /cql2/standard/data/ne110m4cql2.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/data/ne110m4cql2.gpkg -------------------------------------------------------------------------------- /cql2/standard/data/ne_110m_admin_0_countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/data/ne_110m_admin_0_countries.json -------------------------------------------------------------------------------- /cql2/standard/data/ne_110m_populated_places_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/data/ne_110m_populated_places_simple.json -------------------------------------------------------------------------------- /cql2/standard/data/ne_110m_rivers_lake_centerlines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/data/ne_110m_rivers_lake_centerlines.json -------------------------------------------------------------------------------- /cql2/standard/images/DE9IM_Matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/DE9IM_Matrix.png -------------------------------------------------------------------------------- /cql2/standard/images/crosses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/crosses.png -------------------------------------------------------------------------------- /cql2/standard/images/overlaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/overlaps.png -------------------------------------------------------------------------------- /cql2/standard/images/temporal_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/temporal_ops.png -------------------------------------------------------------------------------- /cql2/standard/images/touches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/touches.png -------------------------------------------------------------------------------- /cql2/standard/images/within.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/images/within.png -------------------------------------------------------------------------------- /cql2/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/README.md -------------------------------------------------------------------------------- /cql2/standard/requirements/arithmetic/REQ_arithmetic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/arithmetic/REQ_arithmetic.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/basic-cql2/REQ_cql2-filter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/basic-cql2/REQ_cql2-filter.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/basic-cql2/REQ_property.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/basic-cql2/REQ_property.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-json/REQ_arithmetic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-json/REQ_arithmetic.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-json/REQ_basic-cql2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-json/REQ_basic-cql2.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-json/REQ_functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-json/REQ_functions.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-text/REQ_arithmetic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-text/REQ_arithmetic.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-text/REQ_basic-cql2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-text/REQ_basic-cql2.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-text/REQ_escaping.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-text/REQ_escaping.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/cql2-text/REQ_functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/cql2-text/REQ_functions.adoc -------------------------------------------------------------------------------- /cql2/standard/requirements/functions/REQ_functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/requirements/functions/REQ_functions.adoc -------------------------------------------------------------------------------- /cql2/standard/schema/cql2.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/cql2.bnf -------------------------------------------------------------------------------- /cql2/standard/schema/cql2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/cql2.json -------------------------------------------------------------------------------- /cql2/standard/schema/cql2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/cql2.yml -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_01.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_02a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_02a.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_02b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_02b.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_02c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_02c.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_02d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_02d.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause6_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause6_03.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_01.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_02.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_03a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_03a.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_03b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_03b.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_04.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_05.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_07.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_10.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_12.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_13.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_15.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_16.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_17.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_18.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/clause7_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/clause7_19.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example01.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example02.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example03.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example04.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example05a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example05a.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example05b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example05b.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example06a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example06a.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example06b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example06b.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example07.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example08.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example09.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example10.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example11.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example12.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example13.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example14.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example15.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example16.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example17.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example18.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example19.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example20.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example21.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example22.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example23.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example24.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example25.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example26.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example27.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example28.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example29.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example30.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example31.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example32.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example33.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example34.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example35.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example36.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example37.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example38.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example39.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example40.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example41.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example42.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example43.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example44.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example45.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example46.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example47.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example48.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example49.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example50.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example51.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example52.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example53.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example54.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example55.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example56.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example57.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example58.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example59.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example60.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example61.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example62.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example63.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example64.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example65.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example66.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example67.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example68.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example69.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example70.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example71.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example72.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example73.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example74.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example75.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example76.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example77.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example78.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example79.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example80.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example81.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example82.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example83.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example84.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example85.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/example86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/example86.json -------------------------------------------------------------------------------- /cql2/standard/schema/examples/json/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/json/validate.sh -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_01.txt: -------------------------------------------------------------------------------- 1 | avg(windSpeed) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_02a.txt: -------------------------------------------------------------------------------- 1 | city='Toronto' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_02b.txt: -------------------------------------------------------------------------------- 1 | avg(windSpeed) < 4 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_02c.txt: -------------------------------------------------------------------------------- 1 | balance-150.0 > 0 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_02d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause6_02d.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause6_03.txt: -------------------------------------------------------------------------------- 1 | geometry IS NOT NULL 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_01.txt: -------------------------------------------------------------------------------- 1 | name LIKE 'Smith%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_02.txt: -------------------------------------------------------------------------------- 1 | depth BETWEEN 100.0 and 150.0 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_03a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_03a.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_03b.txt: -------------------------------------------------------------------------------- 1 | category NOT IN (1,2,3,4) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_04.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_05.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_07.txt: -------------------------------------------------------------------------------- 1 | S_INTERSECTS(geometry,POINT(36.319836 32.288087)) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_10.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_12.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_13.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_15.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_16.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/clause7_17.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_18.txt: -------------------------------------------------------------------------------- 1 | S_WITHIN(road,Buffer(geometry,10,'m')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/clause7_19.txt: -------------------------------------------------------------------------------- 1 | vehicle_height > (bridge_clearance-1) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example01.txt: -------------------------------------------------------------------------------- 1 | landsat:scene_id = 'LC82030282019133LGN00' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example02.txt: -------------------------------------------------------------------------------- 1 | eo:instrument LIKE 'OLI%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example03.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example04.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example05a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example05a.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example05b.txt: -------------------------------------------------------------------------------- 1 | eo:cloud_cover IN (0.1,0.2) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example06a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example06a.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example06b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example06b.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example07.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example08.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example09.txt: -------------------------------------------------------------------------------- 1 | floors>5 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example10.txt: -------------------------------------------------------------------------------- 1 | taxes <= 500 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example11.txt: -------------------------------------------------------------------------------- 1 | owner LIKE '%Jones%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example12.txt: -------------------------------------------------------------------------------- 1 | owner LIKE 'Mike%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example13.txt: -------------------------------------------------------------------------------- 1 | owner NOT LIKE '%Mike%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example14.txt: -------------------------------------------------------------------------------- 1 | swimming_pool = true 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example15.txt: -------------------------------------------------------------------------------- 1 | floors>5 AND swimming_pool=true 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example16.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example17.txt: -------------------------------------------------------------------------------- 1 | (floors>5 AND material='brick') OR swimming_pool=true 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example18.txt: -------------------------------------------------------------------------------- 1 | NOT (floors<5) OR swimming_pool=true 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example19.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example20.txt: -------------------------------------------------------------------------------- 1 | T_BEFORE(built, DATE('2015-01-01')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example21.txt: -------------------------------------------------------------------------------- 1 | T_AFTER(built,DATE('2012-06-05')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example22.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example23.txt: -------------------------------------------------------------------------------- 1 | S_WITHIN(location,BBOX(-118,33.8,-117.9,34)) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example24.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example25.txt: -------------------------------------------------------------------------------- 1 | floors>5 AND S_WITHIN(geometry,BBOX(-118,33.8,-117.9,34)) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example26.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example27.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example28.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example29.txt: -------------------------------------------------------------------------------- 1 | "id" = 'fa7e1920-9107-422d-a3db-c468cbc5d6df' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example30.txt: -------------------------------------------------------------------------------- 1 | "id" <> 'fa7e1920-9107-422d-a3db-c468cbc5d6df' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example31.txt: -------------------------------------------------------------------------------- 1 | "value" < 10 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example32.txt: -------------------------------------------------------------------------------- 1 | "value" > 10 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example33.txt: -------------------------------------------------------------------------------- 1 | "value" <= 10 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example34.txt: -------------------------------------------------------------------------------- 1 | "value" >= 10 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example35.txt: -------------------------------------------------------------------------------- 1 | "name" LIKE 'foo%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example36-alt01.txt: -------------------------------------------------------------------------------- 1 | "name" NOT LIKE 'foo%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example36.txt: -------------------------------------------------------------------------------- 1 | NOT "name" LIKE 'foo%' 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example37.txt: -------------------------------------------------------------------------------- 1 | "value" BETWEEN 10 AND 20 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example38-alt01.txt: -------------------------------------------------------------------------------- 1 | "value" NOT BETWEEN 10 AND 20 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example38.txt: -------------------------------------------------------------------------------- 1 | NOT "value" BETWEEN 10 AND 20 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example39.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example40-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example40-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example40.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example41.txt: -------------------------------------------------------------------------------- 1 | "value" IS NULL 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example42-alt01.txt: -------------------------------------------------------------------------------- 1 | "value" IS NOT NULL 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example42.txt: -------------------------------------------------------------------------------- 1 | NOT "value" IS NULL 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example43-alt01.txt: -------------------------------------------------------------------------------- 1 | "name" NOT LIKE 'foo%' AND "value" > 10 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example43.txt: -------------------------------------------------------------------------------- 1 | (NOT "name" LIKE 'foo%' AND "value" > 10) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example44-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example44-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example44.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example45.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example46-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example46-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example46.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example47.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example48.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example49-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example49-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example49.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example50.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example51.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example52.txt: -------------------------------------------------------------------------------- 1 | S_CONTAINS("geometry", POINT (-3.508362 -1.754181)) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example53.txt: -------------------------------------------------------------------------------- 1 | T_AFTER("updated_at", DATE('2010-02-10')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example54-alt01.txt: -------------------------------------------------------------------------------- 1 | T_BEFORE(updated_at, TIMESTAMP('2012-08-10T05:30:00Z')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example54.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example55-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example55-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example55.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example56.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example57.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example58.txt: -------------------------------------------------------------------------------- 1 | T_EQUALS("updated_at", DATE('1851-04-29')) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example59.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example60.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example61.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example62.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example63.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example64.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example65.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example66.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example67.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example68.txt: -------------------------------------------------------------------------------- 1 | Foo("geometry") = TRUE 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example69.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example70.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example71.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example72.txt: -------------------------------------------------------------------------------- 1 | "value" > ("foo" + 10) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example73.txt: -------------------------------------------------------------------------------- 1 | "value" < ("foo" - 10) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example74.txt: -------------------------------------------------------------------------------- 1 | "value" <> (22.1 * "foo") 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example75.txt: -------------------------------------------------------------------------------- 1 | "value" = (2 / "foo") 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example76.txt: -------------------------------------------------------------------------------- 1 | "value" <= (2 ^ "foo") 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example77.txt: -------------------------------------------------------------------------------- 1 | 0 = ("foo" % 2) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example78.txt: -------------------------------------------------------------------------------- 1 | 1 = ("foo" div 2) 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example79.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example80.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example81.txt: -------------------------------------------------------------------------------- 1 | A_EQUALS(('a', TRUE, 1.0, 8), "values") 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example82.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example83.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example84.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example85-alt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example85-alt01.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/examples/text/example85.txt -------------------------------------------------------------------------------- /cql2/standard/schema/examples/text/example86.txt: -------------------------------------------------------------------------------- 1 | "name" LIKE CASEI('FOO%') 2 | -------------------------------------------------------------------------------- /cql2/standard/schema/functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/schema/functions.yml -------------------------------------------------------------------------------- /cql2/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/cql2/standard/standard.css -------------------------------------------------------------------------------- /docs/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/background.md -------------------------------------------------------------------------------- /docs/ogc-web-api-guidelines-assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/ogc-web-api-guidelines-assessment.md -------------------------------------------------------------------------------- /docs/outdated/Parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/outdated/Parts.md -------------------------------------------------------------------------------- /docs/outdated/placeholder-additional-conformance-class/examples/dummy.yaml: -------------------------------------------------------------------------------- 1 | dummy: 2 | -------------------------------------------------------------------------------- /docs/outdated/placeholder-additional-conformance-class/parameters/dummy.yaml: -------------------------------------------------------------------------------- 1 | dummy: 2 | -------------------------------------------------------------------------------- /docs/outdated/placeholder-additional-conformance-class/schemas/dummy.yaml: -------------------------------------------------------------------------------- 1 | dummy: 2 | -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/uml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/README.md -------------------------------------------------------------------------------- /docs/uml/data_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/data_types.png -------------------------------------------------------------------------------- /docs/uml/links_to_external_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/links_to_external_resources.png -------------------------------------------------------------------------------- /docs/uml/ogc-api-features-core.eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/ogc-api-features-core.eap -------------------------------------------------------------------------------- /docs/uml/ogc-api-features-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/ogc-api-features-core.xml -------------------------------------------------------------------------------- /docs/uml/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/docs/uml/resources.png -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/crs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/README.md -------------------------------------------------------------------------------- /extensions/crs/openapi/headers/Content-Crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/headers/Content-Crs.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/ogcapi-features-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/ogcapi-features-2.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/parameters/bbox-crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/parameters/bbox-crs.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/parameters/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/parameters/crs.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/schemas/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/schemas/collection.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/schemas/collectionExtensionCrs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/schemas/collectionExtensionCrs.yaml -------------------------------------------------------------------------------- /extensions/crs/openapi/schemas/collections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/openapi/schemas/collections.yaml -------------------------------------------------------------------------------- /extensions/crs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/release-notes.md -------------------------------------------------------------------------------- /extensions/crs/standard/18-058.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/18-058.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/README.md -------------------------------------------------------------------------------- /extensions/crs/standard/abstract_tests/ATS_class_crs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/abstract_tests/ATS_class_crs.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /extensions/crs/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/annex_history.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/annex_n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/annex_n.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_6_crs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_6_crs.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/clause_7_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/clause_7_media_types.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/crs/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/images/README.md -------------------------------------------------------------------------------- /extensions/crs/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/requirements/README.md -------------------------------------------------------------------------------- /extensions/crs/standard/requirements/crs/REQ_crs-uri.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/requirements/crs/REQ_crs-uri.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/requirements/crs/REQ_geojson.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/requirements/crs/REQ_geojson.adoc -------------------------------------------------------------------------------- /extensions/crs/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/crs/standard/standard.css -------------------------------------------------------------------------------- /extensions/filtering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/19-079.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/19-079.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/annex_history.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_10_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_10_media_types.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_6_queryables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_6_queryables.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_8_filter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_8_filter.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/clause_9_features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/clause_9_features.adoc -------------------------------------------------------------------------------- /extensions/filtering/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/images/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/requirements/README.md -------------------------------------------------------------------------------- /extensions/filtering/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/filtering/standard/standard.css -------------------------------------------------------------------------------- /extensions/geometry-simplification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/geometry-simplification/README.md -------------------------------------------------------------------------------- /extensions/geometry-simplification/standard/24-020.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/geometry-simplification/standard/24-020.adoc -------------------------------------------------------------------------------- /extensions/geometry-simplification/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/geometry-simplification/standard/README.md -------------------------------------------------------------------------------- /extensions/geometry-simplification/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/geometry-simplification/standard/standard.css -------------------------------------------------------------------------------- /extensions/property-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/README.md -------------------------------------------------------------------------------- /extensions/property-selection/standard/24-019.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/24-019.adoc -------------------------------------------------------------------------------- /extensions/property-selection/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/README.md -------------------------------------------------------------------------------- /extensions/property-selection/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/property-selection/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/property-selection/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/images/README.md -------------------------------------------------------------------------------- /extensions/property-selection/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/property-selection/standard/standard.css -------------------------------------------------------------------------------- /extensions/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/README.md -------------------------------------------------------------------------------- /extensions/schemas/standard/23-058.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/23-058.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/README.md -------------------------------------------------------------------------------- /extensions/schemas/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/annex_history.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_11_queryables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_11_queryables.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_12_sortables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_12_sortables.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_17_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_17_media_types.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_6_overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_6_overview.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_7_schemas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_7_schemas.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/clause_9_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/clause_9_references.adoc -------------------------------------------------------------------------------- /extensions/schemas/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/schemas/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/images/README.md -------------------------------------------------------------------------------- /extensions/schemas/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/schemas/standard/standard.css -------------------------------------------------------------------------------- /extensions/sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/24-030.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/24-030.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/annex_history.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_6_sortables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_6_sortables.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_7_sorting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_7_sorting.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_8_features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_8_features.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/clause_9_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/clause_9_media_types.adoc -------------------------------------------------------------------------------- /extensions/sorting/standard/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/examples/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/examples/json/sortables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/examples/json/sortables.json -------------------------------------------------------------------------------- /extensions/sorting/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/images/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/openapi/schemas/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/openapi/schemas/schema.yaml -------------------------------------------------------------------------------- /extensions/sorting/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/requirements/README.md -------------------------------------------------------------------------------- /extensions/sorting/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/sorting/standard/standard.css -------------------------------------------------------------------------------- /extensions/text-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/24-031.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/24-031.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/annex_ats.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/annex_history.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/clause_7_features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/clause_7_features.adoc -------------------------------------------------------------------------------- /extensions/text-search/standard/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/examples/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/figures/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/images/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/requirements/README.md -------------------------------------------------------------------------------- /extensions/text-search/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/text-search/standard/standard.css -------------------------------------------------------------------------------- /extensions/transactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/transactions/README.md -------------------------------------------------------------------------------- /extensions/transactions/archive/TX_Notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/transactions/archive/TX_Notes.adoc -------------------------------------------------------------------------------- /extensions/transactions/atomic-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/extensions/transactions/atomic-batch/README.md -------------------------------------------------------------------------------- /guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/README.md -------------------------------------------------------------------------------- /guide/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/annex_bibliography.adoc -------------------------------------------------------------------------------- /guide/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/annex_history.adoc -------------------------------------------------------------------------------- /guide/conformance_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/conformance_checklist.md -------------------------------------------------------------------------------- /guide/figures/PT1_FIG01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/figures/PT1_FIG01.png -------------------------------------------------------------------------------- /guide/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/figures/README.md -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_10.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_10_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_10_2.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_11.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_5.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_6.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_7.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_8.png -------------------------------------------------------------------------------- /guide/images/Cookbook_Figure_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/Cookbook_Figure_9.png -------------------------------------------------------------------------------- /guide/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/images/README.md -------------------------------------------------------------------------------- /guide/section_0_introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_0_introduction.adoc -------------------------------------------------------------------------------- /guide/section_10_information_assurance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_10_information_assurance.adoc -------------------------------------------------------------------------------- /guide/section_11_conformance_checklists.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_11_conformance_checklists.adoc -------------------------------------------------------------------------------- /guide/section_12_mediaTypes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_12_mediaTypes.adoc -------------------------------------------------------------------------------- /guide/section_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_1_scope.adoc -------------------------------------------------------------------------------- /guide/section_2_audience.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_2_audience.adoc -------------------------------------------------------------------------------- /guide/section_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_3_references.adoc -------------------------------------------------------------------------------- /guide/section_4_terms_and_definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_4_terms_and_definitions.adoc -------------------------------------------------------------------------------- /guide/section_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_5_conventions.adoc -------------------------------------------------------------------------------- /guide/section_6_introduction_to_geospatial.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_6_introduction_to_geospatial.adoc -------------------------------------------------------------------------------- /guide/section_7_introduction_to_OpenAPI.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_7_introduction_to_OpenAPI.adoc -------------------------------------------------------------------------------- /guide/section_8_WFS_2_0_v_3_0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_8_WFS_2_0_v_3_0.adoc -------------------------------------------------------------------------------- /guide/section_9_OpenAPI_v_Capabilities.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/section_9_OpenAPI_v_Capabilities.adoc -------------------------------------------------------------------------------- /guide/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/standard.css -------------------------------------------------------------------------------- /guide/user_guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/guide/user_guide.adoc -------------------------------------------------------------------------------- /implementations/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/README.adoc -------------------------------------------------------------------------------- /implementations/clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/README.md -------------------------------------------------------------------------------- /implementations/clients/arcgis-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/arcgis-js.md -------------------------------------------------------------------------------- /implementations/clients/arcgis-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/arcgis-pro.md -------------------------------------------------------------------------------- /implementations/clients/arcgis-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/arcgis-runtime.md -------------------------------------------------------------------------------- /implementations/clients/fme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/fme.md -------------------------------------------------------------------------------- /implementations/clients/gdal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/gdal.md -------------------------------------------------------------------------------- /implementations/clients/images/ArcGISPro-4-vineyards.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/images/ArcGISPro-4-vineyards.PNG -------------------------------------------------------------------------------- /implementations/clients/images/Kaoto-1-add-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/images/Kaoto-1-add-step.png -------------------------------------------------------------------------------- /implementations/clients/images/Kaoto-4-create-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/images/Kaoto-4-create-query.png -------------------------------------------------------------------------------- /implementations/clients/images/qgis-add-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/images/qgis-add-api.png -------------------------------------------------------------------------------- /implementations/clients/images/qgis-select-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/images/qgis-select-layers.png -------------------------------------------------------------------------------- /implementations/clients/kaoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/kaoto.md -------------------------------------------------------------------------------- /implementations/clients/leaflet-featuregroup-ogcapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/leaflet-featuregroup-ogcapi.md -------------------------------------------------------------------------------- /implementations/clients/leaflet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/leaflet.md -------------------------------------------------------------------------------- /implementations/clients/mapbox-gl-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/mapbox-gl-js.md -------------------------------------------------------------------------------- /implementations/clients/ogc-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/ogc-client.md -------------------------------------------------------------------------------- /implementations/clients/ogcapi-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/ogcapi-js.md -------------------------------------------------------------------------------- /implementations/clients/openlayers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/openlayers.md -------------------------------------------------------------------------------- /implementations/clients/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/other.md -------------------------------------------------------------------------------- /implementations/clients/owslib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/owslib.md -------------------------------------------------------------------------------- /implementations/clients/qgis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/clients/qgis.md -------------------------------------------------------------------------------- /implementations/servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/README.md -------------------------------------------------------------------------------- /implementations/servers/cubewerx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/cubewerx.md -------------------------------------------------------------------------------- /implementations/servers/deegree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/deegree.md -------------------------------------------------------------------------------- /implementations/servers/geoserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/geoserver.md -------------------------------------------------------------------------------- /implementations/servers/hakunapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/hakunapi.md -------------------------------------------------------------------------------- /implementations/servers/ldproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/ldproxy.md -------------------------------------------------------------------------------- /implementations/servers/mapserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/mapserver.md -------------------------------------------------------------------------------- /implementations/servers/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/other.md -------------------------------------------------------------------------------- /implementations/servers/pg_featureserv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/pg_featureserv.md -------------------------------------------------------------------------------- /implementations/servers/pygeoapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/pygeoapi.md -------------------------------------------------------------------------------- /implementations/servers/qgis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/qgis.md -------------------------------------------------------------------------------- /implementations/servers/sdirp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/sdirp.md -------------------------------------------------------------------------------- /implementations/servers/sofp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/implementations/servers/sofp.md -------------------------------------------------------------------------------- /ogcapi-ogc-org-features-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/ogcapi-ogc-org-features-overview.md -------------------------------------------------------------------------------- /proposals/000_OGC-proposal-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/000_OGC-proposal-template.md -------------------------------------------------------------------------------- /proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/README.md -------------------------------------------------------------------------------- /proposals/archive/Alternative Schema/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/Alternative Schema/CONTRIBUTORS.md -------------------------------------------------------------------------------- /proposals/archive/Alternative Schema/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/Alternative Schema/DEVELOPMENT.md -------------------------------------------------------------------------------- /proposals/archive/Alternative Schema/implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/Alternative Schema/implementations.md -------------------------------------------------------------------------------- /proposals/archive/Alternative Schema/schema_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/Alternative Schema/schema_object.md -------------------------------------------------------------------------------- /proposals/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/README.md -------------------------------------------------------------------------------- /proposals/archive/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/archive/schemas/README.md -------------------------------------------------------------------------------- /proposals/geometry-simplification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/geometry-simplification/README.md -------------------------------------------------------------------------------- /proposals/property-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/property-selection/README.md -------------------------------------------------------------------------------- /proposals/query-by-ids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/query-by-ids/README.md -------------------------------------------------------------------------------- /proposals/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/README.md -------------------------------------------------------------------------------- /proposals/search/examples/README.md: -------------------------------------------------------------------------------- 1 | T.B.D. Add examples. 2 | -------------------------------------------------------------------------------- /proposals/search/global-list-of-queryables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/global-list-of-queryables.adoc -------------------------------------------------------------------------------- /proposals/search/openapi/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/examples/README.md -------------------------------------------------------------------------------- /proposals/search/openapi/parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/parameters/README.md -------------------------------------------------------------------------------- /proposals/search/openapi/parameters/limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/parameters/limit.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/responses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/responses/README.md -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/README.md -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/cql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/cql.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/parameter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/parameter.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/parameters.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/queries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/queries.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/query-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/query-md.yaml -------------------------------------------------------------------------------- /proposals/search/openapi/schemas/query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/openapi/schemas/query.yaml -------------------------------------------------------------------------------- /proposals/search/standard/20-096.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/20-096.adoc -------------------------------------------------------------------------------- /proposals/search/standard/20-096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/20-096.html -------------------------------------------------------------------------------- /proposals/search/standard/20-096.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/20-096.pdf -------------------------------------------------------------------------------- /proposals/search/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/README.md -------------------------------------------------------------------------------- /proposals/search/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /proposals/search/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/annex_ats.adoc -------------------------------------------------------------------------------- /proposals/search/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /proposals/search/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/annex_history.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_00_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_00_front_material.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_01_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_01_scope.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_02_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_02_conformance.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_03_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_03_references.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_05_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_05_conventions.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_06_search.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_06_search.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_08_stored_query.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_08_stored_query.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_14_standing-query.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_14_standing-query.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_15_oas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_15_oas.adoc -------------------------------------------------------------------------------- /proposals/search/standard/clause_16_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/clause_16_media_types.adoc -------------------------------------------------------------------------------- /proposals/search/standard/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/examples.txt -------------------------------------------------------------------------------- /proposals/search/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/figures/README.md -------------------------------------------------------------------------------- /proposals/search/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/images/README.md -------------------------------------------------------------------------------- /proposals/search/standard/schemas/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/schemas/query.json -------------------------------------------------------------------------------- /proposals/search/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/proposals/search/standard/standard.css -------------------------------------------------------------------------------- /specification-elements/17-069r3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/specification-elements/17-069r3.csv -------------------------------------------------------------------------------- /specification-elements/17-069r4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/specification-elements/17-069r4.csv -------------------------------------------------------------------------------- /specification-elements/18-058.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/specification-elements/18-058.csv -------------------------------------------------------------------------------- /specification-elements/18-058r1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/specification-elements/18-058r1.csv -------------------------------------------------------------------------------- /specification-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/specification-elements/README.md -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/README.md -------------------------------------------------------------------------------- /template/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/examples/json/README.md -------------------------------------------------------------------------------- /template/examples/xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/examples/xml/README.md -------------------------------------------------------------------------------- /template/openapi/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/openapi/examples/README.md -------------------------------------------------------------------------------- /template/openapi/parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/openapi/parameters/README.md -------------------------------------------------------------------------------- /template/openapi/responses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/openapi/responses/README.md -------------------------------------------------------------------------------- /template/openapi/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/openapi/schemas/README.md -------------------------------------------------------------------------------- /template/standard/19-xxx.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/19-xxx.adoc -------------------------------------------------------------------------------- /template/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/README.md -------------------------------------------------------------------------------- /template/standard/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/abstract_tests/README.md -------------------------------------------------------------------------------- /template/standard/abstract_tests/cc/TEST001.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/abstract_tests/cc/TEST001.adoc -------------------------------------------------------------------------------- /template/standard/annex_ats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/annex_ats.adoc -------------------------------------------------------------------------------- /template/standard/annex_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/annex_bibliography.adoc -------------------------------------------------------------------------------- /template/standard/annex_history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/annex_history.adoc -------------------------------------------------------------------------------- /template/standard/annex_n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/annex_n.adoc -------------------------------------------------------------------------------- /template/standard/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_0_front_material.adoc -------------------------------------------------------------------------------- /template/standard/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_1_scope.adoc -------------------------------------------------------------------------------- /template/standard/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_2_conformance.adoc -------------------------------------------------------------------------------- /template/standard/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_3_references.adoc -------------------------------------------------------------------------------- /template/standard/clause_4_terms_and_definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_4_terms_and_definitions.adoc -------------------------------------------------------------------------------- /template/standard/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_5_conventions.adoc -------------------------------------------------------------------------------- /template/standard/clause_6_cc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_6_cc.adoc -------------------------------------------------------------------------------- /template/standard/clause_7_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_7_media_types.adoc -------------------------------------------------------------------------------- /template/standard/clause_8_security_considerations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/clause_8_security_considerations.adoc -------------------------------------------------------------------------------- /template/standard/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/figures/README.md -------------------------------------------------------------------------------- /template/standard/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/images/README.md -------------------------------------------------------------------------------- /template/standard/recommendations/cc/PER_per.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/recommendations/cc/PER_per.adoc -------------------------------------------------------------------------------- /template/standard/recommendations/cc/REC_rec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/recommendations/cc/REC_rec.adoc -------------------------------------------------------------------------------- /template/standard/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/requirements/README.md -------------------------------------------------------------------------------- /template/standard/requirements/cc/REQ_req.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/requirements/cc/REQ_req.adoc -------------------------------------------------------------------------------- /template/standard/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/standard/standard.css -------------------------------------------------------------------------------- /template/xml/core.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/xml/core.xsd -------------------------------------------------------------------------------- /template/xml/wsdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogcapi-features/HEAD/template/xml/wsdl/README.md --------------------------------------------------------------------------------