Skip to content

Instantly share code, notes, and snippets.

@rtroncy
Created September 5, 2014 13:46
Show Gist options
  • Save rtroncy/32214f9595ffe29bac1b to your computer and use it in GitHub Desktop.
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
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)) .
}
@ocorcho
Copy link

ocorcho commented Sep 5, 2014

@rtroncy
Copy link
Author

rtroncy commented Sep 5, 2014

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