geopython / pygeoapi

pygeoapi is a Python server implementation of the OGC API suite of standards. The project emerged as part of the next generation OGC API efforts in 2018 and provides the capability for organizations to deploy a RESTful OGC API endpoint using OpenAPI, GeoJSON, and HTML. pygeoapi is open source and released under an MIT license.
https://pygeoapi.io
MIT License
460 stars 250 forks source link

Are conformance class links supposed to resolve? #1637

Closed ShaneMill1 closed 2 months ago

ShaneMill1 commented 2 months ago

Description It doesn't appear that all of the conformance class links resolve

Steps to Reproduce Looking at conformance classes for Features: https://github.com/geopython/pygeoapi/blob/master/pygeoapi/api/itemtypes.py#L81, a url that does resolve is: http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core

A url that does not resolve is: https://www.opengis.net/spec/ogcapi-features-3/1.0/conf/queryables, it just returns "Not Found"

Expected Behavior

I would expect all of the conformance links to resolve

tomkralidis commented 2 months ago

Thanks @ShaneMill1. pygeoapi implements both the approved/ratified standards as well as those in draft. Conformance links are not created on infrastructure until a given standard is fully approved, so this is expected from a pygeoapi viewpoint (as simply implemementing a draft standard).

Let me know if that helps @ShaneMill1. Closing this issue for now.