-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1343 lines (1327 loc) · 61.2 KB
/
index.html
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/primer.css" media="screen"/>
<link rel="stylesheet" href="resources/rec.css" media="screen"/>
<link rel="stylesheet" href="resources/extra.css" media="screen"/>
<link rel="stylesheet" href="resources/owl.css" media="screen"/>
<link rel="stylesheet" href="resources/dark.css" media="(prefers-color-scheme: dark)"/>
<link rel="stylesheet" href="resources/light.css" media="(prefers-color-scheme: light)"/>
<link rel="stylesheet" href="resources/slider.css" media="screen"/>
<meta name="color-scheme" content="dark light">
<script type="module" src="resources/dark-mode-toggle.mjs"></script><div class="darkmode">
<dark-mode-toggle class="slider"></dark-mode-toggle>
</div>
<title>The EO-evo ontology</title>
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"http://purl.org/net/sett#","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://purl.org/net/sett#","name":"The EO-evo ontology", "headline":"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.", "dateReleased":"July 12th, 2024", "version":"1.0", "license":"http://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"(1) Daniela Fernanda Milon-Flores"},{"@type":"Person","name":"(2) Camille Bernard"},{"@type":"Person","name":"(3) Jérôme Gensel"},{"@type":"Person","name":"(4) Gregory Giuliani"}]}</script>
<script src="resources/jquery.js"></script>
<script src="resources/marked.min.js"></script>
<script>
function loadHash() {
jQuery(".markdown").each(function(el){jQuery(this).after(marked.parse(jQuery(this).text())).remove()});
var hash = location.hash;
if($(hash).offset()!=null){
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
}
loadTOC();
}
function loadTOC(){
//process toc dynamically
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
jQuery(".list").each(function(){
if(jQuery(this).is('h2')){
if(j>0){
t+='</ul>';
j=0;
}
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
i++;
}
if(jQuery(this).is('h3')){
if(j==0){
t+='<ul>';
}
j++;
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
}
});
t+='</ul>';
$("#toc").html(t);
}
$(function(){
loadHash();
}); $.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};
</script>
</head>
<body>
<div class="container">
<div class="head">
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
<h1>The EO-evo ontology</h1>
<h2>Release: July 12th, 2024</h2>
<dl>
<dt>This version:</dt>
<dd><a href="http://purl.org/net/sett/1.0">http://purl.org/net/sett/1.0</a></dd>
<dt>Latest version:</dt>
<dd><a href="http://purl.org/net/sett#">http://purl.org/net/sett#</a></dd>
<dt>Revision:</dt>
<dd>1.0</dd>
<dt>Authors:</dt>
<dd>(1) Daniela Fernanda Milon-Flores</dd><dd>(2) Camille Bernard</dd><dd>(3) Jérôme Gensel</dd><dd>(4) Gregory Giuliani</dd>
<dt>Download serialization:</dt><dd><span><a href="ontology.jsonld" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.owl" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License:</dt><dd><a href="http://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-http://creativecommons.org/licenses/by/4.0/-blue.svg" alt="http://creativecommons.org/licenses/by/4.0/" /></a>
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
<!-- <dt>Evaluation:</dt><dd><a href="OOPSevaluation/oopsEval.html#" target="_blank"><img src="https://img.shields.io/badge/Evaluate_with-OOPS! (OntOlogy Pitfall Scanner!)-blue.svg" alt="Evaluate with OOPS!" /></a></dd> --><dt>Cite as:</dt>
<dd>Cite this vocabulary as: Milon-Flores, D. ; Bernard, C. ; Gensel, J. and Giuliani, G. The EO-evo ontology 1.0</dd>
</dl>
<hr/>
</div>
<div class="status">
<div>
<span>Ontology Specification Draft</span>
</div>
</div> <div id="abstract"><h2>Abstract</h2><span class="markdown">
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.</span>
</div>
<div id="toc"></div>
<!--OVERVIEW SECTION-->
<div id="overview"><h2 id="overv" class="list">The EO-evo ontology: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
This ontology has the following classes and properties.</span>
<h4>Classes</h4>
<ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#Break" title="http://purl.org/net/sett#Break">Break</a>
</li>
<li>
<a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a>
</li>
<li>
<a href="#Event" title="http://purl.org/net/sett#Event">Event</a>
</li>
<li>
<a href="#FittedBegin" title="http://purl.org/net/sett#FittedBegin">Fitted Begin</a>
</li>
<li>
<a href="#FittedEnd" title="http://purl.org/net/sett#FittedEnd">Fitted End</a>
</li>
<li>
<a href="#FittedMeasure" title="http://purl.org/net/sett#FittedMeasure">Fitted Measure</a>
</li>
<li>
<a href="#MultipleViewpointTrajectory"
title="http://purl.org/net/sett#MultipleViewpointTrajectory">Multiple Viewpoint Trajectory</a>
</li>
<li>
<a href="#Observation" title="http://purl.org/net/sett#Observation">Observation</a>
</li>
<li>
<a href="#PointOfView" title="http://purl.org/net/sett#PointOfView">Point Of View</a>
</li>
<li>
<a href="#RawTrajectory" title="http://purl.org/net/sett#RawTrajectory">Raw Trajectory</a>
</li>
<li>
<a href="#SemanticTrajectory" title="http://purl.org/net/sett#SemanticTrajectory">Semantic Trajectory</a>
</li>
<li>
<a href="#Slice" title="http://purl.org/net/sett#Slice">Slice</a>
</li>
<li>
<a href="#StructuredTrajectory" title="http://purl.org/net/sett#StructuredTrajectory">Structured Trajectory</a>
</li>
<li>
<a href="#Trend" title="http://purl.org/net/sett#Trend">Trend</a>
</li>
</ul><h4>Object Properties</h4><ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#correspondsTo" title="http://purl.org/net/sett#correspondsTo">corresponds To</a>
</li>
<li>
<a href="#EpisodeIsAnnotatedFrom" title="http://purl.org/net/sett#EpisodeIsAnnotatedFrom">Episode is Annotated from</a>
</li>
<li>
<a href="#EventIsAnnotatedFrom" title="http://purl.org/net/sett#EventIsAnnotatedFrom">Event is Annotated From</a>
</li>
<li>
<a href="#hasAnnotationEpisodeAbstract"
title="http://purl.org/net/sett#hasAnnotationEpisodeAbstract">has Annotation Abstract</a>
</li>
<li>
<a href="#hasAnnotationEpisodeDomain"
title="http://purl.org/net/sett#hasAnnotationEpisodeDomain">has Annotation Episode Domain</a>
</li>
<li>
<a href="#hasAnnotationEvent" title="http://purl.org/net/sett#hasAnnotationEvent">has Annotation Event</a>
</li>
<li>
<a href="#hasBreak" title="http://purl.org/net/sett#hasBreak">has Break</a>
</li>
<li>
<a href="#hasDate" title="http://purl.org/net/sett#hasDate">has Date</a>
</li>
<li>
<a href="#hasDateBreak" title="http://purl.org/net/sett#hasDateBreak">has Date</a>
</li>
<li>
<a href="#hasDomain" title="http://purl.org/net/sett#hasDomain">has Domain</a>
</li>
<li>
<a href="#hasEpisode" title="http://purl.org/net/sett#hasEpisode">has Episode</a>
</li>
<li>
<a href="#hasEvent" title="http://purl.org/net/sett#hasEvent">has Event</a>
</li>
<li>
<a href="#hasFittedBegin" title="http://purl.org/net/sett#hasFittedBegin">has Fitted Begin</a>
</li>
<li>
<a href="#hasFittedEnd" title="http://purl.org/net/sett#hasFittedEnd">has Fitted End</a>
</li>
<li>
<a href="#hasMVT" title="http://purl.org/net/sett#hasMVT">has Multiple Viewpoint Trajectory (MVT)</a>
</li>
<li>
<a href="#hasObservation" title="http://purl.org/net/sett#hasObservation">has Observation</a>
</li>
<li>
<a href="#hasPointOfView" title="http://purl.org/net/sett#hasPointOfView">has Point Of View</a>
</li>
<li>
<a href="#hasSemanticTrajectory" title="http://purl.org/net/sett#hasSemanticTrajectory">has Semantic Trajectory</a>
</li>
<li>
<a href="#hasTrend" title="http://purl.org/net/sett#hasTrend">has Trend</a>
</li>
<li>
<a href="#isCalculatedFrom" title="http://purl.org/net/sett#isCalculatedFrom">is Calculated From</a>
</li>
<li>
<a href="#isComposedOfObservation" title="http://purl.org/net/sett#isComposedOfObservation">is Composed Of Observation</a>
</li>
<li>
<a href="#monitorsIndice" title="http://purl.org/net/sett#monitorsIndice">monitorsI ndice</a>
</li>
</ul><h4>Data Properties</h4><ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#algorithmAppliedBreak" title="http://purl.org/net/sett#algorithmAppliedBreak">algorithm Applied for the Break detection</a>
</li>
<li>
<a href="#algorithmAppliedTrend" title="http://purl.org/net/sett#algorithmAppliedTrend">algorithm Applied for the Trend detection</a>
</li>
<li>
<a href="#hasEpisodeOrder" title="http://purl.org/net/sett#hasEpisodeOrder">has Episode Order</a>
</li>
<li>
<a href="#hasEventOrder" title="http://purl.org/net/sett#hasEventOrder">has Event Order</a>
</li>
<li>
<a href="#hasFittedValue" title="http://purl.org/net/sett#hasFittedValue">has Fitted Value</a>
</li>
<li>
<a href="#hasInterceptValue" title="http://purl.org/net/sett#hasInterceptValue">has Intercept Value</a>
</li>
<li>
<a href="#hasMagnitudeValue" title="http://purl.org/net/sett#hasMagnitudeValue">has Magnitude Value</a>
</li>
<li>
<a href="#hasPValue" title="http://purl.org/net/sett#hasPValue">has p-value</a>
</li>
<li>
<a href="#hasSlopeValue" title="http://purl.org/net/sett#hasSlopeValue">has Slope Value</a>
</li>
</ul><iframe src="webvowl/index.html"></iframe>
</div>
<!--DESCRIPTION SECTION-->
<div id="description"><h2 id="desc" class="list">The EO-evo ontology: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">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.</span></div>
<!--CROSSREF SECTION-->
<div id="crossref"><h2 id="crossreference" class="list">Cross-reference for The EO-evo ontology classes, object properties and data properties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
This section provides details for each class and property defined by The EO-evo ontology.
<div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="classes">
<h3 id="classes-headline" class="list">Classes</h3>
<ul class="hlist">
<li><a href="#Break" title="http://purl.org/net/sett#Break">Break</a></li>
<li><a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a></li>
<li><a href="#Event" title="http://purl.org/net/sett#Event">Event</a></li>
<li><a href="#FittedBegin" title="http://purl.org/net/sett#FittedBegin">Fitted Begin</a></li>
<li><a href="#FittedEnd" title="http://purl.org/net/sett#FittedEnd">Fitted End</a></li>
<li><a href="#FittedMeasure" title="http://purl.org/net/sett#FittedMeasure">Fitted Measure</a></li>
<li><a href="#MultipleViewpointTrajectory" title="http://purl.org/net/sett#MultipleViewpointTrajectory">Multiple Viewpoint Trajectory</a></li>
<li><a href="#Observation" title="http://purl.org/net/sett#Observation">Observation</a></li>
<li><a href="#PointOfView" title="http://purl.org/net/sett#PointOfView">Point Of View</a></li>
<li><a href="#RawTrajectory" title="http://purl.org/net/sett#RawTrajectory">Raw Trajectory</a></li>
<li><a href="#SemanticTrajectory" title="http://purl.org/net/sett#SemanticTrajectory">Semantic Trajectory</a></li>
<li><a href="#Slice" title="http://purl.org/net/sett#Slice">Slice</a></li>
<li><a href="#StructuredTrajectory" title="http://purl.org/net/sett#StructuredTrajectory">Structured Trajectory</a></li>
<li><a href="#Trend" title="http://purl.org/net/sett#Trend">Trend</a></li>
</ul>
<div class="entity" id="Break">
<h3>Break<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Break</p>
<div class="comment">
<span class="markdown">A break (or breakpoint) belongs to a structured trajectory and denotes a significative change in the time series. It is calculated using Segmentation algorithms.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#correspondsTo" title="http://purl.org/net/sett#correspondsTo">corresponds To</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasDateBreak" title="http://purl.org/net/sett#hasDateBreak">has Date</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasMagnitudeValue" title="http://purl.org/net/sett#hasMagnitudeValue">has Magnitude Value</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#EventIsAnnotatedFrom" title="http://purl.org/net/sett#EventIsAnnotatedFrom">Event is Annotated From</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasBreak" title="http://purl.org/net/sett#hasBreak">has Break</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Episode">
<h3>Episode<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Episode</p>
<div class="comment">
<span class="markdown">An episode belongs to a semantic trajectory and is the result of annotating a trend component.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#EpisodeIsAnnotatedFrom" title="http://purl.org/net/sett#EpisodeIsAnnotatedFrom">Episode is Annotated from</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasAnnotationEpisodeAbstract" title="http://purl.org/net/sett#hasAnnotationEpisodeAbstract">has Annotation Abstract</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasAnnotationEpisodeDomain" title="http://purl.org/net/sett#hasAnnotationEpisodeDomain">has Annotation Episode Domain</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasEpisodeOrder" title="http://purl.org/net/sett#hasEpisodeOrder">has Episode Order</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasEpisode" title="http://purl.org/net/sett#hasEpisode">has Episode</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Event">
<h3>Event<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Event</p>
<div class="comment">
<span class="markdown">An event belongs to a semantic trajectory and is the result of annotating a break component.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#EventIsAnnotatedFrom" title="http://purl.org/net/sett#EventIsAnnotatedFrom">Event is Annotated From</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasAnnotationEvent" title="http://purl.org/net/sett#hasAnnotationEvent">has Annotation Event</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasEventOrder" title="http://purl.org/net/sett#hasEventOrder">has Event Order</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasEvent" title="http://purl.org/net/sett#hasEvent">has Event</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="FittedBegin">
<h3>Fitted Begin<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#FittedBegin</p>
<div class="comment">
<span class="markdown">Fitted begin corresponds to the first fitted value, marking the start of the Trend.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#FittedMeasure" title="http://purl.org/net/sett#FittedMeasure">Fitted Measure</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasFittedBegin" title="http://purl.org/net/sett#hasFittedBegin">has Fitted Begin</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="FittedEnd">
<h3>Fitted End<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#FittedEnd</p>
<div class="comment">
<span class="markdown">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.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#FittedMeasure" title="http://purl.org/net/sett#FittedMeasure">Fitted Measure</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasFittedEnd" title="http://purl.org/net/sett#hasFittedEnd">has Fitted End</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="FittedMeasure">
<h3>Fitted Measure<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#FittedMeasure</p>
<div class="comment">
<span class="markdown">Fitted measures in linear regression are the predicted values calculated by the regression model.</span>
</div>
<div class="comment">
<span class="markdown">Fitted measures in linear regression are the predicted values calculated by the regression model.</span>
</div>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#FittedBegin" title="http://purl.org/net/sett#FittedBegin">Fitted Begin</a> <sup class="type-c" title="class">c</sup>, <a href="#FittedEnd" title="http://purl.org/net/sett#FittedEnd">Fitted End</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#hasDate" title="http://purl.org/net/sett#hasDate">has Date</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasFittedValue" title="http://purl.org/net/sett#hasFittedValue">has Fitted Value</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
</dl>
</div>
<div class="entity" id="MultipleViewpointTrajectory">
<h3>Multiple Viewpoint Trajectory<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#MultipleViewpointTrajectory</p>
<div class="comment">
<span class="markdown">When a trajectory is associated with many viewpoints, these trajectories are known as Multiple Viewpoint Trajectories (MVT).</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasSemanticTrajectory" title="http://purl.org/net/sett#hasSemanticTrajectory">has Semantic Trajectory</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasMVT" title="http://purl.org/net/sett#hasMVT">has Multiple Viewpoint Trajectory (MVT)</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Observation">
<h3>Observation<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Observation</p>
<div class="comment">
<span class="markdown">An observation belongs to a raw trajectory and represents a measurement in the original time series.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/linked-data/cube#Observation" target="_blank" title="http://purl.org/linked-data/cube#Observation">Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#correspondsTo" title="http://purl.org/net/sett#correspondsTo">corresponds To</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasObservation" title="http://purl.org/net/sett#hasObservation">has Observation</a> <sup class="type-op" title="object property">op</sup>, <a href="#isComposedOfObservation" title="http://purl.org/net/sett#isComposedOfObservation">is Composed Of Observation</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="PointOfView">
<h3>Point Of View<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#PointOfView</p>
<div class="comment">
<span class="markdown">A semantic trajectory monitors one point of wiew, such as environmental domains.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasDomain" title="http://purl.org/net/sett#hasDomain">has Domain</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasPointOfView" title="http://purl.org/net/sett#hasPointOfView">has Point Of View</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="RawTrajectory">
<h3>Raw Trajectory<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#RawTrajectory</p>
<div class="comment">
<span class="markdown">Raw trajectories are sequences of observations performed by agents, such as territorial units.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasObservation" title="http://purl.org/net/sett#hasObservation">has Observation</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="SemanticTrajectory">
<h3>Semantic Trajectory<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#SemanticTrajectory</p>
<div class="comment">
<span class="markdown">Semantic trajectories are the result of annotating structured trajectories as sequences of Episodes and Events.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasEpisode" title="http://purl.org/net/sett#hasEpisode">has Episode</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasEvent" title="http://purl.org/net/sett#hasEvent">has Event</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasPointOfView" title="http://purl.org/net/sett#hasPointOfView">has Point Of View</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasSemanticTrajectory" title="http://purl.org/net/sett#hasSemanticTrajectory">has Semantic Trajectory</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Slice">
<h3>Slice<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Slice</p>
<div class="comment">
<span class="markdown">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.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="http://purl.org/linked-data/cube#Slice" target="_blank" title="http://purl.org/linked-data/cube#Slice">Slice</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#isComposedOfObservation" title="http://purl.org/net/sett#isComposedOfObservation">is Composed Of Observation</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#isCalculatedFrom" title="http://purl.org/net/sett#isCalculatedFrom">is Calculated From</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="StructuredTrajectory">
<h3>Structured Trajectory<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#StructuredTrajectory</p>
<div class="comment">
<span class="markdown">Structured trajectories are the result of segment Raw trajectories into sequences of Trends and Breaks.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#algorithmAppliedBreak" title="http://purl.org/net/sett#algorithmAppliedBreak">algorithm Applied for the Break detection</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#algorithmAppliedTrend" title="http://purl.org/net/sett#algorithmAppliedTrend">algorithm Applied for the Trend detection</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#hasBreak" title="http://purl.org/net/sett#hasBreak">has Break</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasTrend" title="http://purl.org/net/sett#hasTrend">has Trend</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Trend">
<h3>Trend<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#Trend</p>
<div class="comment">
<span class="markdown">A trend belongs to a structured trajectory and is calculated using Segmentation algorithms.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasFittedBegin" title="http://purl.org/net/sett#hasFittedBegin">has Fitted Begin</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasFittedEnd" title="http://purl.org/net/sett#hasFittedEnd">has Fitted End</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasInterceptValue" title="http://purl.org/net/sett#hasInterceptValue">has Intercept Value</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#hasSlopeValue" title="http://purl.org/net/sett#hasSlopeValue">has Slope Value</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#hasPValue" title="http://purl.org/net/sett#hasPValue">has p-value</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#isCalculatedFrom" title="http://purl.org/net/sett#isCalculatedFrom">is Calculated From</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#EpisodeIsAnnotatedFrom" title="http://purl.org/net/sett#EpisodeIsAnnotatedFrom">Episode is Annotated from</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasTrend" title="http://purl.org/net/sett#hasTrend">has Trend</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div><div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="objectproperties">
<h3 id="properties" class="list">Object Properties</h3>
<ul class="hlist">
<li><a href="#correspondsTo" title="http://purl.org/net/sett#correspondsTo">corresponds To</a></li>
<li><a href="#EpisodeIsAnnotatedFrom" title="http://purl.org/net/sett#EpisodeIsAnnotatedFrom">Episode is Annotated from</a></li>
<li><a href="#EventIsAnnotatedFrom" title="http://purl.org/net/sett#EventIsAnnotatedFrom">Event is Annotated From</a></li>
<li><a href="#hasAnnotationEpisodeAbstract" title="http://purl.org/net/sett#hasAnnotationEpisodeAbstract">has Annotation Abstract</a></li>
<li><a href="#hasAnnotationEpisodeDomain" title="http://purl.org/net/sett#hasAnnotationEpisodeDomain">has Annotation Episode Domain</a></li>
<li><a href="#hasAnnotationEvent" title="http://purl.org/net/sett#hasAnnotationEvent">has Annotation Event</a></li>
<li><a href="#hasBreak" title="http://purl.org/net/sett#hasBreak">has Break</a></li>
<li><a href="#hasDate" title="http://purl.org/net/sett#hasDate">has Date</a></li>
<li><a href="#hasDateBreak" title="http://purl.org/net/sett#hasDateBreak">has Date</a></li>
<li><a href="#hasDomain" title="http://purl.org/net/sett#hasDomain">has Domain</a></li>
<li><a href="#hasEpisode" title="http://purl.org/net/sett#hasEpisode">has Episode</a></li>
<li><a href="#hasEvent" title="http://purl.org/net/sett#hasEvent">has Event</a></li>
<li><a href="#hasFittedBegin" title="http://purl.org/net/sett#hasFittedBegin">has Fitted Begin</a></li>
<li><a href="#hasFittedEnd" title="http://purl.org/net/sett#hasFittedEnd">has Fitted End</a></li>
<li><a href="#hasMVT" title="http://purl.org/net/sett#hasMVT">has Multiple Viewpoint Trajectory (MVT)</a></li>
<li><a href="#hasObservation" title="http://purl.org/net/sett#hasObservation">has Observation</a></li>
<li><a href="#hasPointOfView" title="http://purl.org/net/sett#hasPointOfView">has Point Of View</a></li>
<li><a href="#hasSemanticTrajectory" title="http://purl.org/net/sett#hasSemanticTrajectory">has Semantic Trajectory</a></li>
<li><a href="#hasTrend" title="http://purl.org/net/sett#hasTrend">has Trend</a></li>
<li><a href="#isCalculatedFrom" title="http://purl.org/net/sett#isCalculatedFrom">is Calculated From</a></li>
<li><a href="#isComposedOfObservation" title="http://purl.org/net/sett#isComposedOfObservation">is Composed Of Observation</a></li>
<li><a href="#monitorsIndice" title="http://purl.org/net/sett#monitorsIndice">monitorsI ndice</a></li>
</ul>
<div class="entity" id="correspondsTo">
<h3>corresponds To<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#correspondsTo</p>
<div class="comment">
<span class="markdown"> </span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Break" title="http://purl.org/net/sett#Break">Break</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Observation" title="http://purl.org/net/sett#Observation">Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="EpisodeIsAnnotatedFrom">
<h3>Episode is Annotated from<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#EpisodeIsAnnotatedFrom</p>
<div class="comment">
<span class="markdown">An Episode is annotated from a Trend.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Trend" title="http://purl.org/net/sett#Trend">Trend</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="EventIsAnnotatedFrom">
<h3>Event is Annotated From<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#EventIsAnnotatedFrom</p>
<div class="comment">
<span class="markdown">An Event is Annotated From a Break.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Event" title="http://purl.org/net/sett#Event">Event</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Break" title="http://purl.org/net/sett#Break">Break</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasAnnotationEpisodeAbstract">
<h3>has Annotation Abstract<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasAnnotationEpisodeAbstract</p>
<div class="comment">
<span class="markdown">The Episode is annotated with semantic descriptions. This annotations corresponds to the Abstract layer.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept" target="_blank" title="http://www.w3.org/2004/02/skos/core#Concept">Concept</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasAnnotationEpisodeDomain">
<h3>has Annotation Episode Domain<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasAnnotationEpisodeDomain</p>
<div class="comment">
<span class="markdown">The Episode is annotated with semantic descriptions. This annotations corresponds to the Environmental domain layer.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept" target="_blank" title="http://www.w3.org/2004/02/skos/core#Concept">Concept</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasAnnotationEvent">
<h3>has Annotation Event<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasAnnotationEvent</p>
<div class="comment">
<span class="markdown">The Event is annotated with semantic descriptions.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Event" title="http://purl.org/net/sett#Event">Event</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept" target="_blank" title="http://www.w3.org/2004/02/skos/core#Concept">Concept</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasBreak">
<h3>has Break<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasBreak</p>
<div class="comment">
<span class="markdown">A Structured trajectory has zero or more Breaks.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#StructuredTrajectory" title="http://purl.org/net/sett#StructuredTrajectory">Structured Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Break" title="http://purl.org/net/sett#Break">Break</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasDate">
<h3>has Date<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasDate</p>
<div class="comment">
<span class="markdown">Denotes the date of a fitted measurement.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#FittedMeasure" title="http://purl.org/net/sett#FittedMeasure">Fitted Measure</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://purl.org/net/sett#DateTimeDescription" target="_blank" title="http://purl.org/net/sett#DateTimeDescription">Date Time Description</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasDateBreak">
<h3>has Date<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasDateBreak</p>
<div class="comment">
<span class="markdown">Denotes the approximate date of the breakpoint.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Break" title="http://purl.org/net/sett#Break">Break</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://purl.org/net/sett#DateTimeDescription" target="_blank" title="http://purl.org/net/sett#DateTimeDescription">Date Time Description</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasDomain">
<h3>has Domain<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasDomain</p>
<div class="comment">
<span class="markdown">Denotes the Environmental domain.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#PointOfView" title="http://purl.org/net/sett#PointOfView">Point Of View</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept" target="_blank" title="http://www.w3.org/2004/02/skos/core#Concept">Concept</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasEpisode">
<h3>has Episode<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasEpisode</p>
<div class="comment">
<span class="markdown">A Semantic trajectory has one or more Episodes.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#SemanticTrajectory" title="http://purl.org/net/sett#SemanticTrajectory">Semantic Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Episode" title="http://purl.org/net/sett#Episode">Episode</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasEvent">
<h3>has Event<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasEvent</p>
<div class="comment">
<span class="markdown">A Semantic trajectory has zero or more Events.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#SemanticTrajectory" title="http://purl.org/net/sett#SemanticTrajectory">Semantic Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Event" title="http://purl.org/net/sett#Event">Event</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasFittedBegin">
<h3>has Fitted Begin<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasFittedBegin</p>
<div class="comment">
<span class="markdown">The trend line starts with its first fitted value.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Trend" title="http://purl.org/net/sett#Trend">Trend</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#FittedBegin" title="http://purl.org/net/sett#FittedBegin">Fitted Begin</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasFittedEnd">
<h3>has Fitted End<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasFittedEnd</p>
<div class="comment">
<span class="markdown">The trend line finishes with its last fitted value.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#Trend" title="http://purl.org/net/sett#Trend">Trend</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#FittedEnd" title="http://purl.org/net/sett#FittedEnd">Fitted End</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasMVT">
<h3>has Multiple Viewpoint Trajectory (MVT)<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasMVT</p>
<div class="comment">
<span class="markdown">A Territorial Unit (TU) has Multiple Viewpoint Trajectory (MVT).</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="http://purl.org/net/sett#TerritorialUnit" target="_blank" title="http://purl.org/net/sett#TerritorialUnit">Territorial Unit</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#MultipleViewpointTrajectory" title="http://purl.org/net/sett#MultipleViewpointTrajectory">Multiple Viewpoint Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasObservation">
<h3>has Observation<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasObservation</p>
<div class="comment">
<span class="markdown">A raw trajectory consists of one or more observations that represent its movement.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#RawTrajectory" title="http://purl.org/net/sett#RawTrajectory">Raw Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#Observation" title="http://purl.org/net/sett#Observation">Observation</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasPointOfView">
<h3>has Point Of View<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasPointOfView</p>
<div class="comment">
<span class="markdown">A Semantic trajectory has a Point Of View.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>
<dd>
<a href="#SemanticTrajectory" title="http://purl.org/net/sett#SemanticTrajectory">Semantic Trajectory</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has range
</dt>
<dd>
<a href="#PointOfView" title="http://purl.org/net/sett#PointOfView">Point Of View</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="hasSemanticTrajectory">
<h3>has Semantic Trajectory<sup class="type-op" title="object property">op</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/net/sett#hasSemanticTrajectory</p>
<div class="comment">
<span class="markdown">A Multiple Viewpoint Trajectory (MVP) is composed of one Semantic trajectory.</span>
</div>
<div class="description">
<dl>
<dt>
has domain
</dt>