query-f34ddf18951afab14eb798c383ff1e95

rq turtle/ttl

Swedish municipals with no outdoorgyms in Wikidata on a map

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#>
#title:Swedish municipals with no connected outdoor gyms on a map
#defaultView:Map{"hide":["?coord"], "layer": "?lanidLabel"}
SELECT ?adminItem ?adminItemLabel ?coord ?www ?lanidLabel WHERE {
  ?adminItem wdt:P31 wd:Q127448;
    wdt:P17 wd:Q34.
  OPTIONAL { ?adminItem wdt:P625 ?coord. }
  MINUS { ?adminItem wd:P576 ?end. }
  MINUS { ?adminItem wd:P1366 ?sub. }
  OPTIONAL { ?adminItem wdt:P856 ?www. }
  ?adminItem wdt:P131 ?lanid.
  ?lanid wdt:P31 wd:Q200547.
  MINUS {
    ?item wdt:P6104 wd:Q107186275;
      wdt:P131 ?adminItem.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "sv,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?adminItem"):::projected v2("?coord"):::projected v3("?end") v7("?item") v6("?lanid") v4("?sub") v5("?www"):::projected c2(["wd:Q127448"]):::iri c4(["wd:Q34"]):::iri c10(["wd:Q200547"]):::iri c14(["bd:serviceParam"]):::iri c16(["sv,en"]):::literal c12(["wd:Q107186275"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P17"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v2 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wd:P576"--> v3 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wd:P1366"--> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P856".-> v5 end v1 --"wdt:P131"--> v6 v6 --"wdt:P31"--> c10 subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v7 --"wdt:P6104"--> c12 v7 --"wdt:P131"--> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end