query-58e9e50066f05ef9af8ea95dd6caeeb5

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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX psn: <http://www.wikidata.org/prop/statement/value-normalized/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?painting ?widthAmount ?heightAmount (?widthAmount * ?heightAmount AS ?area) 
{ 
?painting wdt:P31 wd:Q3305213 .  # Instance of painting
?painting p:P2049 ?widthStatement .
?widthStatement psn:P2049 ?widthValue .
?widthStatement rdf:type wikibase:BestRank .
?widthValue wikibase:quantityAmount ?widthAmount .
?painting p:P2048 ?heightStatement .
?heightStatement psn:P2048 ?heightValue .
?heightStatement rdf:type wikibase:BestRank .
?heightValue wikibase:quantityAmount ?heightAmount .
}
ORDER BY DESC(?area)
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v9("?area") v8("?heightAmount"):::projected v6("?heightStatement") v7("?heightValue") v2("?painting"):::projected v5("?widthAmount"):::projected v3("?widthStatement") v4("?widthValue") c2(["wd:Q3305213"]):::iri c6(["wikibase:BestRank"]):::iri v2 --"p:direct/P31"--> c2 v2 --"p:P2049"--> v3 v3 --"p:statement/value-normalized/P2049"--> v4 v3 --"a"--> c6 v4 --"wikibase:quantityAmount"--> v5 v2 --"p:P2048"--> v6 v6 --"p:statement/value-normalized/P2048"--> v7 v6 --"a"--> c6 v7 --"wikibase:quantityAmount"--> v8 bind0[/"?widthAmount * ?heightAmount"/] v5 --o bind0 v8 --o bind0 bind0 --as--o v9