Created
September 5, 2014 13:46
-
-
Save rtroncy/32214f9595ffe29bac1b to your computer and use it in GitHub Desktop.
SPARQL query to find all restaurants within 1km distance of the venue of the Pearl Jam concert at San Siro in Milan
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 DISTINCT ?s ?cat | |
WHERE { | |
{ | |
SELECT ?geoEvent | |
WHERE { | |
<http://data.linkedevents.org/event/247e69f0-ba4e-4423-92e6-17a9a8090344> lode:inSpace ?space . | |
?space geo:geometry ?geoEvent. | |
} | |
} | |
{ | |
?s <http://data.linkedevents.org/def/location#businessType> ?cat . | |
} | |
UNION | |
{ | |
?s <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/yelp/restaurants> . | |
} | |
?cat skos:broader <http://data.linkedevents.org/kos/yelp/restaurants> . | |
?s <http://schema.org/geo> ?geo . | |
?geo geo:geometry ?geoPOI . | |
FILTER(bif:st_intersects(?geoPOI, ?geoEvent, 1)) . | |
} |
Well, no, I think I would prefer we keep the kos pattern
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that http://data.linkedevents.org/kos/yelp/restaurants will soon change to http://data.linkedevents.org/skos/yelp/restaurants