Chris@0: Chris@0: Chris@0: Chris@0: Chris@0:
Chris@0:
Chris@0:
Chris@0:
Chris@0:
Chris@0:
Chris@0:
Chris@0: This is a non-commercial site. The information contained in this site has been collected from several Chris@0: sources and its accuracy cannot be guaranteed. Chris@0: No copyright has been intentionally Chris@0: violated. If you feel a copyright has been violated please contact me immediately and the material will be removed Chris@0:
Chris@0: Chris@0:Chris@0: This is a data set of classical composers and their network of influence as originally described by Chris@0: Charles H. Smith et al. in the original Classical Music Navigator site [1]. A small Chris@0: ad-hoc Classical Music Navigator ontology [2] is used to describe influence concepts Chris@0: and the Music Ontology [3] is used to describe composers.
Chris@0: Chris@0: Chris@0:
Chris@0: This modest data set contains around 10k triples.
Chris@0: Chris@0: In this data set you find statements like the following:
Chris@0: Chris@0:
Chris@0: @prefix : <http://dbtune.org/cmn/resource/> . Chris@0: @prefix cmno: <http://purl.org/ontology/classicalmusicnav#> . Chris@0: @prefix foaf: <http://xmlns.com/foaf/0.1/> . Chris@0: @prefix mo: <http://purl.org/ontology/mo/> . Chris@0: @prefix owl: <http://www.w3.org/2002/07/owl#> . Chris@0: @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . Chris@0: Chris@0: :CAGE a mo:Composer; Chris@0: cmno:hasInfluenced :BOUL2, Chris@0: :CRUM, Chris@0: :FELD, Chris@0: :GLAS, Chris@0: :HARR2, Chris@0: :KAGE, Chris@0: :LUTO, Chris@0: :MADE, Chris@0: :OLIV, Chris@0: :REIC1, Chris@0: :RILE, Chris@0: :STOC, Chris@0: :TAKE; Chris@0: cmno:influencedBy :BOUL2, Chris@0: :COWE, Chris@0: :FELD, Chris@0: :HARR2, Chris@0: :IVES, Chris@0: :SATI, Chris@0: :SCHO, Chris@0: :VARE, Chris@0: :WEBE2; Chris@0: mo:musicbrainz <http://musicbrainz.org/artist/76325a9d-6c25-4649-96b1-84e9b99d6b4b>; Chris@0: = <http://dbpedia.org/resource/John_Cage>; Chris@0: foaf:birthday "1912-92"; Chris@0: foaf:name "John Cage" . Chris@0:Chris@0: Chris@0: Note we have provided links to Musicbrainz identifiers and DBpedia where possible.
Chris@0: Chris@0: Chris@0: Chris@0: A SPARQL endpoint with a slick Virtuoso Chris@0: web interface is available at http://dbtune.org/cmn/sparql
Chris@0: Chris@0: An example query to find all composers who influenced John Cage: Chris@0: Chris@0:
Chris@0: prefix cmn: <http://dbtune.org/cmn/resource/> Chris@0: prefix cmno: <http://purl.org/ontology/classicalmusicnav#> Chris@0: Chris@0: Chris@0: SELECT ?o WHERE {cmn:CAGE cmno:influencedBy ?o} Chris@0:Chris@0: Chris@0: Chris@0: