Skip to content

Instantly share code, notes, and snippets.

@rtroncy
Created February 11, 2015 15:10
Show Gist options
  • Save rtroncy/b0ca07e5c11f43c29dd1 to your computer and use it in GitHub Desktop.
Save rtroncy/b0ca07e5c11f43c29dd1 to your computer and use it in GitHub Desktop.
SPARQL query that illustrate the POIs which don't have nearest thing because of lack of geodata in 3cixty
SELECT ?place ?pub
WHERE {
?place a dul:Place .
?place dc:publisher ?pub .
{
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/hotel> .
} UNION {
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/bar> .
} UNION {
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/restaurant> .
}
FILTER(NOT EXISTS{
?place ont3:nearestMetroStation ?nearestMetroStation .
?place ont3:minDistanceNearestMetroStation ?distMetro .
?place ont3:nearestBikeStation ?nearestBikeStation .
?place ont3:minDistanceNearestBikeStation ?distBike .
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment