Created
February 11, 2015 15:10
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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