Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Thiery committed Mar 5, 2020
1 parent c6ab30d commit 786de47
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 53 deletions.
39 changes: 37 additions & 2 deletions linkeddata/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,43 @@
# AtlantGIS as Linked Data
# AtlantGIS as Linked Open Data

## Files

TDB
* `/rdf` - the final RDF files.
* `/ontology` - the AntlantGIS ontology as OWL file and HTML representation.
* `/pyscripts` - python scripts for transforming csv tables into RDF.

## Ontology

See the AtlantGIS ontology at http://atlantgis.squirrel.link/ontology/ .

## SPARQL endpoint

AtlantGIS as LOD can be queried via a mainzed SPARQL endpoint:

```
http://sandbox.mainzed.org/atlantgis/
```

Send the following query to get all AtlantGIS geometries:

```sql
PREFIX atlantgis: <http://atlantgis.squirrel.link/ontology#>
PREFIX geosparql: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?wkt_geom WHERE {
?item geosparql:hasGeometry ?geom_obj .
?geom_obj geosparql:asWKT ?wkt_geom .
}
```

## SPARQLing Unicorn QGIS Plugin

The AtlantGIS triplestore is part of the `SPARQLing Unicorn QGIS Plugin` (>v0.8) which helps to integrate Linked Data and triplestores into QGIS.

* Install plugin: https://plugins.qgis.org/plugins/sparqlunicorn/
* Install the required dependencies: https://github.com/sparqlunicorn/unicornQGISdepInstaller
* More Info at: http://sparqlunicorn.link

## Credits

Expand Down
51 changes: 0 additions & 51 deletions vector/lod/README.md

This file was deleted.

0 comments on commit 786de47

Please sign in to comment.