query-8ba060330b0ff8c529a7a785e9854e2e
Cerques a WD de geometries a mapes - punts, vies, àrees, etc.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?geoshape ?geoshapeLabel
WHERE
{
VALUES ?item { wd:Q142 }
?item wdt:P3896 ?geoshape.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?geoshape"):::projected
v1("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q142"])
bind00 --> bind0
v1 --"wdt:P3896"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end