query-33bb7777e4af45a70695bb3cd3849b5d
TODO
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
SELECT DISTINCT ?place ?placeLabel ?coord
WHERE {
?place wdt:P31/wdt:P279* wd:Q839954 .
?place wdt:P17 wd:Q38 .
OPTIONAL { ?place wdt:P625 ?coord . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en,de,es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coord"):::projected
v1("?place"):::projected
a1((" "))
c5(["wd:Q38"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["it,en,de,es"]):::literal
c3(["wd:Q839954"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end