query-fae43d4db6d3828002bbfeca5e487b78
קואורדינטות
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?j9u ?coo WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],he,en,ru,pl,de,it,uk,ar,fr". }
SERVICE bd:slice {
?item wdt:P8189 ?j9u .
bd:serviceParam bd:slice.offset 0 . # Start at item number (not to be confused with QID)
bd:serviceParam bd:slice.limit 200000 . # List this many items
}
?item wdt:P625 ?coo.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coo"):::projected
v1("?item"):::projected
v2("?j9u"):::projected
c8(["0^^xsd:integer"]):::literal
c2(["bd:serviceParam"]):::iri
c10(["200000^^xsd:integer"]):::literal
c4(["#91;AUTO_LANGUAGE#93;,he,en,ru,pl,de,it,uk,ar,fr"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
subgraph s2["http://www.bigdata.com/rdf#slice"]
style s2 stroke-width:4px;
v1 --"wdt:P8189"--> v2
c2 --"bd:slice.offset"--> c8
c2 --"bd:slice.limit"--> c10
end
v1 --"wdt:P625"--> v3