query-81fea4802b1c5efc46f990926c797c9e

rq turtle/ttl

Prefix wdtn: not working for quantities?The following query should retrieve the normalized elevation of mountains, right?

Use at

PREFIX wdtn: <http://www.wikidata.org/prop/direct-normalized/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
select * where {
  ?mountain wdt:P31 wd:Q8502 .
  ?mountain wdtn:P2044 ?elevation .
} limit 3

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?elevation"):::projected v1("?mountain"):::projected c2(["wd:Q8502"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdtn:P2044"--> v2