query-2ae29cdb46dfc23d06dddb140870b803

rq turtle/ttl

Locations by population

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX target: <http://www.wikidata.org/entity/Q35>

SELECT
  ?population
  ?location ?locationLabel
  ?locationDescription
WHERE {
   {
  SELECT 
    ?population
    ?location 
  WHERE { 
    ?location wdt:P17 target: ;
              wdt:P625 ?geo ;
              wdt:P1082 ?population .
  }
  ORDER BY DESC(?population)
  LIMIT 500
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} 
ORDER BY DESC(?population)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?geo") v2("?location"):::projected v1("?population"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2([http://www.wikidata.org/entity/Q35]):::iri v2 --"wdt:P17"--> c2 v2 --"wdt:P625"--> v3 v2 --"wdt:P1082"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end