query-102ed218479c525f2591baf19129667e
Commons files with multiple locations TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?file ?coord1 ?coord2
{
?file wdt:P1259 ?coord1 , ?coord2 .
FILTER (?coord1 != ?coord2)
}
LIMIT 100
Query found at
- https://www.wikidata.org/wiki/User:Jarekt/queries
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2021/02
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?coord1"):::projected
v2("?coord2"):::projected
v3("?file"):::projected
f0[["?coord1 != ?coord2"]]
f0 --> v1
f0 --> v2
v3 --"wdt:P1259"--> v1
v3 --"wdt:P1259"--> v2