query-d55931fc949e1c7823a1eac4ad8d38c5
title:Hoogtes boven 8000 m SELECT ?elevation ?item ?itemLabel ?itemDescription ?coord WHERE { hint:Query hint:optimizer "None". ?st psn:P2044 ?psn . ?psn wikibase:quantityAmount ?elevation . FILTER(?elevation > 8000) . ?psn wikibase:quantityUnit wd:Q11573 . ?st wikibase:rank ?rank . FILTER(?rank != wikibase:DeprecatedRank) . ?item p:P2044 ?st . ?item wdt:P625 ?coord . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". } } ORDER BY DESC(?elevation)
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 psn: <http://www.wikidata.org/prop/statement/value-normalized/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Hoogtes boven 8000 m
SELECT ?elevation ?item ?itemLabel ?itemDescription ?coord WHERE {
?st psn:P2044 ?psn .
?psn wikibase:quantityAmount ?elevation . FILTER(?elevation > 8000) .
?psn wikibase:quantityUnit wd:Q11573 .
?st wikibase:rank ?rank . FILTER(?rank != wikibase:DeprecatedRank) .
?item p:P2044 ?st .
?item wdt:P625 ?coord .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
ORDER BY DESC(?elevation)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?coord"):::projected
v1("?elevation"):::projected
v5("?item"):::projected
v4("?psn")
v2("?rank")
v3("?st")
c13(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
c6(["wd:Q11573"]):::iri
c11(["bd:serviceParam"]):::iri
f0[["?rank != 'wikibase:DeprecatedRank'"]]
f0 --> v2
f1[["?elevation > '8000^^xsd:integer'"]]
f1 --> v1
v3 --"p:statement/value-normalized/P2044"--> v4
v4 --"wikibase:quantityAmount"--> v1
v4 --"wikibase:quantityUnit"--> c6
v3 --"wikibase:rank"--> v2
v5 --"p:P2044"--> v3
v5 --"p:direct/P625"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end