query-f90347c0c5970a0ba6da331ea4962552

rq turtle/ttl

TODO

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 distinct ?item ?itemLabel ?coord
WHERE
{
  ?item wdt:P27 wd:Q20 .
  ?item wdt:P19 ?pob.
  ?pob wdt:P625 ?coord.
  filter not exists {?pob wdt:P17 wd:Q20.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v2("?item"):::projected v1("?pob") c7(["bd:serviceParam"]):::iri c2(["wd:Q20"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P17"--> e0c2 e0v1("?pob"):::projected e0c2(["wd:Q20"]):::iri end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> c2 v1 --"wdt:P17"--> c2 v2 --"wdt:P27"--> c2 v2 --"wdt:P19"--> v1 v1 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end