query-809f2ba72844b66074f34eae99b77fc7
100 Most Populated Cities
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
select ?itemLabel ?popLabel ?cord
where{
?item wdt:P31 wd:Q1637706.
?item wdt:P1082 ?pop.
?item wdt:P625 ?cord
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Order by DESC (?pop)
limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?cord"):::projected
v2("?item")
v1("?pop")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q1637706"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1082"--> v1
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end