query-58362771c1e84518e996fc7710a0913f
Objekte in Torgau ohne Koordinaten
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#>
#-------------------------------------------------------------------------------
# Objekte in Torgau ohne Koordinaten
#-------------------------------------------------------------------------------
#defaultView:Map{"layer": ?coordinates, "hide": ["?coordinates", "?instance_ofLabel"]};Table
#Artikellink
# Commons-Link
SELECT DISTINCT ?item ?itemLabel ?article ?coordinates ?image WHERE {
?item wdt:P131 wd:Q12062.
OPTIONAL {
?article schema:about ?item;
schema:isPartOf <https://de.wikipedia.org/>.
}
OPTIONAL {
?commons schema:about ?item;
schema:isPartOf <https://commons.wikimedia.org/>.
}
OPTIONAL { ?item wdt:P18 ?image. }
FILTER(!(BOUND(?coordinates)))
OPTIONAL { ?item wdt:P625 ?coordinates. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v4("?commons")
v1("?coordinates"):::projected
v5("?image"):::projected
v2("?item"):::projected
c5([https://de.wikipedia.org/]):::iri
c12(["de"]):::literal
c10(["bd:serviceParam"]):::iri
c2(["wd:Q12062"]):::iri
c6([https://commons.wikimedia.org/]):::iri
f0[["not bound(?coordinates)"]]
f0 --> v1
v2 --"wdt:P131"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."schema:about".-> v2
v3 --"schema:isPartOf"--> c5
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v2
v4 --"schema:isPartOf"--> c6
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end