Created
September 22, 2015 16:57
-
-
Save labra/c64ceb3587bdac764cf0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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