query-9ecf21c2d2bb9e0752dd275b65c3a412

rq turtle/ttl

Ten largest islands in the world Ten largest islands in the world Ten largest islands in the world Deset největších ostrovů světa Ten largest islands in the world Liste der zehn größten Inseln weltweit Ten largest islands in the world Ten largest islands in the world Ten largest islands in the world Ten largest islands in the world עשרת האיים הגדולים בעולם Ten largest islands in the world Ten largest islands in the world Le dieci isole più grandi del mondo 世界最大の島トップ10 Ten largest islands in the world Ten largest islands in the world Ten largest islands in the world Ten largest islands in the world Dziesięć największych wysp na świecie Ten largest islands in the world Ten largest islands in the world 10 крупнейших островов Ten largest islands in the world Tio största öarna i världen Ten largest islands in the world Dünyanın en büyük on adası Десять найбільших островів світу Ten largest islands in the world 世界上前十名最大的岛屿

Use at

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: <span lang="en" dir="ltr" class="mw-content-ltr">Ten largest islands in the world</span>
# Inspired by this infographic: https://redd.it/a6423t

#defaultView:ImageGrid
SELECT DISTINCT ?island ?islandLabel ?islandImage WHERE {
  ?island (wdt:P31/(wdt:P279*)) wd:Q23442.
  OPTIONAL { ?island wdt:P18 ?islandImage. }
  ?island (p:P2046/psn:P2046/wikibase:quantityAmount) ?islandArea.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
ORDER BY DESC (?islandArea)
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?island"):::projected v1("?islandArea") v3("?islandImage"):::projected a1((" ")) a2((" ")) a3((" ")) c3(["wd:Q23442"]):::iri c9(["bd:serviceParam"]):::iri c11(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal v2 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:direct/P18".-> v3 end v2 --"p:P2046"--> a2 a2 --"p:statement/value-normalized/P2046"--> a3 a3 --"wikibase:quantityAmount"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end