query-3c2b26d42f7c3807465a469955f6b9df
Query
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Mappa dei luoghi presenti in SBN
#defaultView:Map
SELECT ?item ?itemLabel ?lid ?coord
WHERE {
?item wdt:P10397 ?lid .
OPTIONAL { ?item wdt:P625 ?coord } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v1("?item"):::projected
v2("?lid"):::projected
c6(["it,#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["bd:serviceParam"]):::iri
v1 --"wdt:P10397"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end