comparison examples/browser/ontology/audiodb.owl @ 652:1a251dd217c6

Ontology fine-tuned and included in exporter.
author mas01mj
date Thu, 15 Oct 2009 14:24:36 +0000
parents ec6860ff36ff
children
comparison
equal deleted inserted replaced
651:5b2c0d9bc63d 652:1a251dd217c6
9 <!ENTITY dc "http://purl.org/dc/elements/1.1/"> 9 <!ENTITY dc "http://purl.org/dc/elements/1.1/">
10 <!ENTITY dct "http://purl.org/dc/terms/"> 10 <!ENTITY dct "http://purl.org/dc/terms/">
11 <!ENTITY off "http://purl.org/ontology/off/"> 11 <!ENTITY off "http://purl.org/ontology/off/">
12 <!ENTITY foaf "http://xmlns.com/foaf/0.1/"> 12 <!ENTITY foaf "http://xmlns.com/foaf/0.1/">
13 <!ENTITY doap "http://usefulinc.com/ns/doap#"> 13 <!ENTITY doap "http://usefulinc.com/ns/doap#">
14 <!ENTITY mo "http://purl.org/ontology/mo/">
14 ]> 15 ]>
15 16
16 <rdf:RDF xmlns:rdf="&rdf;" 17 <rdf:RDF xmlns:rdf="&rdf;"
17 xmlns:rdfs="&rdfs;" 18 xmlns:rdfs="&rdfs;"
18 xmlns:owl="&owl;" 19 xmlns:owl="&owl;"
19 xmlns:xsd="&xsd;" 20 xmlns:xsd="&xsd;"
20 xml:base="&base;" 21 xml:base="&base;"
21 xmlns:dc="&dc;" 22 xmlns:dc="&dc;"
22 xmlns:dct="&dct;" 23 xmlns:dct="&dct;"
23 xmlns:foaf="&foaf;" 24 xmlns:foaf="&foaf;"
24 xmlns:off="&off;"> 25 xmlns:off="&off;"
26 xmlns:mo="&mo;">
25 27
26 <owl:Ontology rdf:about="&base;"> 28 <owl:Ontology rdf:about="&base;">
27 <rdfs:label>AudioDB Ontology</rdfs:label> 29 <rdfs:label>AudioDB Ontology</rdfs:label>
28 <dc:title xml:lang="en">AudioDB Ontology</dc:title> 30 <dc:title xml:lang="en">AudioDB Ontology</dc:title>
29 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description> 31 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description>
35 <owl:Class rdf:ID="Database"> 37 <owl:Class rdf:ID="Database">
36 <rdfs:label>AudioDB</rdfs:label> 38 <rdfs:label>AudioDB</rdfs:label>
37 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment> 39 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment>
38 <rdfs:subClassOf rdf:resource="&foaf;Document" /> 40 <rdfs:subClassOf rdf:resource="&foaf;Document" />
39 </owl:Class> 41 </owl:Class>
40 42
41 <owl:ObjectProperty rdf:ID="has-feature"> 43 <owl:ObjectProperty rdf:ID="has-signal">
42 <rdfs:label>Has Feature</rdfs:label> 44 <rdf:label>Has Feature</rdfs:label>
45 <rdfs:domain rdf:resource="#Database" />
46 <rdfs:range rdf:resource="&mo;Signal" />
47 </owl:ObjectProperty>
48
49 <owl:ObjectProperty rdf:ID="feature">
50 <rdfs:label>Feature</rdfs:label>
43 <rdfs:domain rdf:resource="#Database"/> 51 <rdfs:domain rdf:resource="#Database"/>
44 <rdfs:range rdf:resource="#Feature" /> 52 <rdfs:range rdf:resource="#Feature" />
45 </owl:ObjectProperty> 53 </owl:ObjectProperty>
46 54
47 <owl:Class rdf:ID="Feature"> 55 <owl:Class rdf:ID="Feature">
113 <rdfs:label>octaveres</rdfs:label> 121 <rdfs:label>octaveres</rdfs:label>
114 <rdfs:domain rdf:resource="#Feature"/> 122 <rdfs:domain rdf:resource="#Feature"/>
115 <rdfs:range rdf:resource="&xsd;double" /> 123 <rdfs:range rdf:resource="&xsd;double" />
116 </owl:ObjectProperty> 124 </owl:ObjectProperty>
117 125
118 <owl:ObjectProperty rdf:ID="segmentation-type"> 126 <owl:ObjectProperty rdf:ID="segmentation">
119 <rdfs:label>segmentation type</rdfs:label> 127 <rdfs:label>segmentation</rdfs:label>
120 <rdfs:domain rdf:resource="#Feature"/> 128 <rdfs:domain rdf:resource="#Feature"/>
121 <rdfs:range rdf:resource="#Segmentation" /> 129 <rdfs:range rdf:resource="#Segmentation" />
122 </owl:ObjectProperty> 130 </owl:ObjectProperty>
123 131
124 <owl:Class rdf:ID="Segmentation"> 132 <owl:Class rdf:ID="Segmentation">
148 <owl:Class rdf:ID="HammingWindow"> 156 <owl:Class rdf:ID="HammingWindow">
149 <rdfs:label>Hamming Window</rdfs:label> 157 <rdfs:label>Hamming Window</rdfs:label>
150 <rdfs:subClassOf rdf:resource="#Window" /> 158 <rdfs:subClassOf rdf:resource="#Window" />
151 </owl:Class> 159 </owl:Class>
152 160
153 <owl:Class rdf:ID="ChromogramFeature"> 161 <owl:Class rdf:ID="ChromagramFeature">
154 <rdfs:label>Chromogram Feature</rdfs:label> 162 <rdfs:label>Chromogram Feature</rdfs:label>
155 <rdfs:subClassOf rdf:resource="#Feature" /> 163 <rdfs:subClassOf rdf:resource="#Feature" />
156 </owl:Class> 164 </owl:Class>
157 165
158 <owl:Class rdf:ID="MFCCFeature"> 166 <owl:Class rdf:ID="MFCCFeature">