Polifonia Project

BELLS PILOT

Explore italian cultural soundscapes through the historical bells heritage

KEOMA CQ 4 - How many bells are there in a given church/bell tower? Chiesa Madonna della Neve - Bogliasco (GE)

SELECT (COUNT(?c) AS ?cCount)
WHERE {
?c a-cd:isLocatedIn <https://w3id.org/arco/resource/ArchitecturalOrLandscapeHeritage/0700109690> ;
dc:subject ?o FILTER(str(?o)='campana')
}

In Bogliasco bell tower there are

7

bells

What type of bells are there in a given church/bell tower?

SELECT DISTINCT ?b ?bDesc
WHERE {
?b a-cd:isLocatedIn <https://w3id.org/arco/resource/ArchitecturalOrLandscapeHeritage/0700109690> ;
dc:description ?bDesc ;
dc:subject ?o FILTER(str(?o)='campana')
}

These are the bells in this bell tower (Bogliasco):

Campana in la bemolle3 maggiore a battaglio cadente
Campana in SIb3 a battaglio cadente
Campana in DO4 a battaglio cadente
Campana in REb4 a battaglio cadente
Campana in MIb4, fissa
Campana in FA4, fissa
Campana fuori concerto, priva di iscrizioni

How many bells are part of this bell concert?

SELECT DISTINCT ?q ?d
WHERE {
<https://w3id.org/arco/resource/MusicHeritage/0700377974-0 > arco:numberOfComponents ?q ;
core:description ?d
}

The set of bells is made up by

7

bells:

Concerto di 6 campane in la bemolle3 maggiore più 1 campana fuori concerto. Le 4 campane maggiori hanno attacco a battaglio cadente, le 3 minori sono fisse

Where the set of bells is located (address, coordinates)?

PREFIX clv: <https://w3id.org/italia/onto/CLV/>
PREFIX cis: <http://dati.beniculturali.it/cis/>
SELECT DISTINCT ?cLabel ?fullAddress ?cLat ?cLong
WHERE {
<https://w3id.org/arco/resource/MusicHeritage/0700377974-0> a-loc:hasCulturalPropertyAddress ?a ;
clv:hasGeometry ?g .
?g a-loc:hasCoordinates ?coord .
?coord a-loc:lat ?cLat ;
a-loc:lat ?cLong .
?c cis:siteAddress ?a ;
rdfs:label ?cLabel .
?a clv:fullAddress ?fullAddress .
}

Chiesa dell’Ascensione di Nostro Signore Gesù Cristo e Nostra Signora della Neve

is located in

Via Sessarego 17 16031 Bogliasco (GE)

. The coordinates are:

9.069270

,

44.383322

.


What bells make up a given set of bells?

SELECT ?b ?desc
WHERE {
?b arco:isCulturalPropertyComponentOf <https://w3id.org/arco/resource/MusicHeritage/0700377974-0> core:description ?desc ;
dc:subject?o filter(str(?o)='campana')
}

These bells make up the set of bells in Bogliasco bell tower:

Campana in la bemolle3 maggiore a battaglio cadente
Campana in SIb3 a battaglio cadente
Campana in DO4 a battaglio cadente
Campana in REb4 a battaglio cadente
Campana in MIb4, fissa
Campana in FA4, fissa
Campana fuori concerto, priva di iscrizioni

6. What is the sound of each single bell part of a given set of bells?

SELECT ?b ?desc ?url
WHERE {
?b arco:isCulturalPropertyComponentOf <https://w3id.org/arco/resource/MusicHeritage/0700377974-0> ;
core:description ?desc ;
dc:subject?o filter(str(?o)='campana') .
?doc a-cd:isDocumentationOf ?b ;
<https://w3id.org/italia/onto/SM/URL> ?url ;
rdf:type ?docType FILTER(?docType = a-cd:AudioDocumentation) .
}

Listen to the bell sound:

Campana in la bemolle3 maggiore a battaglio cadente

Campana in la bemolle3 maggiore a battaglio cadente

Campana in SIb3 a battaglio cadente

Campana in SIb3 a battaglio cadente

Campana in DO4 a battaglio cadente

Campana in DO4 a battaglio cadente

Campana in REb4 a battaglio cadente

Campana in REb4 a battaglio cadente

Campana in MIb4, fissa

Campana in MIb4, fissa

Campana in FA4, fissa

Campana in FA4, fissa

Ok, let's play with your loved set of bells. Be the bell ringer of your bell tower!
KEOMA CQ 11 - What is the weight of each single bell part of a given church/bell tower? Purpose of restoration, handling

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?b ?desc ?wVal
WHERE {
?b a-cd:isLocatedIn <https://w3id.org/arco/resource/ArchitecturalOrLandscapeHeritage/0700109690> ;
a-dd:hasMeasurementCollection ?mc ;
dc:description ?desc ;
dc:subject ?o FILTER(str(?o)='campana') .
?mc a-dd:hasMeasurement ?m .
?m a-dd:hasMeasurementType ?mType FILTER(?mType = a-dd:Weight) .
?m a-dd:hasValue ?w .
?w <https://w3id.org/italia/onto/MU/value> ?wVal
} ORDER BY DESC(xsd:integer(?wVal))

The

Campana in la bemolle3 maggiore a battaglio cadente

weights

380

kilos
The

Campana in SIb3 a battaglio cadente

weights

265

kilos
The

Campana in DO4 a battaglio cadente

weights

190

kilos
The

Campana in REb4 a battaglio cadente

weights

155

kilos
The

Campana in MIb4, fissa

weights

110

kilos
The

Campana in FA4, fissa

weights

75

kilos
The

Campana fuori concerto, priva di iscrizioni

weights

25

kilos

8. What is the total weight of the bells within a given church/bell tower? (restoration purposes)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT (SUM(xsd:integer(?wVal)) AS ?total)
WHERE {
?b a-cd:isLocatedIn <https://w3id.org/arco/resource/ArchitecturalOrLandscapeHeritage/0700109690> ;
a-dd:hasMeasurementCollection ?mc ;
dc:description ?desc ;
dc:subject ?o FILTER(str(?o)='campana') .
?mc a-dd:hasMeasurement ?m .
?m a-dd:hasMeasurementType ?mType FILTER(?mType = a-dd:Weight) .
?m a-dd:hasValue ?w .
?w <https://w3id.org/italia/onto/MU/value> ?wVal
}

The total weight of this set of bells is:

1200

kilos

KEOMA CQ 7-8 - When and By whom (by which foundry) were they melted

SELECT DISTINCT ?desc ?n ?evType ?startEndEv
WHERE {
?b arco:isCulturalPropertyComponentOf <https://w3id.org/arco/resource/MusicHeritage/0700377974-0> ;
core:description ?desc ;
a-cd:hasDating ?cron ;
a-cd:hasAuthor ?c ;
dc:subject?o filter(str(?o)='campana') .
?c l0:name ?n .
?cron a-cd:hasDatingEvent ?dEv .
?dEv rdfs:label ?evType ;
a-cd:specificTime ?evDate .
?evDate rdfs:label ?startEndEv
FILTER langMatches(lang(?evType), "it")
}

The

Campana in la bemolle3 maggiore a battaglio cadente

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


The

Campana in SIb3 a battaglio cadente

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


The

Campana in DO4 a battaglio cadente

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


The

Campana in REb4 a battaglio cadente

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


The

Campana in MIb4, fissa

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


The

Campana in FA4, fissa

was produced by

Paolo Capanni (fonderia)

in

1968 - 1968


11. What documentation we have on the “a tastiera bell technique?

SELECT ?t ?a ?docURL ?pic
WHERE {
?t rdf:type arco:DemoEthnoAnthropologicalHeritage ;
a-loc:hasCulturalPropertyAddress ?l ;
foaf:depiction ?pic ;
dc:subject ?o FILTER regex(str(?o), "tastiera") .
?l rdfs:label ?a .
?doc a-cd:isDocumentationOf ?t ;
<https://w3id.org/italia/onto/SM/URL> ?docURL .
}

We have audiovisual documentation about:

ITALIA, Liguria, GE, Ne, SAN BIAGIO DI CHIESANUOVA
https://www.youtube.com/watch?v=qb_MMQIf5F0&t=2m22s


ITALIA, Piemonte, AL, Cremolino, CREMOLINO
https://www.youtube.com/embed/8O1kvt3ESXc?start=768&end=898


ITALIA, Piemonte, AL, Cremolino, CREMOLINO
https://www.youtube.com/embed/Jo-MHMVsWD0?start=11&end=133


ITALIA, Lombardia, BG, Osio Sotto, OSIO SOTTO
https://www.youtube.com/embed/EctudBeg3uM?start=204


12. What documentation we have on the “a cordette” bell technique?

SELECT ?t ?a ?docURL ?pic
WHERE {
?t rdf:type arco:DemoEthnoAnthropologicalHeritage ;
a-loc:hasCulturalPropertyAddress ?l ; foaf:depiction ?pic ;
dc:subject ?o FILTER regex(str(?o), "cordette") .
?l rdfs:label ?a .
?doc a-cd:isDocumentationOf ?t ;
<https://w3id.org/italia/onto/SM/URL> ?docURL .
}

We have only 1 documentation from

ITALIA, Liguria, GE, Ne, SAN BIAGIO DI CHIESANUOVA
https://www.youtube.com/watch?v=qb_MMQIf5F0