query-10579fa6d542c105e71d62592e550a38
englischsprachige Wikivoyage - Artikel im Land Deutschland
und deren Koordiante, damit die Darstellung als Karte möglich ist
SELECT ?item ?itemLabel ?article ?coordinate WHERE { ?item wdt:P17 wd:Q183 ; wdt:P625 ?coordinate . ?article schema:about ?item ; schema:inLanguage "en" ; schema:isPartOf https://en.wikivoyage.org/ . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# englischsprachige Wikivoyage - Artikel im Land Deutschland
# und deren Koordiante, damit die Darstellung als Karte möglich ist
SELECT ?item ?itemLabel ?article ?coordinate WHERE {
?item wdt:P17 wd:Q183 ;
wdt:P625 ?coordinate .
?article schema:about ?item ;
schema:inLanguage "en" ;
schema:isPartOf <https://en.wikivoyage.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v2("?coordinate"):::projected
v1("?item"):::projected
c10(["bd:serviceParam"]):::iri
c6(["en"]):::literal
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q183"]):::iri
c8([https://en.wikivoyage.org/]):::iri
v1 --"wdt:P17"--> c2
v1 --"wdt:P625"--> v2
v3 --"schema:about"--> v1
v3 --"schema:inLanguage"--> c6
v3 --"schema:isPartOf"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end