Created
May 2, 2014 17:21
-
-
Save labra/786db4fbf6e96e868fe5 to your computer and use it in GitHub Desktop.
Example DBPedia enrichment of population
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 dbo: <http://dbpedia.org/ontology/> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX dbp: <http://dbpedia.org/property/> | |
prefix : <http://ejemplo.org/> | |
SELECT ?name ?population ?v1 ?v2 WHERE { | |
SERVICE <http://dbpedia.org/sparql> { | |
SELECT ?name ?population WHERE { | |
?c rdf:type dbo:Country . | |
?c dbp:populationEstimate ?population . | |
?c rdfs:label ?name . | |
FILTER (lang(?name)='en') | |
} | |
} | |
?country :name ?name . | |
?x :indicator :Woman ; :value ?v1 ; :country ?country . | |
?y :indicator :Man ; :value ?v2 ; :country ?country . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment