query-9041f1784bf8ed39366bbdc24b94b77a

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 ?itemDescription ?coords ?image WHERE {  ?item (wdt:P31/(wdt:P279*)) wd:Q33506;#any type of museum
    wdt:P131* wd:Q7920;#in Munster or inside Munster
   wdt:P17 wd:Q183; #in Germany
   wdt:P625 ?coords.#WITH coordinates
 SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }  OPTIONAL { ?item wdt:P18 ?image. }#possibly with images
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coords"):::projected v3("?image"):::projected v1("?item"):::projected a1((" ")) c3(["wd:Q33506"]):::iri c10(["bd:serviceParam"]):::iri c7(["wd:Q183"]):::iri c12(["de,en"]):::literal c5(["wd:Q7920"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P131"--> c5 v1 --"wdt:P17"--> c7 v1 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end