query-b2a98151bda1c91b35bbac8a70fb87c2
defaultView:Table{"hide":["?coor","?img"]} (June 6)
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{"hide":["?coor","?country"]}
#defaultView:Table{"hide":["?coor","?img"]}
#defaultView:ImageGrid{"hide":["?coor"]}
SELECT DISTINCT ?item ?itemLabel ?coor ?img ?country
{
?item wdt:P31 wd:Q797765 .
?item wdt:P625 ?coor .
?item wdt:P17 ?country .
OPTIONAL { ?item wdt:P18 ?img }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coor"):::projected
v3("?country"):::projected
v4("?img"):::projected
v1("?item"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q797765"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P625"--> v2
v1 --"wdt:P17"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end