query-e5103a89772c3784dc884d3146e5d055
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?url ?coord WHERE {
?file wdt:P180 wd:Q1392526 .
?file schema:url ?url .
OPTIONAL {?file wdt:P625 ?coord.} # can we use coords? no.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v1("?file")
v2("?url"):::projected
c2(["wd:Q1392526"]):::iri
v1 --"wdt:P180"--> c2
v1 --"schema:url"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v3
end