Skip to content

Instantly share code, notes, and snippets.

@labra
Created September 22, 2015 16:57
Show Gist options
  • Save labra/c64ceb3587bdac764cf0 to your computer and use it in GitHub Desktop.
Save labra/c64ceb3587bdac764cf0 to your computer and use it in GitHub Desktop.
PREFIX dbp: <http://dbpedia.org/property/>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT * WHERE {
?persona dbo:birthPlace ?x .
?x dbp:elevationM ?e .
?x dbp:name ?lugar .
?persona rdf:type dbo:SoccerPlayer .
FILTER (isNumeric(?e))
FILTER (?e > 2500)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment