annotate cmn/index.html @ 11:d95267afa12a

Notes on unavailability of resources
author Chris Cannam
date Tue, 07 Nov 2017 11:21:26 +0000
parents 1e44d666ced1
children eea58cdb7c08
rev   line source
Chris@0 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Chris@0 2
Chris@0 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Chris@0 4
Chris@0 5 <head>
Chris@0 6 <title>Classical Music Navigator - RDF</title>
Chris@0 7
Chris@0 8 <style type="text/css" media="all">
Chris@0 9 @import url(../style.css);
Chris@0 10 </style>
Chris@0 11 <link rel="meta" type="application/rdf+xml" title="FOAF" href="http://kurtisrandom.com/foaf.rdf" />
Chris@0 12 </head>
Chris@0 13
Chris@0 14 <body>
Chris@0 15
Chris@0 16
Chris@0 17 <h1 style="font-size: 250%;">Classical Music Navigator</h1>
Chris@0 18
Chris@0 19 <div id="tagline">Structured data about classical composers and their network of influence</div>
Chris@0 20
Chris@0 21 <p>
Chris@0 22 <!--<a href="http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData"><img border="0" alt="Linking Open Data" src="lod.jpg" /></a>-->
Chris@0 23
Chris@0 24
Chris@0 25 <a href="http://www.elec.qmul.ac.uk/digitalmusic/"><img border="0" alt="Centre for Digital Music, Queen Mary, University of London" src="../c4dm.png"/></a>
Chris@0 26 </p>
Chris@0 27
Chris@0 28 <h2><a name="disc" id="disc"></a>0. Disclaimer</h2>
Chris@0 29 <p>
Chris@0 30 This is a non-commercial site. The information contained in this site has been collected from several
Chris@0 31 sources and its accuracy cannot be guaranteed.
Chris@0 32 No copyright has been intentionally
Chris@0 33 violated. If you feel a copyright has been violated please contact <a href="#contact">me</a> immediately and the material will be removed
Chris@0 34 </p>
Chris@0 35
Chris@0 36 <h2><a name="intro" id="intro"></a>1. Introduction</h2>
Chris@0 37 <p>
Chris@0 38 This is a data set of classical composers and their network of influence as originally described by
Chris@0 39 Charles H. Smith et al. in the original Classical Music Navigator site <a href="#ref-1">[1]</a>. A small
Chris@0 40 ad-hoc Classical Music Navigator ontology <a href="#ref-cmno">[2]</a> is used to describe influence concepts
Chris@0 41 and the Music Ontology <a href="#ref-mo">[3]</a> is used to describe composers.<p>
Chris@0 42
Chris@0 43
Chris@0 44 <h2> <label="data" id="data"></a>2. Data</h2>
Chris@0 45 <p>
Chris@0 46 This modest data set contains around 10k triples.<p>
Chris@0 47
Chris@0 48 In this data set you find statements like the following:<p>
Chris@0 49
Chris@0 50 <pre>
Chris@0 51 @prefix : &lt;http://dbtune.org/cmn/resource/&gt; .
Chris@0 52 @prefix cmno: &lt;http://purl.org/ontology/classicalmusicnav#&gt; .
Chris@0 53 @prefix foaf: &lt;http://xmlns.com/foaf/0.1/&gt; .
Chris@0 54 @prefix mo: &lt;http://purl.org/ontology/mo/&gt; .
Chris@0 55 @prefix owl: &lt;http://www.w3.org/2002/07/owl#&gt; .
Chris@0 56 @prefix rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; .
Chris@0 57
Chris@0 58 :CAGE a mo:Composer;
Chris@0 59 cmno:hasInfluenced :BOUL2,
Chris@0 60 :CRUM,
Chris@0 61 :FELD,
Chris@0 62 :GLAS,
Chris@0 63 :HARR2,
Chris@0 64 :KAGE,
Chris@0 65 :LUTO,
Chris@0 66 :MADE,
Chris@0 67 :OLIV,
Chris@0 68 :REIC1,
Chris@0 69 :RILE,
Chris@0 70 :STOC,
Chris@0 71 :TAKE;
Chris@0 72 cmno:influencedBy :BOUL2,
Chris@0 73 :COWE,
Chris@0 74 :FELD,
Chris@0 75 :HARR2,
Chris@0 76 :IVES,
Chris@0 77 :SATI,
Chris@0 78 :SCHO,
Chris@0 79 :VARE,
Chris@0 80 :WEBE2;
Chris@0 81 mo:musicbrainz &lt;http://musicbrainz.org/artist/76325a9d-6c25-4649-96b1-84e9b99d6b4b&gt;;
Chris@0 82 = &lt;http://dbpedia.org/resource/John_Cage&gt;;
Chris@0 83 foaf:birthday "1912-92";
Chris@0 84 foaf:name "John Cage" .
Chris@0 85 </pre>
Chris@0 86
Chris@0 87 Note we have provided links to <a href="http://musicbrainz.org/">Musicbrainz</a> identifiers and <a href="http://dbpedia.org/About">DBpedia</a> where possible.<p>
Chris@0 88
Chris@0 89 <!--Browsing the dataset directly is currently not supported <p>-->
Chris@0 90
Chris@0 91 A <a href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL</a> endpoint with a slick <a
Chris@0 92 href="http://virtuoso.openlinksw.com/wiki/main/Main/VOSSparqlProtocol">Virtuoso</a>
Chris@0 93 web interface is available at <a
Chris@0 94 href="http://dbtune.org/cmn/sparql">http://dbtune.org/cmn/sparql</a> <p>
Chris@0 95
Chris@0 96 An example query to find all composers who influenced John Cage:
Chris@0 97
Chris@0 98 <pre>
Chris@0 99 prefix cmn: &lt;http://dbtune.org/cmn/resource/&gt;
Chris@0 100 prefix cmno: &lt;http://purl.org/ontology/classicalmusicnav#&gt;
Chris@0 101
Chris@0 102
Chris@0 103 SELECT ?o WHERE {cmn:CAGE cmno:influencedBy ?o}
Chris@0 104 </pre>
Chris@0 105
Chris@0 106
Chris@0 107 <h2><a name="references" id="references">A. References</h2>
Chris@0 108
Chris@0 109 <dl>
Chris@0 110 <dt class="label" id="ref-1">Original Classical Music Navigator</dt>
Chris@0 111 <dd>
Chris@0 112 <em><a href="http://www.wku.edu/~smithch/music/index2.htm">Classical Music Navigator</a></em> is the original website constructed by Charles H. Smith to map
Chris@0 113 the network of influence between classical music composers and is the basis of the Classical Music Navigator Ontology and data set.
Chris@0 114 </dd>
Chris@0 115
Chris@0 116 <dt class="label" id="ref-cmno">Classical Music Navigator Ontology</dt>
Chris@0 117 <dd>
Chris@0 118 <em><a href="http://purl.org/ontology/classicalmusicnav">CMNO</a></em> is an ontology for describing the influence network between classical
Chris@0 119 composers...
Chris@0 120 </dd>
Chris@0 121
Chris@0 122 <dt class="label" id="ref-mo">Music Ontology</dt>
Chris@0 123 <dd>
Chris@0 124 <em><a href="http://musicontology.com">Music Ontology</a></em> is an attempt to provide a vocabulary for linking a wide range music-related information, and
Chris@0 125 to provide a democratic mechanism for doing so. Anybody can publish Music Ontology data and link it with existing data, in order to help create a music-related web of
Chris@0 126 data.
Chris@0 127 </dd>
Chris@0 128 <!--<dt class="label" id="ref-1">Original Classical Music Navigator</dt>
Chris@0 129 <dd>
Chris@0 130 <em><a href="http://www.wku.edu/~smithch/music/index2.htm">Classical Music Navigator</a></em> is the original website constructed by Charles H. Smith to map
Chris@0 131 the network of influence between classical music composers and is the basis of the Classical Music Navigator Ontology and data set.
Chris@0 132 </dd>
Chris@0 133 </dl>-->
Chris@0 134
Chris@0 135 </body>
Chris@0 136
Chris@0 137 </html>
Chris@0 138