query-6b88c5aab305a01b49d88c7401d717ec
Abfrage von Entitäten mir geographischem BezugEine Karte von Aufführungsstätten lässt sich folgendermaßen aus Wikidata abfragen:
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#>
#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?location WHERE {
{
{ ?item wdt:P31*/wdt:P279* wd:Q746369 } # Tonstudio
UNION
{ ?item wdt:P31*/wdt:P279* wd:Q2442401 } # Tonträgerunternehmen
UNION
{ ?item wdt:P31*/wdt:P279* wd:Q1955150 } # Musikinstrumentebauer
}
# mit Koordinaten 20km um Berlin
wd:Q64 wdt:P625 ?berlinLocation .
SERVICE wikibase:around {
?item wdt:P625 ?location .
bd:serviceParam wikibase:center ?berlinLocation .
bd:serviceParam wikibase:radius "20" .
bd:serviceParam wikibase:distance ?dist.
}
# mit Namen
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?berlinLocation")
v4("?dist")
v1("?item"):::projected
v3("?location"):::projected
a1((" "))
a2((" "))
a3((" "))
c6(["wd:Q64"]):::iri
c3(["wd:Q746369"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q2442401"]):::iri
c5(["wd:Q1955150"]):::iri
c16(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c12(["20"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
subgraph union1[" Union "]
subgraph union1l[" "]
style union1l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> a3
a3 --"wdt:P279"--> c5
end
subgraph union1r[" "]
style union1r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> a2
a2 --"wdt:P279"--> c4
end
union1r <== or ==> union1l
end
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
end
union0r <== or ==> union0l
end
c6 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#around"]
style s1 stroke-width:4px;
v1 --"wdt:P625"--> v3
c9 --"wikibase:center"--> v2
c9 --"wikibase:radius"--> c12
c9 --"wikibase:distance"--> v4
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c9 --"wikibase:language"--> c16
end