query-2b4b2b37bbc0a251e8b4768bf2eee4d2

rq turtle/ttl

Города России

Use at

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 ?cityLabel ?coord WHERE {
  ?city wdt:P131* wd:Q159;
        wdt:P625 ?coord;
        wdt:P1082 ?population;
        wdt:P31 wd:Q515 .
  FILTER(?population > 100000) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "ru" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?city") v3("?coord"):::projected v1("?population") c3(["wd:Q159"]):::iri c9(["bd:serviceParam"]):::iri c11(["ru"]):::literal c7(["wd:Q515"]):::iri f0[["?population > '100000^^xsd:integer'"]] f0 --> v1 v2 --"wdt:P131"--> c3 v2 --"wdt:P625"--> v3 v2 --"wdt:P1082"--> v1 v2 --"wdt:P31"--> c7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end