query-b525dcee44dc4a42b6a85eb1c6105289
Berge in Bangladesh (als Karte)
Use at
- https://query.wikidata.org/sparql
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 ?position WHERE {
?item wdt:P31 wd:Q8502; # ist ein = Berg
wdt:P17 wd:Q902; # Staat = Bangladesch
wdt:P625 ?position. # Hole Position aus Koordinaten
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?position"):::projected
c7(["bd:serviceParam"]):::iri
c4(["wd:Q902"]):::iri
c2(["wd:Q8502"]):::iri
c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P17"--> c4
v1 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end