SoetaertAlexander
Joined 6 November 2019
Babel user information | ||||||
---|---|---|---|---|---|---|
| ||||||
Users by language |
I studied history and now work for the City of Bruges (Brugge) in Belgium.
I support the city's museums (Musea Brugge), libraries, archives and archaeological department (Raakvlak) to make their historical collections accessible online.
Wikidata SPARQL queries
editArchaeological finds in Bruges
editArchaeological finds discovered in Bruges' inner city
editList
SELECT ?archaeological_find ?archaeological_findDescription WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?archaeological_find wdt:P31 wd:Q10855061;
wdt:P189 wd:Q12994.
OPTIONAL { }
}
Images
#defaultView:ImageGrid
SELECT ?archaeological_find ?archaeological_findLabel ?image WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?archaeological_find wdt:P31 wd:Q10855061.
?archaeological_find wdt:P189 wd:Q12994.
OPTIONAL { ?archaeological_find wdt:P18 ?image. }
}
Objects dating from the Late Middle Ages
edit#defaultView:ImageGrid
SELECT ?archaeological_find ?archaeological_findLabel ?image WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?archaeological_find wdt:P31 wd:Q10855061;
wdt:P189 wd:Q12994;
wdt:P2348 wd:Q212976.
OPTIONAL { ?archaeological_find wdt:P18 ?image. }
}
Location of discovery on map
edit#defaultView:Map
SELECT DISTINCT ?item ?itemDescription ?location_of_discovery ?location_of_discoveryLabel ?geoloc ?afbeelding WHERE {
?item wdt:P189 ?location_of_discovery.
?location_of_discovery wdt:P625 ?geoloc.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P195 wd:Q99174870.
OPTIONAL { ?item wdt:P18 ?afbeelding. }
}
Location of creation on map
edit#defaultView:Map
SELECT DISTINCT ?itemLabel ?location_of_creation ?location_of_creationLabel ?geoloc ?image ?item WHERE {
?item wdt:P1071 ?location_of_creation.
?location_of_creation wdt:P625 ?geoloc.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q10855061.
OPTIONAL { ?item wdt:P18 ?image. }
?item wdt:P189 wd:Q12994.
}
Archaeological finds in metal
edit#defaultView:ImageGrid
SELECT ?archaeological_find ?archaeological_findDescription ?inventory_number ?image WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?archaeological_find wdt:P31 wd:Q10855061;
wdt:P189 wd:Q12994;
wdt:P186 wd:Q11426.
OPTIONAL { ?archaeological_find wdt:P217 ?inventory_number. }
OPTIONAL { ?archaeological_find wdt:P18 ?image. }
}
Works of art in the Groeningemuseum, Bruges
editAll works of art in the Groeningemuseum with inventory number and image
edit#defaultView:List
SELECT ?item ?itemLabel ?inventarisnummer ?afbeelding WHERE {
?item wdt:P195 wd:Q1948674.
SERVICE wikibase:label { bd:serviceParam wikibase:language "nl". }
OPTIONAL { ?item wdt:P217 ?inventarisnummer. }
OPTIONAL { ?item wdt:P18 ?afbeelding. }
}
All paintings/drawings/... in the Groeningemuseum
editSELECT ?schilderij ?schilderijLabel ?inventarisnummer WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?schilderij wdt:P31 wd:Q3305213.
?schilderij wdt:P276 wd:Q1948674.
OPTIONAL { ?schilderij wdt:P217 ?inventarisnummer. }
}
SELECT ?tekening ?tekeningLabel ?inventarisnummer WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?tekening wdt:P31 wd:Q93184.
?tekening wdt:P276 wd:Q1948674.
OPTIONAL { ?tekening wdt:P217 ?inventarisnummer. }
}
Inventory numbers, creators, date, genre, dimensions, depicts
edit#defaultView:List
SELECT ?item ?itemLabel ?itemDescription ?collectie ?collectieLabel ?inventarisnummer ?is_een ?is_eenLabel ?maker ?makerLabel ?datum_van_oprichting_of_creatie ?stroming ?stromingLabel ?genre ?genreLabel ?gebruikt_materiaal ?gebruikt_materiaalLabel ?lengte ?breedte ?hoogte ?beschreven_op_URL ?beeldt_af ?beeldt_afLabel WHERE {
?item wdt:P276 wd:Q1948674.
SERVICE wikibase:label { bd:serviceParam wikibase:language "nl". }
OPTIONAL { ?item wdt:P195 ?collectie. }
OPTIONAL { ?item wdt:P217 ?inventarisnummer. }
OPTIONAL { ?item wdt:P31 ?is_een. }
OPTIONAL { ?item wdt:P170 ?maker. }
OPTIONAL { ?item wdt:P571 ?datum_van_oprichting_of_creatie. }
OPTIONAL { ?item wdt:P135 ?stroming. }
OPTIONAL { ?item wdt:P136 ?genre. }
OPTIONAL { ?item wdt:P186 ?gebruikt_materiaal. }
OPTIONAL { ?item wdt:P2043 ?lengte. }
OPTIONAL { ?item wdt:P2049 ?breedte. }
OPTIONAL { ?item wdt:P2048 ?hoogte. }
OPTIONAL { ?item wdt:P973 ?beschreven_op_URL. }
OPTIONAL { ?item wdt:P180 ?beeldt_af. }
OPTIONAL { ?item wdt:P18 ?afbeelding. }
}
Depicts statements (grouped)
editSELECT ?item ?itemLabel (GROUP_CONCAT(?beeldt_afLabel; SEPARATOR = ", ") AS ?beeldt_af)
WHERE {
?item wdt:P276 wd:Q1948674;
wdt:P180 ?beeldt_af.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?beeldt_af rdfs:label ?beeldt_afLabel.
?item rdfs:label ?itemLabel.
}
}
GROUP BY ?item ?itemLabel
Works of art depicting a church building in the Groeningemuseum
editSELECT ?kerkgebouw ?kerkgebouwLabel ?inventarisnummer ?afbeelding WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?kerkgebouw wdt:P180 wd:Q16970.
?kerkgebouw wdt:P276 wd:Q1948674.
OPTIONAL { ?kerkgebouw wdt:P217 ?inventarisnummer. }
OPTIONAL { ?kerkgebouw wdt:P18 ?afbeelding. }
}