query-5d6b998f8644bffae0df5bab7e94f0bd

rq turtle/ttl

Help needed with Commons query statements: (P1259)coordinates of the point of view I have a query for looking for files on commons that have multiple

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?file (COUNT(?coord) AS ?count) {
    ?file wdt:P1259 ?coord .
} 
GROUP BY ?file 
HAVING ( ?count > 1 ) 
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v4("?count") v2("?file"):::projected f0[["?count > '1^^xsd:integer'"]] f0 --> v4 v2 --"wdt:P1259"--> v3 bind2[/"count(?coord)"/] v3 --o bind2 bind2 --as--o v4