-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathowltime.ttl
110 lines (101 loc) · 2.9 KB
/
owltime.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
PREFIX : <https://periodo.github.io/edtf-ontology/cases/level-2/year-subdivision/season/>
PREFIX edtfo: <https://periodo.github.io/edtf-ontology/edtfo.ttl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX time: <http://www.w3.org/2006/time#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
:when1
a time:Instant ;
rdfs:label "spring 2001 in the northern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:SpringNorthernHemisphere
] ;
.
:when2
a time:Instant ;
rdfs:label "summer 2001 in the northern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:SummerNorthernHemisphere
] ;
.
:when3
a time:Instant ;
rdfs:label "autumn 2001 in the northern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:AutumnNorthernHemisphere
] ;
.
:when4
a time:Instant ;
rdfs:label "winter 2001 in the northern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:WinterNorthernHemisphere
] ;
.
:when5
a time:Instant ;
rdfs:label "spring 2001 in the southern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:SpringSouthernHemisphere
] ;
.
:when6
a time:Instant ;
rdfs:label "summer 2001 in the southern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:SummerSouthernHemisphere
] ;
.
:when7
a time:Instant ;
rdfs:label "autumn 2001 in the southern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:AutumnSouthernHemisphere
] ;
.
:when8
a time:Instant ;
rdfs:label "winter 2001 in the southern hemisphere" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSeason ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:WinterSouthernHemisphere
] ;
.