Skip to content

Instantly share code, notes, and snippets.

@labra
Last active August 29, 2015 14:00
Show Gist options
  • Save labra/790d4f23a42f6c0c60c8 to your computer and use it in GitHub Desktop.
Save labra/790d4f23a42f6c0c60c8 to your computer and use it in GitHub Desktop.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX dbpprop: <http://dbpedia.org/property/>
PREFIX dbprop: <http://dbpedia.org/property/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?x ?codigo ?poblacion ?name WHERE {
?x rdf:type dbo:Country .
?x rdf:type <http://schema.org/Country> .
?x dbpprop:iso3166code ?codigo .
?x dbprop:populationCensus ?poblacion .
?x rdfs:label ?name .
FILTER(lang(?name) = "ja")
}
ORDER BY ?name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment