query-a24ef0286af836c641c5c49e7414248d
Pmt
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT DISTINCT ?entity ?entityLabel ?entityDescription ?coord
WHERE
{
?entity rdfs:label "Buholmen"@en .
?entity wdt:P625 ?coord .
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("?coord"):::projected
v1("?entity"):::projected
c5(["bd:serviceParam"]):::iri
c2([sBuholmen^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c7(["en"]):::literal
v1 --"rdfs:label"--> c2
v1 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end