query-848aae73774e80647cb5e962fb434434
Adresseliste
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>
#-------------------------------------------------------------------------------
# Objekte in Dresden mit Adresse ( Eigenschaft Straße einpflegen, wenn Straßenobjekt vorhanden)
#-------------------------------------------------------------------------------
#defaultView:Table
SELECT DISTINCT ?item ?itemLabel ?adresse ?street ?streetLabel ?housenumber ?postcode ?coordinate WHERE {
?item wdt:P131 wd:Q1731. # liegt in Verwaltungseinheit Dresden
?item wdt:P6375 ?adresse # hat Adresse
#MINUS { ?item wdt:P669 [ ]. } # minus Objekte, die eine Straßenangabe haben
#FILTER (CONTAINS(?adresse, 'Theaterplatz')) # für Einschränkungen Straßen name
OPTIONAL { ?item wdt:P625 ?coordinate. } # Koordinte
OPTIONAL { ?item wdt:P669 ?street. } # Straße
OPTIONAL { ?item p:P669 [ pq:P670 ?housenumber ] . } # Hausnummer
OPTIONAL { ?item p:P669 [ pq:P281 ?postcode ] . } # Postleitzahl
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
order by ?adresse
Query found at
- https://www.wikidata.org/wiki/User:Methodios/Dresden
- https://www.wikidata.org/wiki/User:Stefan_K%C3%BChn/Dresden
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?adresse"):::projected
v3("?coordinate"):::projected
v5("?housenumber"):::projected
v2("?item"):::projected
v6("?postcode"):::projected
v4("?street"):::projected
a1((" "))
a2((" "))
c12(["de"]):::literal
c10(["bd:serviceParam"]):::iri
c2(["wd:Q1731"]):::iri
v2 --"p:direct/P131"--> c2
v2 --"p:direct/P6375"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P625".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P669".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
a1 -."p:qualifier/P670".-> v5
v2 --"p:P669"--> a1
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
a2 -."p:qualifier/P281".-> v6
v2 --"p:P669"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end