aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/time/time.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 18:59:32 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 18:14:00 -0400
commit1eccbe4355685b322194df72b5de2382d5290b3b (patch)
tree0677b5c2f577a5024c351a164527f4bdd91a639b /lv2/time/time.ttl
parentd4a970f6962dda28133290194832b726b566ddab (diff)
downloadlv2-1eccbe4355685b322194df72b5de2382d5290b3b.tar.xz
Rearrange source tree to be directly usable by dependants
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.
Diffstat (limited to 'lv2/time/time.ttl')
-rw-r--r--lv2/time/time.ttl122
1 files changed, 0 insertions, 122 deletions
diff --git a/lv2/time/time.ttl b/lv2/time/time.ttl
deleted file mode 100644
index a4085c6..0000000
--- a/lv2/time/time.ttl
+++ /dev/null
@@ -1,122 +0,0 @@
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix time: <http://lv2plug.in/ns/ext/time#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-
-<http://lv2plug.in/ns/ext/time>
- a owl:Ontology ;
- rdfs:label "LV2 Time" ;
- rdfs:comment "A vocabulary for describing musical time." ;
- rdfs:seeAlso <time.h> ,
- <time.meta.ttl> .
-
-time:Time
- a rdfs:Class ,
- owl:Class ;
- rdfs:subClassOf time:Position ;
- rdfs:label "Time" ;
- rdfs:comment "A point in time in some unit/dimension." .
-
-time:Position
- a rdfs:Class ,
- owl:Class ;
- rdfs:label "Position" ;
- rdfs:comment "A point in time and/or the speed at which time is passing." .
-
-time:Rate
- a rdfs:Class ,
- owl:Class ;
- rdfs:subClassOf time:Position ;
- rdfs:label "Rate" ;
- rdfs:comment "The rate of passage of time." .
-
-time:position
- a rdf:Property ,
- owl:ObjectProperty ,
- owl:FunctionalProperty ;
- rdfs:range time:Position ;
- rdfs:label "position" ;
- rdfs:comment "A musical position." .
-
-time:barBeat
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Time ;
- rdfs:range xsd:float ;
- rdfs:label "beat within bar" ;
- rdfs:comment "The beat number within the bar, from 0 to time:beatsPerBar." .
-
-time:bar
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Time ;
- rdfs:range xsd:long ;
- rdfs:label "bar" ;
- rdfs:comment "A musical bar or measure." .
-
-time:beat
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Time ;
- rdfs:range xsd:double ;
- rdfs:label "beat" ;
- rdfs:comment "The global running beat number." .
-
-time:beatUnit
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Rate ;
- rdfs:range xsd:nonNegativeInteger ;
- rdfs:label "beat unit" ;
- rdfs:comment "The note value that counts as one beat." .
-
-time:beatsPerBar
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Rate ;
- rdfs:range xsd:float ;
- rdfs:label "beats per bar" ;
- rdfs:comment "The number of beats in one bar." .
-
-time:beatsPerMinute
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Rate ;
- rdfs:range xsd:float ;
- rdfs:label "beats per minute" ;
- rdfs:comment "Tempo in beats per minute." .
-
-time:frame
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Time ;
- rdfs:range xsd:long ;
- rdfs:label "frame" ;
- rdfs:comment "A time stamp in audio frames." .
-
-time:framesPerSecond
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Rate ;
- rdfs:range xsd:float ;
- rdfs:label "frames per second" ;
- rdfs:comment "Frame rate in frames per second." .
-
-time:speed
- a rdf:Property ,
- owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain time:Rate ;
- rdfs:range xsd:float ;
- rdfs:label "speed" ;
- rdfs:comment "The rate of the progress of time as a fraction of normal speed." .
-