annotate fuxi/af-base-ontology.n3 @ 18:d5012016bf64 tip

added rdfpy and rdfonto directories
author nothing@tehis.net
date Tue, 23 Apr 2013 11:49:20 +0100
parents 2b5c292ad12f
children
rev   line source
nothing@15 1 @prefix af: <http://sovarr.c4dm.eecs.qmul.ac.uk/features/af-ontology#> .
nothing@15 2 @prefix owl: <http://www.w3.org/2002/07/owl#> .
nothing@15 3 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
nothing@15 4
nothing@15 5 af:CepstralDomain a owl:Class ;
nothing@15 6 rdfs:subClassOf af:Domain .
nothing@15 7
nothing@17 8 af:CorrelationDomain a owl:Class ;
nothing@17 9 rdfs:subClassOf af:Domain .
nothing@17 10
nothing@15 11 af:EigendomainDomain a owl:Class ;
nothing@15 12 rdfs:subClassOf af:Domain .
nothing@15 13
nothing@15 14 af:FrequencyDomain a owl:Class ;
nothing@15 15 rdfs:subClassOf af:Domain .
nothing@15 16
nothing@15 17 af:GlobalTemporalscale a owl:Class ;
nothing@15 18 rdfs:subClassOf af:Temporalscale .
nothing@15 19
nothing@15 20 af:HighComplexity a owl:Class ;
nothing@15 21 rdfs:subClassOf af:Complexity .
nothing@15 22
nothing@15 23 af:InterframeTemporalscale a owl:Class ;
nothing@15 24 rdfs:subClassOf af:Temporalscale .
nothing@15 25
nothing@15 26 af:IntraframeTemporalscale a owl:Class ;
nothing@15 27 rdfs:subClassOf af:Temporalscale .
nothing@15 28
nothing@15 29 af:LowComplexity a owl:Class ;
nothing@15 30 rdfs:subClassOf af:Complexity .
nothing@15 31
nothing@15 32 af:MediumComplexity a owl:Class ;
nothing@15 33 rdfs:subClassOf af:Complexity .
nothing@15 34
nothing@15 35 af:ModulationFrequencyDomain a owl:Class ;
nothing@15 36 rdfs:subClassOf af:Domain .
nothing@15 37
nothing@15 38 af:MultidimensionalDimensionality a owl:Class ;
nothing@15 39 rdfs:subClassOf af:Dimensionality .
nothing@15 40
nothing@15 41 af:OnedimensionalDimensionality a owl:Class ;
nothing@15 42 rdfs:subClassOf af:Dimensionality .
nothing@15 43
nothing@15 44 af:PerceptualLevel a owl:Class ;
nothing@15 45 rdfs:subClassOf af:Level .
nothing@15 46
nothing@15 47 af:PhaseSpaceDomain a owl:Class ;
nothing@15 48 rdfs:subClassOf af:Domain .
nothing@15 49
nothing@15 50 af:PhysicalLevel a owl:Class ;
nothing@15 51 rdfs:subClassOf af:Level .
nothing@15 52
nothing@15 53 af:PsychoacousticModel a owl:Class ;
nothing@15 54 rdfs:subClassOf af:Model .
nothing@15 55
nothing@17 56 af:TemporalDomain a owl:Class ;
nothing@17 57 rdfs:subClassOf af:Domain .
nothing@17 58
nothing@15 59 af:complexity a owl:ObjectProperty ;
nothing@15 60 rdfs:domain af:AudioFeature ;
nothing@17 61 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 62
nothing@15 63 af:dimensionality a owl:ObjectProperty ;
nothing@15 64 rdfs:domain af:AudioFeature ;
nothing@17 65 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 66
nothing@15 67 af:domain a owl:ObjectProperty ;
nothing@15 68 rdfs:domain af:AudioFeature ;
nothing@17 69 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 70
nothing@15 71 af:level a owl:ObjectProperty ;
nothing@15 72 rdfs:domain af:AudioFeature ;
nothing@17 73 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 74
nothing@15 75 af:model a owl:ObjectProperty ;
nothing@15 76 rdfs:domain af:AudioFeature ;
nothing@17 77 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 78
nothing@15 79 af:temporalscale a owl:ObjectProperty ;
nothing@15 80 rdfs:domain af:AudioFeature ;
nothing@17 81 rdfs:range <http://www.w3.org/2001/XMLSchema#string> .
nothing@15 82
nothing@15 83 af:Model a owl:Class .
nothing@15 84
nothing@15 85 af:Dimensionality a owl:Class .
nothing@15 86
nothing@15 87 af:Level a owl:Class .
nothing@15 88
nothing@15 89 af:Complexity a owl:Class .
nothing@15 90
nothing@15 91 af:Temporalscale a owl:Class .
nothing@15 92
nothing@15 93 af:AudioFeature a owl:Class .
nothing@15 94
nothing@15 95 af:Domain a owl:Class .
nothing@15 96