Link Search Menu Expand Document

BELLS Knowledge Graph

DOI

BELLS Knowledge Graph stores information about Italian bells, bell towers and bell ringers. In particular, in this version, the data collected is related to the bells of the Italian region Liguria, and comes from catalogue records of the General Catalogue of Italian Cultural Heritage.

BELLS Knowledge Graph can be queried on the ArCo SPARQL endpoint. Moreover, it can be downloaded from this repository in different formats (also, see here).

License: Attribution 4.0 International (CC BY)

Knowledge Graph Description

This knowledge graph contains data about Italian bells and bell towers. Data about bells refer to both measurable, intrinsic aspects such as weight, materials, conservation status, as well as properties deriving from interpretation situations, such as authorship attribution, dating, execution techniques, and their related objects (e.g. bibliography). The Bells knowledge graph is integrated in the ArCo knowledge graph.

Competency questions addressed by this knowledge graph

  • Where is the building/church/bell tower?
  • When (what year) was the building built?
  • In which context is the building located (urban, periurban…)?
  • Are there bells in the church/bell tower? How many bells are in the church/bell tower?
  • Is there a single bell or a poliorganic instrument (a set of bells) in a church/bell tower?
  • By whom (by which foundry) were they cast?
  • When were they cast?
  • Which is the material of the bell?
  • Which is the weight of the bell?
  • Which are the measures of the bell?
  • Which is the nominal note of a bell?
  • What inscription is on the bell?
  • Which is the Iconclass code connected to the icons on the bell?

Examples of SPARQL queries addressed by the module

  • By whom (by which foundry) were the bell(s) cast? When where they cast?
    PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
    PREFIX core: <https://w3id.org/arco/ontology/core/>
    PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
    PREFIX arco: <https://w3id.org/arco/ontology/arco/>
    SELECT DISTINCT ?bell ?desc ?author ?authorLab ?dating ?datingTime
    WHERE { ?bell arco:isCulturalPropertyComponentOf ?setofbells ; rdf:type arco:MusicHeritage ;
    core:description ?desc ;
    a-cd:hasDating ?dating ;
    a-cd:hasAuthor ?author ;
    dc:subject ?o .
    ?author rdfs:label ?authorLab .
    ?dating a-cd:hasDatingEvent ?datingEv .
    ?datingEv tiapit:atTime ?datingTime
    FILTER(str(?o)='campana')
    }
    
  • Are there bells in the church/bell tower?
    PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
    PREFIX core: <https://w3id.org/arco/ontology/core/>
    PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
    PREFIX arco: <https://w3id.org/arco/ontology/arco/>
    SELECT DISTINCT ?site ?siteLab ?bell ?desc
    WHERE { ?bell arco:isCulturalPropertyComponentOf ?setofbells ; rdf:type arco:MusicHeritage ;
    a-loc:hasTimeIndexedTypedLocation ?titl ;
    core:description ?desc ;
    dc:subject ?o .
    ?titl a-loc:atSite ?site .
    ?site rdfs:label ?siteLab
    FILTER(str(?o)='campana')
    }
    
  • Which is the weight of the bell?
    PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
    PREFIX muapit: <https://w3id.org/italia/onto/MU/>
    PREFIX core: <https://w3id.org/arco/ontology/core/>
    PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
    PREFIX arco: <https://w3id.org/arco/ontology/arco/>
    PREFIX a-dd: <https://w3id.org/arco/ontology/denotative-description/>
    SELECT DISTINCT ?bell ?desc ?m ?mLab ?v ?u ?uLab
    WHERE { ?bell arco:isCulturalPropertyComponentOf ?setofbells ; rdf:type arco:MusicHeritage ;
    a-loc:hasTimeIndexedTypedLocation ?titl ;
    core:description ?desc ;
    a-dd:hasMeasurementCollection ?mc ;
    dc:subject ?o .
    ?mc a-dd:hasMeasurement ?m .
    ?m a-dd:hasMeasurementType a-dd:Weight .
    ?m rdfs:label ?mLab ; a-dd:hasValue ?mVal .
    ?mVal muapit:value ?v ; muapit:hasMeasurementUnit ?u .
    ?u rdfs:label ?uLab
    FILTER(str(?o)='campana')
    }
    

Statistics

The BELLS knowledge graph contains 249.050 triples, and includes 204 distinct bells, related to 30 distinct sets of bells. Therefore, the KG talks about 200 instances of musical instrument. Other relevant individuals in the knowledge graph are:

  • 1280 roles played by some agents;
  • 507 time indexed types locations, related to 68 addresses;
  • 295 photographic documentations;
  • 203 audio documentations;
  • 267 events.

MELODY Data Stories

BELLS Knowledge Graph is described in a dedicated MELODY data story:

  • [Overview of the bells in Liguria][(https://projects.dharc.unibo.it/melody/bells/overview_of_bells_in_liguria)]