query-29b50d8db885311213aea8004d32f70b

rq turtle/ttl


Straßen, Plätze und Brücken in Torgau ohne "Höhe über den Meeresspiegel"

-------------------------------------------------------------------------------

PREFIX schema: http://schema.org/ SELECT DISTINCT ?item ?itemLabel ?elevation ?article ?coordinates WHERE { ?item wdt:P131 wd:Q12062. # Objekt liegt in Torgau VALUES ?instance_of { wd:Q79007 wd:Q174782 wd:Q537127} # Liste von Objekttypen definieren: Innerortstraße oder Platz oder Brücke ?item wdt:P31 ?instance_of # nur Objekte mit passenden Objekttyp OPTIONAL { # optional: deutschsprachigen Wikipedia-Artikel anzeigen ?article schema:about ?item. ?article schema:isPartOf https://de.wikipedia.org/. } OPTIONAL {?item wdt:P2044 ?elevation. } # optional: Höhe über dem Meeresspiegel anzeigen FILTER(!BOUND(?elevation)) # Abfrage nach leerem Datenfeld OPTIONAL { ?item wdt:P18 ?image. } # optional: Bild OPTIONAL { ?item wdt:P625 ?coordinates. } # optional: Koordinate (für Ansicht in Karte) SERVICE wikibase:label { bd:serviceParam wikibase:language "de". } # Sprachausgabe deutsch } ORDER BY ?named_after ?itemLabel

Use at

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ßen, Plätze und Brücken in Torgau ohne "Höhe über den Meeresspiegel"
#-------------------------------------------------------------------------------
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemLabel ?elevation ?article ?coordinates 
WHERE {
  ?item wdt:P131 wd:Q12062.                                          # Objekt liegt in Torgau
  VALUES ?instance_of { wd:Q79007 wd:Q174782 wd:Q537127}             # Liste von Objekttypen definieren: Innerortstraße oder Platz oder Brücke
  ?item wdt:P31 ?instance_of                                         # nur Objekte mit passenden Objekttyp
  OPTIONAL {                                                         # optional: deutschsprachigen Wikipedia-Artikel anzeigen
   ?article schema:about ?item.
   ?article schema:isPartOf <https://de.wikipedia.org/>.
}
OPTIONAL {?item wdt:P2044 ?elevation. }                           # optional: Höhe über dem Meeresspiegel anzeigen
FILTER(!BOUND(?elevation))                                       # Abfrage nach leerem Datenfeld
OPTIONAL { ?item wdt:P18 ?image. }                                 # optional: Bild
OPTIONAL { ?item wdt:P625 ?coordinates. }                          # optional: Koordinate (für Ansicht in Karte)
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". } # Sprachausgabe deutsch
}
ORDER BY ?named_after ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?article"):::projected v8("?coordinates"):::projected v3("?elevation"):::projected v7("?image") v5("?instance_of") v4("?item"):::projected v2("?itemLabel"):::projected v1("?named_after") c6([https://de.wikipedia.org/]):::iri c13(["de"]):::literal c11(["bd:serviceParam"]):::iri c2(["wd:Q12062"]):::iri f0[["not bound(?elevation)"]] f0 --> v3 v4 --"wdt:P131"--> c2 bind1[/VALUES ?instance_of/] bind1-->v5 bind10(["wd:Q79007"]) bind10 --> bind1 bind11(["wd:Q174782"]) bind11 --> bind1 bind12(["wd:Q537127"]) bind12 --> bind1 v4 --"wdt:P31"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v6 -."schema:about".-> v4 v6 --"schema:isPartOf"--> c6 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P2044".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P18".-> v7 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P625".-> v8 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end