comparison examples/browser/ontology/audiodb.owl @ 640:901803e1305f

First instance of audioDB browser code.
author mas01mj
date Thu, 08 Oct 2009 11:19:11 +0000
parents
children ec6860ff36ff
comparison
equal deleted inserted replaced
639:2eaea1afd6b3 640:901803e1305f
1 <?xml version="1.0"?>
2
3 <!DOCTYPE owl [
4 <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
5 <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
6 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
7 <!ENTITY owl "http://www.w3.org/2002/07/owl#">
8 <!ENTITY base "http://omras2.gold.ac.uk/ontology/audiodb#">
9 <!ENTITY dc "http://purl.org/dc/elements/1.1/">
10 <!ENTITY dct "http://purl.org/dc/terms/">
11 ]>
12
13
14
15 <rdf:RDF xmlns:rdf="&rdf;"
16 xmlns:rdfs="&rdfs;"
17 xmlns:owl="&owl;"
18 xmlns:xsd="&xsd;"
19 xmlns:dat="&dat;"
20 xml:base="&base;"
21 xmlns:dc="&dc;"
22 xmlns:dct="&dct;">
23
24
25 <owl:Ontology rdf:about="&base;">
26 <rdfs:label>AudioDB Ontology</rdfs:label>
27 <dc:title xml:lang="en">AudioDB Ontology</dc:title>
28 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description>
29 <dc:creator>Michael O. Jewell (mailto:mas01mj@gold.ac.uk)</dc:creator>
30 <dct:created>2009-10-07</dct:created>
31 <owl:versionInfo>0.1</owl:versionInfo>
32 </owl:Ontology>
33
34 <owl:Class rdf:ID="Database">
35 <rdfs:label>AudioDB</rdfs:label>
36 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment>
37 <rdfs:subClassOf rdf:resource="foaf:Document" />
38 </owl:Class>
39
40 <owl:Class rdf:ID="Feature">
41 <rdfs:label>Feature</rdfs:label>
42 <rdfs:comment>Information about an audio feature</rdfs:comment>
43 </owl:Class>
44
45 <owl:ObjectProperty rdf:ID="window-type">
46 <rdfs:label>Window Type</rdfs:label>
47 <rdfs:comment>This property indicates that there is some no link between the named Expressions</rdfs:comment>
48 <owl:inverseOf rdf:resource="#is-not-linked-to"/>
49 <rdfs:domain rdf:resource="#Expression"/>
50 <rdfs:range rdf:resource="#Expression"/>
51 </owl:ObjectProperty>
52
53 <owl:Class rdf:ID="ChromogramFeature">
54 <rdfs:label>Chromogram Feature</rdfs:label>
55 <rdfs:comment>Information about an audio feature</rdfs:comment>
56 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
57 </owl:Class>
58
59 <owl:Class rdf:ID="MFCCFeature">
60 <rdfs:label>MFCC Feature</rdfs:label>
61 <rdfs:comment>Information about an audio feature</rdfs:comment>
62 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
63 </owl:Class>
64
65 <owl:Class rdf:ID="CQTFeature">
66 <rdfs:label>CQT Feature</rdfs:label>
67 <rdfs:comment>Information about an audio feature</rdfs:comment>
68 <rdfs:subClassOf rdf:resource="audiodb:Feature" />
69 </owl:Class>
70
71 </rdf:RDF>