Tore Christiansen

Adding examples to investigate use of reference data

This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 # imports: http://data.posccaesar.org/NCS_PLANNING/ 2 # imports: http://data.posccaesar.org/NCS_PLANNING/
3 3
4 @prefix ILAP: <http://data.posccaesar.org/ilap/> . 4 @prefix ILAP: <http://data.posccaesar.org/ilap/> .
5 +@prefix SCCS: <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/> .
5 @prefix UC1: <http://data.posccaesar.org/Data/UC1/> . 6 @prefix UC1: <http://data.posccaesar.org/Data/UC1/> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> . 7 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 8 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
...@@ -12,10 +13,78 @@ UC1: rdf:type owl:Ontology ; ...@@ -12,10 +13,78 @@ UC1: rdf:type owl:Ontology ;
12 owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; 13 owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ;
13 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
14 15
16 +UC1:ActivityWBS_1
17 + rdf:type ILAP:ActivityWBS ;
18 + rdfs:label "Activity WBS 1"^^xsd:string ;
19 + ILAP:hasWBSResource UC1:COR_KD_1 ;
20 + ILAP:hasWBScomponent
21 + UC1:PBS_ABB_1 ;
22 + ILAP:hasWBSphase UC1:SAB_51_1 .
23 +
24 +UC1:COR_KD_1
25 + rdf:type SCCS:COR_KD ;
26 + rdfs:label "Drilling"^^xsd:string .
27 +
28 +UC1:PBS_ABB_1
29 + rdf:type SCCS:PBS_ABB ;
30 + rdfs:label "PBS ABB 1"^^xsd:string .
31 +
32 +UC1:RiskFactor_1
33 + rdf:type ILAP:RiskFactor ;
34 + rdfs:label "Risk factor 1"^^xsd:string ;
35 + ILAP:hasRiskType ILAP:ShallowGasOperation .
36 +
37 +UC1:SAB_51_1
38 + rdf:type SCCS:SAB_51 ;
39 + rdfs:label "SAB 51 1"^^xsd:string .
40 +
41 +UC1:SummerShutdown_1
42 + rdf:type ILAP:Shutdown ;
43 + rdfs:label "Summer shutdown 1"^^xsd:string ;
44 + ILAP:hasShutdownContent
45 + ILAP:Drilling_Shutdown ;
46 + ILAP:hasShutdownPeriod
47 + "2015"^^xsd:string ;
48 + ILAP:hasShutdownPriority
49 + ILAP:NormalPriority ;
50 + ILAP:hasShutdownType
51 + ILAP:Scheduled_Shutdown .
52 +
53 +UC1:WorkOrder_1
54 + rdf:type ILAP:WorkOrder ;
55 + rdfs:label "Work order 1"^^xsd:string .
56 +
15 ILAP:PlannedActivity_2 57 ILAP:PlannedActivity_2
16 rdf:type ILAP:PlannedActivity ; 58 rdf:type ILAP:PlannedActivity ;
17 rdfs:label "Planned activity 2"^^xsd:string ; 59 rdfs:label "Planned activity 2"^^xsd:string ;
60 + ILAP:hasActivityActualProgressPercent
61 + "50"^^xsd:float ;
18 ILAP:hasActivityContractor 62 ILAP:hasActivityContractor
19 <http://data.posccaesar.org/brreg/R-5db3751d-41d9-4516-a8e9-2b73a7df656b> ; 63 <http://data.posccaesar.org/brreg/R-5db3751d-41d9-4516-a8e9-2b73a7df656b> ;
64 + ILAP:hasActivityDiscipline
65 + UC1:COR_KD_1 ;
66 + ILAP:hasActivityEstimatedWeight
67 + "55000"^^xsd:float ;
68 + ILAP:hasActivityLocation
69 + <http://staging.data.posccaesar.org/npd/facts/Field-46437> ;
20 ILAP:hasActivityOperator 70 ILAP:hasActivityOperator
21 - <http://staging.data.posccaesar.org/npd/facts/Company-2410696> . 71 + <http://staging.data.posccaesar.org/npd/facts/Company-2410696> ;
72 + ILAP:hasActivityPhase
73 + UC1:SAB_51_1 ;
74 + ILAP:hasActivityResource
75 + UC1:COR_KD_1 ;
76 + ILAP:hasActivityResult
77 + UC1:PBS_ABB_1 ;
78 + ILAP:hasActivityRiskFactor
79 + UC1:RiskFactor_1 ;
80 + ILAP:hasActivityShutdown
81 + UC1:SummerShutdown_1 ;
82 + ILAP:hasActivityStatus
83 + ILAP:Active ;
84 + ILAP:hasActivityWBSelement
85 + UC1:ActivityWBS_1 ;
86 + ILAP:hasActivityWeight
87 + "55000"^^xsd:float ;
88 + ILAP:hasActivityWorkVolume
89 + "1500"^^xsd:float ;
90 + ILAP:hasPlatform <http://staging.data.posccaesar.org/npd/facts/Facility-278329> .
......