Discovering Spatial and Temporal Links among RDF Data
Authors
Introduction
This is a webpage for the evaluation of the spatial and temporal extensions of the Silk Framework.
You can read more about Silk on its official webpage .
Download and Install
Silk: Download release 2.6.1 and follow the instructions.
Strabon: Download release 3.2.10 and follow the instructions.
Run the Silk Workbench
Execute: `sbt "project workbench" run`
In your browser, navigate to 'http://localhost:9000'
Run the Silk Single Machine
Execute: `sbt "project singlemachine" run -DconfigFile="path-to-the-file"`
Experiments
Below you can find all the relevant input for reproducing the experiments.
Datasets
Greek Administrative Geography Dataset (download )
CORINE Land Use/Land Cover Dataset (download )
Hotspots Dataset (download )
Linkage Rule
strdf:intersects
?s rdf:type noa:Hotspot.
?t rdf:type corine:Area.
?t corine:hasLandUse ?lu.
FILTER (?lu = corine:broadLeavedForest || ?lu = corine:coniferousForest ).
strdf:intersects
?s rdf:type noa:Hotspot.
?t rdf:type gag:Δήμος.
Strabon Queries
PREFIX noa:
PREFIX corine:
PREFIX rdf:
PREFIX strdf:
PREFIX gag:
PREFIX exp:
CONSTRUCT {?s strdf:intersects ?t.}
WHERE
{
GRAPH exp:hg{
?s rdf:type noa:Hotspot.
?s noa:hasGeometry/noa:asWKT ?sg.
?s strdf:hasValidTime ?st.
}
GRAPH exp:gag{
?t rdf:type gag:Δήμος.
?t gag:hasGeometry/gag:asWKT ?tg.
?t strdf:hasValidTime ?tt.
}
FILTER(geof:sfIntersects(?sg, ?tg) && strdf:intersects(?st, ?tt))
}
---------------------------------------------------------------------------------------------------------
PREFIX noa:
PREFIX corine:
PREFIX rdf:
PREFIX strdf:
PREFIX gag:
PREFIX exp:
CONSTRUCT {?s strdf:intersects ?t.}
WHERE
{
GRAPH exp:hg{
?s rdf:type noa:Hotspot.
?s noa:hasGeometry/noa:asWKT ?sg.
?s strdf:hasValidTime ?st.
}
GRAPH exp:corine{
?t rdf:type corine:Area.
?t corine:hasLandUse ?lu.
FILTER (?lu = corine:broadLeavedForest || ?lu = corine:coniferousForest ).
?t corine:hasGeometry/corine:asWKT ?tg.
?t strdf:hasValidTime ?tt.
}
FILTER(geof:sfIntersects(?sg, ?tg) && strdf:intersects(?st, ?tt))
}
Publications
P. Smeros and M. Koubarakis. Discovering Spatial and Temporal Links among RDF Data. In the WWW2016 Workshop: Linked Data on the Web (LDOW2016). Montréal, Canada. 11 April, 2016. [pdf ]