User:Gerd Fahrenhorst

From Wikidata
Jump to navigation Jump to search
Babel user information
de-N Dieser Benutzer spricht Deutsch als Muttersprache.
en-2 This user has intermediate knowledge of English.
Users by language
Gerd Fahrenhorst

About me[edit]

ToDo[edit]

SPARQL Links[edit]

Nearby ohne Stolpersteine und Sonderausstellungen[edit]

The following query uses these:

  • Properties: coordinate location (P625)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, located in the administrative territorial entity (P131)  View with Reasonator View with SQID
    SELECT ?place ?dist ?placeLabel ?placeDescription ?istEinLabel ?liegtInLabel
    WHERE
    {
      # Nearby ohne Stolpersteine und Sonderausstellungen
      wd:Q2204038 wdt:P625 ?loc . # Item mit Geokoordinaten
      #BIND ( "Point(-79.71 15.8)"^^geo:wktLiteral AS ?loc ) . # Beliebige Position. Erst Ost/West. keine Blanks vor oder nach den Koordinaten!
      SERVICE wikibase:around {
          ?place wdt:P625 ?location .
          bd:serviceParam wikibase:center ?loc .
          bd:serviceParam wikibase:radius "15" .
      }
      OPTIONAL { ?place wdt:P31 ?istEin }
      OPTIONAL { ?place wdt:P131 ?liegtIn }
      FILTER ( ?istEin != wd:Q26703203 && ?istEin != wd:Q29023906) # keine Stolpersteine
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
      BIND(geof:distance(?loc, ?location) as ?dist)
    } ORDER BY ?dist
    LIMIT 50
    

Nearby mit Denkmal Nds und OSM, ohne Stolpersteine[edit]

The following query uses these:

Unvollständig[edit]

Nearby, mit Geokoordinaten aber ohne P31 (ist ein) oder ohne P17 (Staat)[edit]

Hier muss man sorgfältig ein ODER Zeichen "||" bei der FILTER Anweisung vermeiden, damit das SPARQL2 Template die FILTER Zeile verarbeiten kann.

The following query uses these:

  • Properties: coordinate location (P625)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, located in the administrative territorial entity (P131)  View with Reasonator View with SQID, country (P17)  View with Reasonator View with SQID
    SELECT ?place ?dist ?placeLabel ?placeDescription ?istEinLabel ?liegtInLabel
    WHERE
    {
      wd:Q494631 wdt:P625 ?loc . # Objekt mit Geokoordinaten
      #BIND ( "Point(-79.71 15.8)"^^geo:wktLiteral AS ?loc ) . # Beliebige Position. Erst Ost/West. keine Blanks vor oder nach den Koordinaten!
      SERVICE wikibase:around {
          ?place wdt:P625 ?location .
          bd:serviceParam wikibase:center ?loc .
          bd:serviceParam wikibase:radius "20" .
      }
      OPTIONAL { ?place wdt:P31 ?istEin }
      OPTIONAL { ?place wdt:P131 ?liegtIn }
      OPTIONAL { ?place wdt:P17 ?staat }
      FILTER ( ! (BOUND(?istEin ) && BOUND(?staat )) ) # nur wenn kein P31 oder P17 angegeben
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
      BIND(geof:distance(?loc, ?location) as ?dist)
    } ORDER BY ?dist
    LIMIT 50
    

Nearby, mit Geokoordinaten aber ohne "ist ein", "Staat" oder "liegt in"[edit]

Hier muss man sorgfältig ein ODER Zeichen "||" bei der FILTER Anweisung vermeiden, damit das SPARQL2 Template die FILTER Zeile verarbeiten kann.

The following query uses these:

  • Properties: coordinate location (P625)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, located in the administrative territorial entity (P131)  View with Reasonator View with SQID, country (P17)  View with Reasonator View with SQID
    SELECT ?place ?dist ?placeLabel ?placeDescription ?istEinLabel ?liegtInLabel
    WHERE
    {
      # Nearby, mit Geokoordinaten aber ohne "ist ein", Staat oder "liegt in"
      wd:Q494631 wdt:P625 ?loc . # Objekt mit Geokoordinaten
      #BIND ( "Point(-79.71 15.8)"^^geo:wktLiteral AS ?loc ) . # Beliebige Position. Erst Ost/West. keine Blanks vor oder nach den Koordinaten!
      SERVICE wikibase:around {
          ?place wdt:P625 ?location .
          bd:serviceParam wikibase:center ?loc .
          bd:serviceParam wikibase:radius "10" .
      }
      OPTIONAL { ?place wdt:P31 ?istEin }
      OPTIONAL { ?place wdt:P131 ?liegtIn }
      OPTIONAL { ?place wdt:P17 ?staat }
      FILTER ( ! (BOUND(?istEin ) && BOUND(?staat ) && BOUND(?liegtIn )) ) # nur wenn kein P31 oder P17 oder P131 angegeben
      FILTER ( ?istEin != wd:Q26703203 && ?istEin != wd:Q29023906) # keine Stolpersteine und keine Sonderausstellungen
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
      BIND(geof:distance(?loc, ?location) as ?dist)
    } ORDER BY ?dist
    LIMIT 50
    

Schleuse in Deutschland ohne P206 (liegt am Gewässer) oder P131 (liegt in)[edit]

Hier muss man sorgfältig ein ODER Zeichen "||" bei der FILTER Anweisung vermeiden, damit das SPARQL2 Template die FILTER Zeile verarbeiten kann.

The following query uses these:

Hauptverwaltung in Niedersachsen[edit]

The following query uses these:

Bauwerk in Niedersachsen[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?liegtinLabel ?isteinLabel WHERE {
      ?item wdt:P131 wd:Q1197.
      # ist Bauwerk oder direkte Unterklasse von Bauwerk. * statt ? wären alle Unterklassen gibt aber Timeout.
      ?item wdt:P31/wdt:P279? wd:Q811979.
      ?item wdt:P131 ?liegtin.
      ?item wdt:P31 ?istein.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    }
    LIMIT 50
    

irgendwas in Region Hannover[edit]

The following query uses these:

liegt in Verwaltungseinheit grafisch[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT ?item ?itemLabel ?isteinLabel ?liegtinLabel ?loc WHERE {
  # liegt in der Verwaltungseinheit, oder in einer Einheit die in dieser Verw.Einheit liegt
  ?item wdt:P131/wdt:P131? wd:Q1715.
  ?item wdt:P625 ?loc.
  ?item wdt:P131 ?liegtin.
  ?item wdt:P31 ?istein.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
LIMIT 9000   # Sind (Stand: 7/2022) über 7000 Items

liegt in statistischer Einheit grafisch[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT ?item ?itemLabel ?isteinLabel ?liegtinLabel ?loc WHERE {
  # liegt in der Verwaltungseinheit, oder in einer Einheit die in dieser Verw.Einheit liegt
  ?item wdt:P8138 wd:Q18615961.
  ?item wdt:P625 ?loc.
  ?item wdt:P131 ?liegtin.
  ?item wdt:P31 ?istein.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
LIMIT 9000   # Sind (Stand: 7/2022) über 7000 Items

Zierbrunnen in der Umgebung eines Ortes[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT ?place ?location ?placeLabel ?placeDescription ?istEinLabel ?liegtInLabel ?pic
WHERE
{
  wd:Q1055 wdt:P625 ?loc . # Q1055=Hamburg, Q1715=Hannover, muss mit Geokoord. sein
  SERVICE wikibase:around {
      ?place wdt:P625 ?location .
      bd:serviceParam wikibase:center ?loc .
      bd:serviceParam wikibase:radius "20" .
  }
  OPTIONAL { ?place wdt:P31 ?istEin }
  OPTIONAL { ?place wdt:P131 ?liegtIn }
  OPTIONAL { ?place wdt:P17 ?staat }
  OPTIONAL { ?place wdt:P18 ?pic }
  #FILTER ( ?placeLabel == "Brunnen" ) # funktioniert nicht ?!
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
  FILTER ( ?istEin = wd:Q483453 )   # Q483453 ist Zierbrunnen, Q43483 Wasserbrunnen
  BIND(geof:distance(?loc, ?location) as ?dist)
} ORDER BY ?dist
LIMIT 150

Standorte der Kupferhäuser[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT ?item ?itemLabel ?liegtinLabel ?loc WHERE {
  # ist ein Kupferhaus
  ?item wdt:P31 wd:Q1306182.
  ?item wdt:P625 ?loc.
  ?item wdt:P131 ?liegtin.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
LIMIT 90

Werke eines Künstlers[edit]

Werke von C. W. Allers[edit]

The following query uses these:

  • Properties: author (P50)  View with Reasonator View with SQID, illustrator (P110)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?objekt ?objektLabel ?objektDescription ?istEinLabel ?autorLabel ?illustLabel ?urheberLabel ?pic ?jahr
    WHERE
    {
      VALUES ?wasSuchenWir { wdt:P50 wdt:P110 wdt:P170 }  # Autor, Illustrator oder Urheber
      ?objekt  ?wasSuchenWir wd:Q704689.    # Q704689 = C. W. Allers
      OPTIONAL { ?objekt  wdt:P31  ?istEin }
      OPTIONAL { ?objekt  wdt:P50  ?autor }
      OPTIONAL { ?objekt  wdt:P110 ?illust }
      OPTIONAL { ?objekt  wdt:P170 ?urheber }
      OPTIONAL { ?objekt  wdt:P571 ?datum; BIND(YEAR(?datum) AS ?jahr) }
      OPTIONAL { ?objekt  wdt:P18  ?pic }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
    } ORDER BY ?objektLabel 
    LIMIT 150
    

Werke von Andreas Rimkus[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#defaultView:Map
SELECT ?objekt ?objektLabel ?objektDescription ?istEinLabel ?liegtInLabel ?pic ?jahr ?loc ?osm
WHERE
{
  ?objekt  wdt:P170 wd:Q500247 . # P170 = Urheber, Q500247 = Andreas Rimkus
  OPTIONAL { ?objekt  wdt:P31  ?istEin }
  OPTIONAL { ?objekt  wdt:P131 ?liegtIn }
  OPTIONAL { ?objekt  wdt:P625 ?loc }
  OPTIONAL { ?objekt  wdt:P571 ?datum; BIND(YEAR(?datum) AS ?jahr) }
  OPTIONAL { ?objekt  wdt:P18  ?pic }
  OPTIONAL { ?objekt  wdt:P11693 ?osm }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
} ORDER BY ?objektLabel 
LIMIT 50  # 17 in 411 ms (Oktober 2023)

Werke von Diether Heisig[edit]

The following query uses these:

Werke von Hartmut Wiesner[edit]

The following query uses these:

Skulpturen, Zierbrunnen, Denkmäler u.ä. nach Ort[edit]

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Göttingen[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?isteinLabel ?liegtinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?loc 
    WHERE {
      ?item wdt:P131+ wd:Q3033. # liegt in Verwaltungseinheit Göttingen oder einer Untereinheit (Stadtbezirk, Stadtteil)
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse /wdt:P279? führt zu Timeout bzw SEHR vielen Doppelzeilen
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      #OPTIONAL { ?item wdt:P18   ?pic }  # gibt Mehrfachtreffer wenn mehrere Bilder vorhanden
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 1000   # 221 in 1900 ms  (August 2022)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Hamburg[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?isteinLabel ?liegtinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?loc 
    WHERE {
      ?item wdt:P131+ wd:Q1055. # liegt in Verwaltungseinheit Hamburg oder einer Untereinheit (Stadtbezirk, Stadtteil)
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse /wdt:P279? führt zu Timeout bzw SEHR vielen Doppelzeilen
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      #OPTIONAL { ?item wdt:P18   ?pic }  # gibt Mehrfachtreffer wenn mehrere Bilder vorhanden
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 1000   # 221 in 1900 ms  (August 2022), 350 in 4300 ms (Oktober 2023)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Landkreis Nienburg[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID, OpenStreetMap node ID (P11693)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?isteinLabel ?liegtinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?loc ?osm 
    WHERE {
      ?item wdt:P131+ wd:Q5958. # liegt in Verwaltungseinheit Landkreis Nienburg oder einer Untereinheit (Stadtbezirk, Stadtteil)
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse /wdt:P279? führt zu Timeout bzw SEHR vielen Doppelzeilen
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      #OPTIONAL { ?item wdt:P18   ?pic }  # gibt Mehrfachtreffer wenn mehrere Bilder vorhanden
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      OPTIONAL { ?item wdt:P11693 ?osm }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 100   # 4 (Oktober 2023)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Hannover[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?isteinLabel ?liegtinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?loc 
    WHERE {
      ?item wdt:P131+ wd:Q1715. # liegt in Verwaltungseinheit Hannover oder einer Untereinheit (Stadtbezirk, Stadtteil)
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 wd:Q29382748 wd:Q928357 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief, Metallskulptur, Bronzeskulptur
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse /wdt:P279? führt zu Timeout bzw SEHR vielen Doppelzeilen
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      #OPTIONAL { ?item wdt:P18   ?pic }  # gibt Mehrfachtreffer wenn mehrere Bilder vorhanden
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 1000   # 190 in 1900 ms  (Juli 2022)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Linden/Limmer[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, inception (P571)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?urheberLabel ?ortLabel  ?datum 
    WHERE {
      ?item wdt:P131+ wd:Q1826001. # liegt in Verwaltungseinheit Linden/Limmer oder einer Untereinheit (Stadtbezirk, Stadtteil)
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 wd:Q29382748 wd:Q928357 wd:Q123521074 wd:Q2870602 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief, Metallskulptur, Bronzeskulptur, Tierbrunnen, Wartehäuschen
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse /wdt:P279? führt zu Timeout bzw SEHR vielen Doppelzeilen
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P571  ?datum }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?datum
    LIMIT 1000   # 17 in 700 ms  (Oktober 2023)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Oldenburg[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID, OpenStreetMap node ID (P11693)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?liegtinLabel ?isteinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?pic ?loc ?osm WHERE {
      ?item wdt:P131+ wd:Q2936. # liegt in Verwaltungseinheit Oldenburg
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 wd:Q29382748 wd:Q928357 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief, Metallskulptur, Bronzeskulptur
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      OPTIONAL { ?item wdt:P18   ?pic }
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      OPTIONAL { ?item wdt:P11693 ?osm }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 150   # 23 in 900 ms  (juli 2022)
    

Skulpturen, Zierbrunnen, Denkmäler u.ä. in Wilhelmshaven[edit]

The following query uses these:

  • Properties: located in the administrative territorial entity (P131)  View with Reasonator View with SQID, instance of (P31)  View with Reasonator View with SQID, creator (P170)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID, made from material (P186)  View with Reasonator View with SQID, location (P276)  View with Reasonator View with SQID, Vanderkrogt.net Statues ID (P3711)  View with Reasonator View with SQID, OpenStreetMap node ID (P11693)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemDescription ?liegtinLabel ?isteinLabel ?urheberLabel ?ortLabel ?materLabel ?vanderk ?pic ?osm ?loc WHERE {
      ?item wdt:P131+ wd:Q3857. # liegt in Verwaltungseinheit Wilhelmshaven 
      VALUES ?wasSuchenWir { wd:Q860861 wd:Q179700 wd:Q483453 wd:Q2293362 wd:Q4989906 wd:Q17489160 wd:Q659396 wd:Q245117 wd:Q29382748 wd:Q928357 }
      # Skulptur, Statue, Zierbrunnen, Skulpturengruppe, Denkmal, Büste, Reiterstandbild, Relief, Metallskulptur, Bronzeskulptur
      ?item wdt:P31 ?wasSuchenWir.   # Suche nach Skulptur oder Unterklasse
      ?item wdt:P31 ?istein.
      OPTIONAL { ?item wdt:P131  ?liegtin }
      OPTIONAL { ?item wdt:P170  ?urheber }
      OPTIONAL { ?item wdt:P625  ?loc }
      OPTIONAL { ?item wdt:P18   ?pic }
      OPTIONAL { ?item wdt:P186  ?mater }
      OPTIONAL { ?item wdt:P276  ?ort }
      OPTIONAL { ?item wdt:P3711 ?vanderk }
      OPTIONAL { ?item wdt:P11693 ?osm }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
    } ORDER BY ?itemLabel
    LIMIT 150   # 58 in 650 ms (Juli 2022), 88 in 750 ms (Oktober 2023)
    

Objekte mit Vanderkrogt-ID[edit]

Objekte in Niedersachsen mit Vanderkrogt-ID[edit]

The following query uses these:

Objekte in Hamburg mit Vanderkrogt-ID[edit]

The following query uses these: