User:Mfilot/Wikimedia CH/Burgen-Dossier

From Wikidata
Jump to navigation Jump to search

Veranstaltung[edit]

Abfragen[edit]

Wikidata Query Service[edit]

#Burgen im Kanton Bern
SELECT ?item ?itemLabel ?coord WHERE {
  ?item wdt:P31 wd:Q23413.
  ?item wdt:P131 wd:Q11911.
  OPTIONAL { ?item wdt:P625 ?coord. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}

Overpass Thurbo[edit]

  • muss noch erstellt werden...

Varianat 1[edit]

 /* All castle in the canton of Bern */
 [timeout:25];
 area
   [wikidata=Q11911];
 out body;
 // gather results
 (
   node["historic"="castle"];
   way["historic"="castle"];
   relation["historic"="castle"];
 );
 // print results
 out body;
 >;
 out skel qt;

Die Resultatausgabe kann gekürzt werden auf:

 // print results
 out center;

Run

Variante 2[edit]

 [timeout:25];
 // gather results
 (
   node["historic"="castle"]({{bbox}});
   way["historic"="castle"]({{bbox}});
   relation["historic"="castle"]({{bbox}});
 );
 // print results
 out body;
 >;
 out skel qt;

User:Mfilot