-
Notifications
You must be signed in to change notification settings - Fork 0
/
ForecastingOntology-1.1.ttl
126 lines (107 loc) · 4.71 KB
/
ForecastingOntology-1.1.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
# Copyright 2020 Platoon Project.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix cc: <http://creativecommons.org/ns#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix saref: <https://w3id.org/saref#> .
@prefix pep: <https://w3id.org/pep/> .
@prefix seas: <https://w3id.org/seas/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix plt: <https://w3id.org/platoon/>.
@base <https://w3id.org/platoon/>.
voaf:Vocabulary a owl:Class .
dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
vs:term_status a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .
plt:ForecastingOntology rdf:type voaf:Vocabulary , owl:Ontology ;
dcterms:title "Platoon Forecasting Ontology"@en ;
dcterms:description "The Platoon forecasting vocabulary for the Platoon project."@en ;
dcterms:issued "2022-06-26"^^xsd:date ;
dcterms:modified "2020-11-07"^^xsd:date ;
dcterms:creator "Sarra BEN ABBES and Lynda TEMAL and Oumy SEYE" ;
dcterms:license <https://www.apache.org/licenses/LICENSE-2.0> ;
vann:preferredNamespacePrefix "plt" ;
vann:preferredNamespaceUri <https://w3id.org/platoon/> ;
owl:versionIRI <https://w3id.org/platoon/ForecastingOntology-1.1> ;
owl:imports seas:ForecastingOntology-1.1;
owl:versionInfo "v1.1" .
#######################################
# Forecasts #
#######################################
plt:LongTermForecast a owl:Class ;
rdfs:label "Long Term Forecast"@en ;
rdfs:comment "The class for long term forecast"@en ;
rdfs:subClassOf seas:Forecast;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
plt:MediumTermForecast a owl:Class ;
rdfs:label "Medium Term Forecast"@en ;
rdfs:comment "The class for medium term forecast"@en ;
rdfs:subClassOf seas:Forecast;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
plt:ShortTermForecast a owl:Class ;
rdfs:label "Short Term Forecast"@en ;
rdfs:comment "The class for short term forecast"@en ;
rdfs:subClassOf seas:Forecast;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
plt:UltraShortTermForecast a owl:Class ;
rdfs:label "UltraShort Term Forecast"@en ;
rdfs:comment "The class for ultra short term forecast"@en ;
rdfs:subClassOf seas:Forecast;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
plt:hasForecastProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of electric energy load property"@en ;
rdfs:comment """Links Feature Of Interest with its forecast property."""@en ;
rdfs:subPropertyOf seas:hasProperty ;
rdfs:domain saref:FeatureOfInterest ;
rdfs:range seas:Forecast ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
plt:hasForecastingDate a owl:ObjectProperty ;
rdfs:label "has forecasting date"@en ;
rdfs:comment """Links the result of forecast property to its forcasting temporal context."""@en ;
rdfs:domain seas:Evaluation ;
rdfs:range time:TemporalEntity ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:ForecastingOntology .
#######################################
# reused concepts #
#######################################
seas:Property a owl:Class.
seas:Evaluation a owl:Class.
time:TemporalEntity a owl:Class.
#######################################
# reused relations #
#######################################
seas:hasProperty a owl:ObjectProperty.