This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtransport1
114 lines (92 loc) · 2.26 KB
/
transport1
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
@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 skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix qudt: <http://qudt.org/1.1/vocab/> .
@prefix vf: <https://w3id.org/valueflows/> .
# Classes
vf:Agent
a owl:Class ;
rdfs:label "Agent" .
vf:Process
a owl:Class ;
rdfs:label "Process" .
vf:Transportation
a owl:Class ;
rdfs:label "Transportation" ;
rdfs:subClassOf vf:Process .
vf:Resource
a owl:Class ;
rdfs:label "Resource" .
vf:Location
a owl:Class ;
rdfs:label "Location" .
vf:InputOrOutput
a owl:Class ;
rdfs:label "InputOrOutput";
rdfs:comment "This is the rea:EconomicEvent, which we need a name for" .
vf:EventType
a owl:Class ;
rdfs:label "EventType" .
# Properties
vf:io
a owl:ObjectProperty ;
rdfs:label "io" ;
rdfs:domain vf:Transportation ;
rdfs:range vf:InputOrOutput .
vf:load
a vf:EventType ;
rdfs:label "load" .
vf:unload
a vf:EventType ;
rdfs:label "unload" .
vf:action
a rdf:Property ;
rdfs:label "action" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:load, vf:unload .
vf:resource
a rdf:Property ;
rdfs:label "resource" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
vf:transportResource
a rdf:Property ;
rdfs:label "transport" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
vf:quantity
a qudt:QuantityValue ;
rdfs:label "quantity" ;
rdfs:domain vf:InputOrOutput, vf:Resource ;
rdfs:range qudt:QuantityValue .
vf:context
a owl:ObjectProperty ;
rdfs:label "context" ;
rdfs:domain vf:Process ;
rdfs:range vf:Agent .
vf:location
a owl:ObjectProperty ;
rdfs:label "location" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Location .
vf:contains
a owl:ObjectProperty ;
rdfs:label "contains" ;
rdfs:domain vf:Resource ;
rdfs:range vf:Resource .
vf:provider
a owl:ObjectProperty ;
rdfs:label "provider" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:receiver
a owl:ObjectProperty ;
rdfs:label "receiver" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:carrier
a owl:ObjectProperty ;
rdfs:label "carrier" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .