query-6359dbd074a8817afd19f722abee8868

rq turtle/ttl

Diverse Seenarten im Radius von 300 km um die Koordinate von Sizilien

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 ?item ?itemLabel ?coordinate WHERE {
  wd:Q1460 wdt:P625 ?Center.    # Koordinaten von Sizilien
  { ?item wdt:P31 wd:Q23397; }  # ist ein See
  UNION                           # oder
  { ?item wdt:P31 wd:Q131681; }  # ein Stausee
  UNION                           # oder
  { ?item wdt:P31 wd:Q187223; }  # eine Lagune
  UNION                           # oder
  { ?item wdt:P31 wd:Q188025; }  # ein Salzsee
  SERVICE wikibase:around {
    ?item wdt:P625 ?coordinate. # hole Koordinaten 
    bd:serviceParam wikibase:center ?Center. # Abstand von den Koordinaten von Sizilien
    bd:serviceParam wikibase:radius "300". # innerhalb 300 Kilometer 
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,it,en,[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Center") v3("?coordinate"):::projected v2("?item"):::projected c4(["wd:Q23397"]):::iri c15(["de,it,en,#91;AUTO_LANGUAGE#93;"]):::literal c6(["wd:Q187223"]):::iri c7(["wd:Q188025"]):::iri c9(["bd:serviceParam"]):::iri c12(["300"]):::literal c1(["wd:Q1460"]):::iri c5(["wd:Q131681"]):::iri c1 --"wdt:P625"--> v1 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; subgraph union2[" Union "] subgraph union2l[" "] style union2l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P31"--> c7 end subgraph union2r[" "] style union2r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P31"--> c6 end union2r <== or ==> union2l end end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P31"--> c5 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P31"--> c4 end union0r <== or ==> union0l end subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c9 --"wikibase:center"--> v1 c9 --"wikibase:radius"--> c12 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c9 --"wikibase:language"--> c15 end