query-b9ae75ce1e58c651fdd005148c21a40c

rq turtle/ttl

Unternehmen, Vereine und Behörden in Dresden

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#-------------------------------------------------------------------------------
# Unternehmen, Vereine und Behörden in Dresden
#-------------------------------------------------------------------------------
#defaultView:Table
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?Steuernummer ?rechtsformLabel ?adresse ?street ?streetLabel ?coordinate ?image
WHERE {
  {   
    ?item wdt:P131 wd:Q1731.                    # liegt in Dresden
    ?item (wdt:P31/wdt:P279*) wd:Q6881511.      # ist ein Unternehmen 
  }
  union
  {
    ?item wdt:P159 wd:Q1731.                    # hat Hauptverwaltung in Dresden
  }
    union
   {
     ?item wdt:P131 wd:Q1731.                   # liegt in Verwaltungseinheit Dresden
     ?item wdt:P3608 ?Steuernummer              # hat eine Steuernummer
     FILTER (CONTAINS(?Steuernummer, '')).                 
   }
    union
   {
     ?item wdt:P131 wd:Q1731.                   # liegt in Verwaltungseinheit Dresden
     ?item wdt:P1454 ?rechtsform                # hat eine Rechtsform
      FILTER (CONTAINS(?rechtsform, '')).
   }
  OPTIONAL {?item wdt:P6375 ?adresse            # hat Adresse
  #FILTER (CONTAINS(?adresse, ''))              # Filter für die Adresse
  .}
  OPTIONAL { ?item wdt:P18 ?image. }            # Bild
  OPTIONAL { ?item wdt:P625 ?coordinate. }      # Koordinate
  OPTIONAL { ?item wdt:P669 ?street. }          # Straße
  OPTIONAL { ?item wdt:P3608 ?Steuernummer. }
  OPTIONAL { ?item wdt:P1454 ?rechtsform.}      #Rechtsform
  ?item rdfs:label ?name 
  #FILTER(REGEX(STR(?name), "Gl"))               # Filter für Name
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?Steuernummer"):::projected v4("?adresse"):::projected v6("?coordinate"):::projected v5("?image"):::projected v1("?item"):::projected v8("?name") v3("?rechtsform") v7("?street"):::projected a1((" ")) c5(["wd:Q6881511"]):::iri c16(["bd:serviceParam"]):::iri c2(["wd:Q1731"]):::iri c18(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; subgraph union2[" Union "] subgraph union2l[" "] style union2l fill:#abf,stroke-dasharray: 3 3; f0[["contains(?rechtsform,'')"]] f0 --> v3 v1 --"wdt:P131"--> c2 v1 --"wdt:P1454"--> v3 end subgraph union2r[" "] style union2r fill:#abf,stroke-dasharray: 3 3; f1[["contains(?Steuernummer,'')"]] f1 --> v2 v1 --"wdt:P131"--> c2 v1 --"wdt:P3608"--> v2 end union2r <== or ==> union2l end end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P159"--> c2 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P131"--> c2 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 end union0r <== or ==> union0l end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P6375".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v6 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P669".-> v7 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P3608".-> v2 end subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1454".-> v3 end v1 --"rdfs:label"--> v8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c16 --"wikibase:language"--> c18 end