diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/browser/ontology/audiodb.owl	Thu Oct 08 11:19:11 2009 +0000
@@ -0,0 +1,71 @@
+<?xml version="1.0"?>
+
+<!DOCTYPE owl [
+  <!ENTITY xsd          "http://www.w3.org/2001/XMLSchema#">
+  <!ENTITY rdf          "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+  <!ENTITY rdfs         "http://www.w3.org/2000/01/rdf-schema#">
+  <!ENTITY owl          "http://www.w3.org/2002/07/owl#">
+  <!ENTITY base         "http://omras2.gold.ac.uk/ontology/audiodb#">
+  <!ENTITY dc           "http://purl.org/dc/elements/1.1/">
+  <!ENTITY dct          "http://purl.org/dc/terms/">
+]>
+
+
+
+<rdf:RDF xmlns:rdf="&rdf;"
+         xmlns:rdfs="&rdfs;"
+         xmlns:owl="&owl;"
+         xmlns:xsd="&xsd;"
+         xmlns:dat="&dat;"
+         xml:base="&base;"
+         xmlns:dc="&dc;"
+         xmlns:dct="&dct;">
+
+
+  <owl:Ontology rdf:about="&base;">
+    <rdfs:label>AudioDB Ontology</rdfs:label>
+    <dc:title xml:lang="en">AudioDB Ontology</dc:title>
+    <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description>
+    <dc:creator>Michael O. Jewell (mailto:mas01mj@gold.ac.uk)</dc:creator>
+    <dct:created>2009-10-07</dct:created>
+    <owl:versionInfo>0.1</owl:versionInfo>
+  </owl:Ontology>
+
+  <owl:Class rdf:ID="Database">
+    <rdfs:label>AudioDB</rdfs:label>
+    <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="foaf:Document" />
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Feature">
+    <rdfs:label>Feature</rdfs:label>
+    <rdfs:comment>Information about an audio feature</rdfs:comment>
+  </owl:Class>
+
+  <owl:ObjectProperty rdf:ID="window-type">
+    <rdfs:label>Window Type</rdfs:label>
+    <rdfs:comment>This property indicates that there is some no link between the named Expressions</rdfs:comment>
+    <owl:inverseOf rdf:resource="#is-not-linked-to"/>
+    <rdfs:domain rdf:resource="#Expression"/>
+    <rdfs:range rdf:resource="#Expression"/>
+  </owl:ObjectProperty>
+
+  <owl:Class rdf:ID="ChromogramFeature">
+    <rdfs:label>Chromogram Feature</rdfs:label>
+    <rdfs:comment>Information about an audio feature</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="audiodb:Feature" />
+  </owl:Class>
+  
+  <owl:Class rdf:ID="MFCCFeature">
+    <rdfs:label>MFCC Feature</rdfs:label>
+    <rdfs:comment>Information about an audio feature</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="audiodb:Feature" />
+  </owl:Class>
+  
+  <owl:Class rdf:ID="CQTFeature">
+    <rdfs:label>CQT Feature</rdfs:label>
+    <rdfs:comment>Information about an audio feature</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="audiodb:Feature" />
+  </owl:Class>
+
+</rdf:RDF>