Skip to content

Commit

Permalink
Building blocks postprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Jul 9, 2024
1 parent b8be991 commit 2718a10
Show file tree
Hide file tree
Showing 172 changed files with 8,067 additions and 301 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
path
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
path @id
/geometry http://www.opengis.net/ont/geosparql#hasGeometry
/geometry/type @type
/geometry/coordinates https://purl.org/geojson/vocab#coordinates
/geometry/bbox https://purl.org/geojson/vocab#bbox
/geometry/geometries
/geometry/geometries/type @type
/geometry/geometries/coordinates https://purl.org/geojson/vocab#coordinates
/geometry/geometries/bbox https://purl.org/geojson/vocab#bbox
35 changes: 35 additions & 0 deletions annotated-schemas/geo/features/geosparqlGeometry/context.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"@context": {
"geometry": {
"@context": {
"type": "@type",
"coordinates": {
"@container": "@list",
"@id": "geojson:coordinates"
},
"bbox": {
"@container": "@list",
"@id": "geojson:bbox"
}
},
"@id": "geo:hasGeometry",
"@type": "@json"
},
"Feature": "geojson:Feature",
"FeatureCollection": "geojson:FeatureCollection",
"GeometryCollection": "geojson:GeometryCollection",
"LineString": "geojson:LineString",
"MultiLineString": "geojson:MultiLineString",
"MultiPoint": "geojson:MultiPoint",
"MultiPolygon": "geojson:MultiPolygon",
"Point": "geojson:Point",
"Polygon": "geojson:Polygon",
"features": {
"@container": "@set",
"@id": "geojson:features"
},
"geojson": "https://purl.org/geojson/vocab#",
"geo": "http://www.opengis.net/ont/geosparql#",
"@version": 1.1
}
}
Loading

0 comments on commit 2718a10

Please sign in to comment.