query-d2d8229d7da1ffbf3d2ffecdd42819bf
, which again is useless in my case) (Q837615)Cebuano Wikipedia (P143)imported from Wikimedia project And if I do this, I have all coordinates of the item (and not just the one
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item ?coord
WHERE {
?item wdt:P31 wd:Q484170 ; wdt:P625 ?coord ; p:P625 [ prov:wasDerivedFrom [ pr:P143 wd:Q837615 ] ] .
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coord"):::projected
v1("?item"):::projected
a2((" "))
a1((" "))
c5(["wd:Q837615"]):::iri
c2(["wd:Q484170"]):::iri
v1 --"p:direct/P31"--> c2
v1 --"p:direct/P625"--> v2
a1 --"p:reference/P143"--> c5
a2 --"prov:wasDerivedFrom"--> a1
v1 --"p:P625"--> a2