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

New GeoJSON and Schema.org alignments #555

Draft
wants to merge 2 commits into
base: geosparql-1.3
Choose a base branch
from
Draft
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
19 changes: 19 additions & 0 deletions alignments/geojsonld-alignments.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix geojson: <https://purl.org/geojson/vocab#> .
@prefix sf: <http://www.opengis.net/ont/sf#> .

geojson:Feature owl:equivalentClass geo:Feature .
geojson:FeatureCollection owl:equivalentClass geo:FeatureCollection .
geojson:GeometryCollection owl:equivalentClass geo:GeometryCollection .
geojson:LineString owl:equivalentClass sf:LineString .
geojson:MultiLineString owl:equivalentClass sf:MultiLineString .
geojson:MultiPoint owl:equivalentClass sf:MultiPoint .
geojson:MultiPolygon owl:equivalentClass sf:MultiPolygon .
geojson:Point owl:equivalentClass sf:Point .
geojson:features owl:equivalentProperty rdfs:member .
geojson:geometry owl:equivalentProperty geo:hasGeometry .
geojson:coordinates owl:equivalentProperty geo:hasSerialization .
geojson:bbox owl:equivalentProperty geo:hasBoundingBox .

6 changes: 6 additions & 0 deletions alignments/schemaorg-alignments.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
geo:Geometry rdfs:subClassOf sdo:GeoShape .
sdo:GeospatialGeometry owl:equivalentClass geo:SpatialObject .
sdo:GeoCoordinates rdfs:subClassOf geo:Geometry .
sdo:Place rdfs:subClassOf geo:Feature .
sdo:containedInPlace rdfs:subPropertyOf geo:sfWithin .
sdo:containsPlace rdfs:subPropertyOf geo:sfContains .
sdo:geo rdfs:subPropertyOf geo:hasGeometry .
sdo:geoCoveredBy owl:equivalentProperty geo:ehCoveredBy .
sdo:geoCovers owl:equivalentProperty geo:ehCovers .
Expand All @@ -18,3 +21,6 @@ sdo:geoOverlaps owl:equivalentProperty geo:sfOverlaps .
sdo:geoTouches owl:equivalentProperty geo:sfTouches .
sdo:geoWithin owl:equivalentProperty geo:sfWithin .
sdo:Landform rdfs:subClassOf geo:Feature .
sdo:longitude owl:equivalentProperty geo:northing .
sdo:latitude owl:equivalentProperty geo:easting .