Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor!: switch from GeoJSON to WKT for GeoSPARQL support #80

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shacl/projects/common.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix regen: <https://schema.regen.network#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix geojson: <https://purl.org/geojson/vocab#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
Expand All @@ -24,7 +24,7 @@ regen:DescriptionPropertyShape sh:path schema:description ;
.

regen:LocationPropertyShape sh:path schema:location ;
sh:class geojson:Feature ;
sh:datatype geo:wktLiteral ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:group regen:ProjectPageLocationGroup ;
Expand Down
1 change: 0 additions & 1 deletion shacl/projects/project.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix regen: <https://schema.regen.network#> .
@prefix geojson: <https://purl.org/geojson/vocab#> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Expand Down
Loading