query-fa71ffdaeca63fb7169bbf4f0e5035e6
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
#Les meves imatges geolocalitzades
SELECT ?file ?coord ?image
WHERE {
?file (p:P170/pq:P4174) "Pere prlpz".
?file wdt:P1259 ?coord.
?file schema:url ?image.
}
#defaultView:Map
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coord"):::projected
v1("?file"):::projected
v3("?image"):::projected
a1((" "))
c3(["Pere prlpz"]):::literal
v1 --"p:P170"--> a1
a1 --"p:qualifier/P4174"--> c3
v1 --"p:direct/P1259"--> v2
v1 --"schema:url"--> v3