query-91633e527ae016cdb3377276cee694ae
Wartungslisten auf Basis leerer FelderBei SQL kann ich mit "IS NULL" abfragen ob ein Datenfeld leer ist. Nun will ich bei Wikidata Wartungslisten für eine Stadt erzeugen, damit man sieht welche Felder noch bei den einzelnen Wikidata-Objekten gefüllt werden müssen. ... ohne Bild Fehlende "benannt nach" bei Straßen Fehlende KoordinatenBeispiel:
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#>
#-------------------------------------------------------------------------------
# Straße und Plätze in Dresden
#-------------------------------------------------------------------------------
#defaultView:Table
SELECT DISTINCT ?item ?itemLabel ?named_after ?image ?coordinates
WHERE {
?item wdt:P131 wd:Q1731. # in Dresden
VALUES ?instance_of { wd:Q79007 wd:Q174782 } # Innerortstraße oder Platz
?item wdt:P31 ?instance_of
OPTIONAL {?item wdt:P138 ?named_after. } # benannt nach
OPTIONAL { ?item wdt:P18 ?image. } # Bild
OPTIONAL { ?item wdt:P625 ?coordinates. } # Koordinate
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
Query found at
- https://www.wikidata.org/wiki/User:Quarz/Kladde
- https://www.wikidata.org/wiki/Wikidata:Forum/Archiv/2019/02
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?coordinates"):::projected
v4("?image"):::projected
v2("?instance_of")
v1("?item"):::projected
v3("?named_after"):::projected
c10(["de"]):::literal
c8(["bd:serviceParam"]):::iri
c2(["wd:Q1731"]):::iri
v1 --"wdt:P131"--> c2
bind0[/VALUES ?instance_of/]
bind0-->v2
bind00(["wd:Q79007"])
bind00 --> bind0
bind01(["wd:Q174782"])
bind01 --> bind0
v1 --"wdt:P31"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P138".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end