-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.ttl
477 lines (353 loc) · 22.5 KB
/
ontology.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
@prefix : <http://purl.org/net/sett#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://purl.org/net/sett#> .
<http://purl.org/net/sett#> rdf:type owl:Ontology ;
owl:versionIRI <http://purl.org/net/sett/1.0> ;
<http://purl.org/dc/elements/1.1/abstract> "The negative impact of human activities on our planet has increased the interest of stakeholders — from policymakers to citizens — in monitoring and understanding local environmental changes. However, despite being openly available, remotely-sensed Earth observation Time Series (EO-TS) are complex and difficult for non-experts to interpret. We introduce the EO-evo (Earth Observation Evolution) ontology to to describe the Environmental semantic trajectories of EO data for both expert and non-expert users."@en ;
<http://purl.org/dc/elements/1.1/description> "EO-evo is a multi-layer ontology designed to describe the semantic trajectories of Earth Observation (EO) data within the Environmental domain. The ontology embeds three types of trajectories: raw, structured, and semantic. These trajectories provide a comprehensive framework for capturing, organizing, and analyzing the spatio-temporal evolution of Earth’s dynamics."@en ;
<http://purl.org/dc/elements/1.1/title> "The EO-evo ontology"@en ;
<http://purl.org/dc/terms/created> "July 12th, 2024"@en ;
<http://purl.org/dc/terms/creator> "(1) Daniela Fernanda Milon-Flores"@en ,
"(2) Camille Bernard"@en ,
"(3) Jérôme Gensel"@en ,
"(4) Gregory Giuliani"@en ;
<http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/4.0/> ;
<http://schema.org/citation> "Cite this vocabulary as: Milon-Flores, D. ; Bernard, C. ; Gensel, J. and Giuliani, G. The EO-evo ontology 1.0"@en ;
owl:versionInfo "1.0"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/abstract
<http://purl.org/dc/elements/1.1/abstract> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://schema.org/citation
<http://schema.org/citation> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.org/net/sett#EpisodeIsAnnotatedFrom
:EpisodeIsAnnotatedFrom rdf:type owl:ObjectProperty ;
rdfs:domain :Episode ;
rdfs:range :Trend ;
rdfs:comment "An Episode is annotated from a Trend."@en ;
rdfs:label "Episode is Annotated from"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "EpisodeIsAnnotatedFrom"@en .
### http://purl.org/net/sett#EventIsAnnotatedFrom
:EventIsAnnotatedFrom rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Break ;
rdfs:comment "An Event is Annotated From a Break."@en ;
rdfs:label "Event is Annotated From"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "EventIsAnnotatedFrom"@en .
### http://purl.org/net/sett#correspondsTo
:correspondsTo rdf:type owl:ObjectProperty ;
rdfs:domain :Break ;
rdfs:range :Observation ;
rdfs:comment " "@en ;
rdfs:label "corresponds To"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "correspondsTo"@en .
### http://purl.org/net/sett#hasAnnotationEpisodeAbstract
:hasAnnotationEpisodeAbstract rdf:type owl:ObjectProperty ;
rdfs:domain :Episode ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "The Episode is annotated with semantic descriptions. This annotations corresponds to the Abstract layer."@en ;
rdfs:label "has Annotation Abstract"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasAnnotationAbstract"@en .
### http://purl.org/net/sett#hasAnnotationEpisodeDomain
:hasAnnotationEpisodeDomain rdf:type owl:ObjectProperty ;
rdfs:domain :Episode ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "The Episode is annotated with semantic descriptions. This annotations corresponds to the Environmental domain layer."@en ;
rdfs:label "has Annotation Episode Domain"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasAnnotationEpisodeDomain"@en .
### http://purl.org/net/sett#hasAnnotationEvent
:hasAnnotationEvent rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "The Event is annotated with semantic descriptions."@en ;
rdfs:label "has Annotation Event"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasAnnotationEvent"@en .
### http://purl.org/net/sett#hasBreak
:hasBreak rdf:type owl:ObjectProperty ;
rdfs:domain :StructuredTrajectory ;
rdfs:range :Break ;
rdfs:comment "A Structured trajectory has zero or more Breaks."@en ;
rdfs:label "has Break"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasBreak"@en .
### http://purl.org/net/sett#hasDate
:hasDate rdf:type owl:ObjectProperty ;
rdfs:domain :FittedMeasure ;
rdfs:range :DateTimeDescription ;
rdfs:comment "Denotes the date of a fitted measurement."@en ;
rdfs:label "has Date"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasDate"@en .
### http://purl.org/net/sett#hasDateBreak
:hasDateBreak rdf:type owl:ObjectProperty ;
rdfs:domain :Break ;
rdfs:range :DateTimeDescription ;
rdfs:comment "Denotes the approximate date of the breakpoint."@en ;
rdfs:label "has Date"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasDate"@en .
### http://purl.org/net/sett#hasDomain
:hasDomain rdf:type owl:ObjectProperty ;
rdfs:domain :PointOfView ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "Denotes the Environmental domain."@en ;
rdfs:label "has Domain"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasDomain"@en .
### http://purl.org/net/sett#hasEpisode
:hasEpisode rdf:type owl:ObjectProperty ;
rdfs:domain :SemanticTrajectory ;
rdfs:range :Episode ;
rdfs:comment "A Semantic trajectory has one or more Episodes."@en ;
rdfs:label "has Episode"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasEpisode"@en .
### http://purl.org/net/sett#hasEvent
:hasEvent rdf:type owl:ObjectProperty ;
rdfs:domain :SemanticTrajectory ;
rdfs:range :Event ;
rdfs:comment "A Semantic trajectory has zero or more Events."@en ;
rdfs:label "has Event"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasEvent"@en .
### http://purl.org/net/sett#hasFittedBegin
:hasFittedBegin rdf:type owl:ObjectProperty ;
rdfs:domain :Trend ;
rdfs:range :FittedBegin ;
rdfs:comment "The trend line starts with its first fitted value."@en ;
rdfs:label "has Fitted Begin"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasFittedBegin"@en .
### http://purl.org/net/sett#hasFittedEnd
:hasFittedEnd rdf:type owl:ObjectProperty ;
rdfs:domain :Trend ;
rdfs:range :FittedEnd ;
rdfs:comment "The trend line finishes with its last fitted value."@en ;
rdfs:label "has Fitted End"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasFittedEnd"@en .
### http://purl.org/net/sett#hasMVT
:hasMVT rdf:type owl:ObjectProperty ;
rdfs:domain :TerritorialUnit ;
rdfs:range :MultipleViewpointTrajectory ;
rdfs:comment "A Territorial Unit (TU) has Multiple Viewpoint Trajectory (MVT)."@en ;
rdfs:label "has Multiple Viewpoint Trajectory (MVT)"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasMVT"@en .
### http://purl.org/net/sett#hasObservation
:hasObservation rdf:type owl:ObjectProperty ;
rdfs:domain :RawTrajectory ;
rdfs:range :Observation ;
rdfs:comment "A raw trajectory consists of one or more observations that represent its movement."@en ;
rdfs:label "has Observation"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasObservation"@en .
### http://purl.org/net/sett#hasPointOfView
:hasPointOfView rdf:type owl:ObjectProperty ;
rdfs:domain :SemanticTrajectory ;
rdfs:range :PointOfView ;
rdfs:comment "A Semantic trajectory has a Point Of View."@en ;
rdfs:label "has Point Of View"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasPointOfView"@en .
### http://purl.org/net/sett#hasSemanticTrajectory
:hasSemanticTrajectory rdf:type owl:ObjectProperty ;
rdfs:domain :MultipleViewpointTrajectory ;
rdfs:range :SemanticTrajectory ;
rdfs:comment "A Multiple Viewpoint Trajectory (MVP) is composed of one Semantic trajectory."@en ;
rdfs:label "has Semantic Trajectory"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasSemanticTrajectory"@en .
### http://purl.org/net/sett#hasTrend
:hasTrend rdf:type owl:ObjectProperty ;
rdfs:domain :StructuredTrajectory ;
rdfs:range :Trend ;
rdfs:comment "A Structured trajectory has one or more Trends."@en ;
rdfs:label "has Trend"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasTrend"@en .
### http://purl.org/net/sett#isCalculatedFrom
:isCalculatedFrom rdf:type owl:ObjectProperty ;
rdfs:domain :Trend ;
rdfs:range :Slice ;
rdfs:comment "A Trend is calculated from a Slice."@en ;
rdfs:label "is Calculated From"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "isCalculatedFrom"@en .
### http://purl.org/net/sett#isComposedOfObservation
:isComposedOfObservation rdf:type owl:ObjectProperty ;
rdfs:domain :Slice ;
rdfs:range :Observation ;
rdfs:comment "Slices are composed of Observations."@en ;
rdfs:label "is Composed Of Observation"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "isComposedOfObservation"@en .
### http://purl.org/net/sett#monitorsIndice
:monitorsIndice rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "An Environmental domain monitors an Indice."@en ;
rdfs:label "monitorsI ndice"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "monitorsIndice"@en .
#################################################################
# Data properties
#################################################################
### http://purl.org/net/sett#algorithmAppliedBreak
:algorithmAppliedBreak rdf:type owl:DatatypeProperty ;
rdfs:domain :StructuredTrajectory ;
rdfs:range rdfs:Literal ;
rdfs:comment "Refers to the applied algorithm used for the Break detection."@en ;
rdfs:label "algorithm Applied for the Break detection"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "algorithmAppliedBreak"@en .
### http://purl.org/net/sett#algorithmAppliedTrend
:algorithmAppliedTrend rdf:type owl:DatatypeProperty ;
rdfs:domain :StructuredTrajectory ;
rdfs:range rdfs:Literal ;
rdfs:comment "Refers to the applied algorithm used for the Trend detection."@en ;
rdfs:label "algorithm Applied for the Trend detection"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "algorithmAppliedTrend"@en .
### http://purl.org/net/sett#hasEpisodeOrder
:hasEpisodeOrder rdf:type owl:DatatypeProperty ;
rdfs:domain :Episode ;
rdfs:range xsd:integer ;
rdfs:comment "Denotes the Episode Order."@en ;
rdfs:label "has Episode Order"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasEpisodeOrder"@en .
### http://purl.org/net/sett#hasEventOrder
:hasEventOrder rdf:type owl:DatatypeProperty ;
rdfs:domain :Event ;
rdfs:range xsd:integer ;
rdfs:comment "Denotes the Episode Order."@en ;
rdfs:label "has Event Order"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasEventOrder"@en .
### http://purl.org/net/sett#hasFittedValue
:hasFittedValue rdf:type owl:DatatypeProperty ;
rdfs:domain :FittedMeasure ;
rdfs:range xsd:float ;
rdfs:comment "The fitted measure has a value."@en ;
rdfs:label "has Fitted Value"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasFittedValue"@en .
### http://purl.org/net/sett#hasInterceptValue
:hasInterceptValue rdf:type owl:DatatypeProperty ;
rdfs:domain :Trend ;
rdfs:range xsd:float ;
rdfs:comment "Refers to the intercept value of the Trend line."@en ;
rdfs:label "has Intercept Value"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasInterceptValue"@en .
### http://purl.org/net/sett#hasMagnitudeValue
:hasMagnitudeValue rdf:type owl:DatatypeProperty ;
rdfs:domain :Break ;
rdfs:range xsd:float ;
rdfs:comment "The breakpoint is associated with a magnitude value, which is the distance between the breakpoint and the consecutive point."@en ;
rdfs:label "has Magnitude Value"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasMagnitudeValue"@en .
### http://purl.org/net/sett#hasPValue
:hasPValue rdf:type owl:DatatypeProperty ;
rdfs:domain :Trend ;
rdfs:range xsd:float ;
rdfs:comment "Refers to the p-value obtained from the regression analysis."@en ;
rdfs:label "has p-value"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasPValue"@en .
### http://purl.org/net/sett#hasSlopeValue
:hasSlopeValue rdf:type owl:DatatypeProperty ;
rdfs:domain :Trend ;
rdfs:range xsd:float ;
rdfs:comment "Refers to the slope value of the Trend line."@en ;
rdfs:label "has Slope Value"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "hasSlopeValue"@en .
#################################################################
# Classes
#################################################################
### http://purl.org/linked-data/cube#Observation
<http://purl.org/linked-data/cube#Observation> rdf:type owl:Class .
### http://purl.org/linked-data/cube#Slice
<http://purl.org/linked-data/cube#Slice> rdf:type owl:Class .
### http://purl.org/net/sett#Break
:Break rdf:type owl:Class ;
rdfs:comment "A break (or breakpoint) belongs to a structured trajectory and denotes a significative change in the time series. It is calculated using Segmentation algorithms."@en ;
rdfs:label "Break"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Break"@en .
### http://purl.org/net/sett#DateTimeDescription
:DateTimeDescription rdf:type owl:Class .
### http://purl.org/net/sett#Episode
:Episode rdf:type owl:Class ;
rdfs:comment "An episode belongs to a semantic trajectory and is the result of annotating a trend component."@en ;
rdfs:label "Episode"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Episode"@en .
### http://purl.org/net/sett#Event
:Event rdf:type owl:Class ;
rdfs:comment "An event belongs to a semantic trajectory and is the result of annotating a break component."@en ;
rdfs:label "Event"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Event"@en .
### http://purl.org/net/sett#FittedBegin
:FittedBegin rdf:type owl:Class ;
rdfs:subClassOf :FittedMeasure ;
rdfs:comment "Fitted begin corresponds to the first fitted value, marking the start of the Trend."@en ;
rdfs:label "Fitted Begin"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "FittedBegin"@en .
### http://purl.org/net/sett#FittedEnd
:FittedEnd rdf:type owl:Class ;
rdfs:subClassOf :FittedMeasure ;
rdfs:comment "Fitted end represents the final predicted value in the trend, potentially coinciding with a breakpoint if it does not mark the end of the entire Trend sequence."@en ;
rdfs:label "Fitted End"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "FittedEnd"@en .
### http://purl.org/net/sett#FittedMeasure
:FittedMeasure rdf:type owl:Class ;
rdfs:comment "Fitted measures in linear regression are the predicted values calculated by the regression model."@en ;
rdfs:label "Fitted Measure"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Fitted measures in linear regression are the predicted values calculated by the regression model."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "FittedMeasure"@en .
### http://purl.org/net/sett#MultipleViewpointTrajectory
:MultipleViewpointTrajectory rdf:type owl:Class ;
rdfs:comment "When a trajectory is associated with many viewpoints, these trajectories are known as Multiple Viewpoint Trajectories (MVT)."@en ;
rdfs:label "Multiple Viewpoint Trajectory"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "MultipleViewpointTrajectory"@en .
### http://purl.org/net/sett#Observation
:Observation rdf:type owl:Class ;
rdfs:subClassOf <http://purl.org/linked-data/cube#Observation> ;
rdfs:comment "An observation belongs to a raw trajectory and represents a measurement in the original time series."@en ;
rdfs:label "Observation"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Observation"@en .
### http://purl.org/net/sett#PointOfView
:PointOfView rdf:type owl:Class ;
rdfs:comment "A semantic trajectory monitors one point of wiew, such as environmental domains."@en ;
rdfs:label "Point Of View"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "PointOfView"@en .
### http://purl.org/net/sett#RawTrajectory
:RawTrajectory rdf:type owl:Class ;
rdfs:comment "Raw trajectories are sequences of observations performed by agents, such as territorial units."@en ;
rdfs:label "Raw Trajectory"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Raw Trajectory"@en .
### http://purl.org/net/sett#SemanticTrajectory
:SemanticTrajectory rdf:type owl:Class ;
rdfs:comment "Semantic trajectories are the result of annotating structured trajectories as sequences of Episodes and Events."@en ;
rdfs:label "Semantic Trajectory"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Semantic Trajectory"@en .
### http://purl.org/net/sett#Slice
:Slice rdf:type owl:Class ;
rdfs:subClassOf <http://purl.org/linked-data/cube#Slice> ;
rdfs:comment "A slice belongs to a raw trajectory and refers to a group of observations from the original time series used to calculate a given trend."@en ;
rdfs:label "Slice"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Slice"@en .
### http://purl.org/net/sett#StructuredTrajectory
:StructuredTrajectory rdf:type owl:Class ;
rdfs:comment "Structured trajectories are the result of segment Raw trajectories into sequences of Trends and Breaks."@en ;
rdfs:label "Structured Trajectory"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Structured Trajectory"@en .
### http://purl.org/net/sett#TerritorialUnit
:TerritorialUnit rdf:type owl:Class .
### http://purl.org/net/sett#Trend
:Trend rdf:type owl:Class ;
rdfs:comment "A trend belongs to a structured trajectory and is calculated using Segmentation algorithms."@en ;
rdfs:label "Trend"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Trend"@en .
### http://www.w3.org/2004/02/skos/core#Concept
<http://www.w3.org/2004/02/skos/core#Concept> rdf:type owl:Class .
### Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/