Skip to content

Commit

Permalink
David/dynamic ogc features (#298)
Browse files Browse the repository at this point in the history
* Implement the ability to define remote OGC Features endpoint definitions - present motivation is only to specify class hierarchy "above" the point at which the OGC Features API is mounted.

* Formatting

* temporarily disable arm build in github action
  • Loading branch information
recalcitrantsupplant authored Nov 7, 2024
1 parent 2ce1b3f commit ea8a61b
Show file tree
Hide file tree
Showing 6 changed files with 109 additions and 93 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_push_to_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ jobs:
${{ env.IMAGE_NAME }}:dev
# Set provenance to false due to issue documented here: https://github.com/docker/build-push-action/issues/778
provenance: false
platforms: linux/amd64,linux/arm64
platforms: linux/amd64 #,linux/arm64 temporarily disable due to https://github.com/oxigraph/oxigraph/issues/1077
2 changes: 1 addition & 1 deletion .github/workflows/on_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:
tags: ${{ steps.metadata.outputs.tags }}
# Set provenance to false due to issue documented here: https://github.com/docker/build-push-action/issues/778
provenance: false
platforms: linux/amd64,linux/arm64
platforms: linux/amd64 #,linux/arm64 temporarily disable due to https://github.com/oxigraph/oxigraph/issues/1077
118 changes: 60 additions & 58 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions prez/reference_data/endpoints/features/features_metadata.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,31 @@
@prefix sys: <https://prez.dev/endpoint/system/> .

ogcfeat:feature-collections
a ont:ListingEndpoint ;
a ont:ListingEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:FeatureCollections ;
.

ogcfeat:feature-collection
a ont:ObjectEndpoint ;
a ont:ObjectEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:FeatureCollections ;
.

ogcfeat:features
a ont:ListingEndpoint ;
a ont:ListingEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:Feature ;
.

ogcfeat:feature
a ont:ObjectEndpoint ;
a ont:ObjectEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:Feature ;
.

ogcfeat:queryables-global
a ont:ListingEndpoint ;
a ont:ListingEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:QueryablesGlobal ;
.

ogcfeat:queryables-local
a ont:ListingEndpoint ;
a ont:ListingEndpoint , ont:OGCFeaturesEndpoint ;
ont:relevantShapes ex:QueryablesLocal ;
.
Loading

0 comments on commit ea8a61b

Please sign in to comment.