Skip to content

Instantly share code, notes, and snippets.

@labra
Created May 2, 2014 17:21
Show Gist options
  • Save labra/786db4fbf6e96e868fe5 to your computer and use it in GitHub Desktop.
Save labra/786db4fbf6e96e868fe5 to your computer and use it in GitHub Desktop.
Example DBPedia enrichment of population
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