David Leal

Dull grade consistent with DDR Mapping Patterns

1 +# Saved by TopBraid on Thu Oct 27 12:21:33 BST 2011
1 # baseURI: http://www.reportinghub.no/ep/spin/1.1/lib 2 # baseURI: http://www.reportinghub.no/ep/spin/1.1/lib
2 -# imports: http://spinrdf.org/spin
3 -# imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 -# imports: http://www.reportinghub.no/ep/schema/1.0/activity-purpose
5 -# imports: http://www.reportinghub.no/ep/schema/1.0/core
6 # imports: http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type 3 # imports: http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type
7 -# imports: http://www.reportinghub.no/ep/schema/1.0/equipment
8 -# imports: http://www.reportinghub.no/ep/schema/1.0/facility
9 # imports: http://www.reportinghub.no/ep/schema/1.0/report 4 # imports: http://www.reportinghub.no/ep/schema/1.0/report
5 +# imports: http://www.witsml.org/schemas/1series
6 +# imports: http://www.reportinghub.no/ep/schema/1.0/core
10 # imports: http://www.reportinghub.no/ep/schema/1.0/well 7 # imports: http://www.reportinghub.no/ep/schema/1.0/well
8 +# imports: http://www.reportinghub.no/ep/schema/1.0/activity-purpose
9 +# imports: http://www.reportinghub.no/ep/schema/1.0/equipment
10 +# imports: http://www.reportinghub.no/ep/schema/1.0/facility
11 +# imports: http://www.reportinghub.no/ep/schema/1.0/activity
12 +# imports: http://spinrdf.org/spin
11 # imports: http://www.reportinghub.no/spin/rh 13 # imports: http://www.reportinghub.no/spin/rh
12 -# imports: http://www.witsml.org/schemas/1series
13 14
14 @prefix activity-purpose: <http://www.reportinghub.no/ep/schema/1.0/activity-purpose#> . 15 @prefix activity-purpose: <http://www.reportinghub.no/ep/schema/1.0/activity-purpose#> .
15 @prefix ddr: <http://www.witsml.org/schemas/1series#> . 16 @prefix ddr: <http://www.witsml.org/schemas/1series#> .
...@@ -28,7 +29,7 @@ ...@@ -28,7 +29,7 @@
28 29
29 <http://www.reportinghub.no/ep/spin/1.1/lib> 30 <http://www.reportinghub.no/ep/spin/1.1/lib>
30 rdf:type owl:Ontology ; 31 rdf:type owl:Ontology ;
31 - owl:imports <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://spinrdf.org/spin> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://www.reportinghub.no/ep/schema/1.0/facility> ; 32 + owl:imports <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://spinrdf.org/spin> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> ;
32 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 33 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
33 34
34 ep-spin-lib:Function 35 ep-spin-lib:Function
...@@ -118,13 +119,32 @@ ep-spin-lib:buildDailyDrillingReportURI ...@@ -118,13 +119,32 @@ ep-spin-lib:buildDailyDrillingReportURI
118 ]) 119 ])
119 ] . 120 ] .
120 121
122 +ep-spin-lib:buildDullGradeURI
123 + rdf:type spin:Function ;
124 + rdfs:label "build DullGrade URI"^^xsd:string ;
125 + rdfs:subClassOf ep-spin-lib:Function ;
126 + spin:body
127 + [ rdf:type sp:Select ;
128 + sp:resultVariables (_:b5) ;
129 + sp:where ([ rdf:type sp:Bind ;
130 + sp:expression
131 + [ rdf:type ep-spin-lib:buildURI ;
132 + sp:arg1 "https://www.reportinghub.no/ep/schema/1.0/equipment/dullGrade/" ;
133 + sp:arg2 [ rdf:type fn:concat ;
134 + sp:arg1 spin:_arg1
135 + ]
136 + ] ;
137 + sp:variable _:b5
138 + ])
139 + ] .
140 +
121 ep-spin-lib:buildEquipmentFailureAndRepairURI 141 ep-spin-lib:buildEquipmentFailureAndRepairURI
122 rdf:type spin:Function ; 142 rdf:type spin:Function ;
123 rdfs:label "build EquipmentFailureAndRepair URI"^^xsd:string ; 143 rdfs:label "build EquipmentFailureAndRepair URI"^^xsd:string ;
124 rdfs:subClassOf ep-spin-lib:Function ; 144 rdfs:subClassOf ep-spin-lib:Function ;
125 spin:body 145 spin:body
126 [ rdf:type sp:Select ; 146 [ rdf:type sp:Select ;
127 - sp:resultVariables (_:b5) ; 147 + sp:resultVariables (_:b6) ;
128 sp:where ([ rdf:type sp:Bind ; 148 sp:where ([ rdf:type sp:Bind ;
129 sp:expression 149 sp:expression
130 [ rdf:type ep-spin-lib:buildURI ; 150 [ rdf:type ep-spin-lib:buildURI ;
...@@ -137,7 +157,7 @@ ep-spin-lib:buildEquipmentFailureAndRepairURI ...@@ -137,7 +157,7 @@ ep-spin-lib:buildEquipmentFailureAndRepairURI
137 sp:arg5 spin:_arg3 157 sp:arg5 spin:_arg3
138 ] 158 ]
139 ] ; 159 ] ;
140 - sp:variable _:b5 160 + sp:variable _:b6
141 ]) 161 ])
142 ] . 162 ] .
143 163
...@@ -147,14 +167,14 @@ ep-spin-lib:buildEquipmentTypeURI ...@@ -147,14 +167,14 @@ ep-spin-lib:buildEquipmentTypeURI
147 rdfs:subClassOf ep-spin-lib:Function ; 167 rdfs:subClassOf ep-spin-lib:Function ;
148 spin:body 168 spin:body
149 [ rdf:type sp:Select ; 169 [ rdf:type sp:Select ;
150 - sp:resultVariables (_:b6) ; 170 + sp:resultVariables (_:b7) ;
151 sp:where ([ rdf:type sp:Bind ; 171 sp:where ([ rdf:type sp:Bind ;
152 sp:expression 172 sp:expression
153 [ rdf:type ep-spin-lib:buildURI ; 173 [ rdf:type ep-spin-lib:buildURI ;
154 sp:arg1 "http://www.reportinghub.no/ep/schema/drilling-equipment-type#" ; 174 sp:arg1 "http://www.reportinghub.no/ep/schema/drilling-equipment-type#" ;
155 sp:arg2 spin:_arg1 175 sp:arg2 spin:_arg1
156 ] ; 176 ] ;
157 - sp:variable _:b6 177 + sp:variable _:b7
158 ]) 178 ])
159 ] . 179 ] .
160 180
...@@ -164,7 +184,7 @@ ep-spin-lib:buildExtractAWellCoreURI ...@@ -164,7 +184,7 @@ ep-spin-lib:buildExtractAWellCoreURI
164 rdfs:subClassOf ep-spin-lib:Function ; 184 rdfs:subClassOf ep-spin-lib:Function ;
165 spin:body 185 spin:body
166 [ rdf:type sp:Select ; 186 [ rdf:type sp:Select ;
167 - sp:resultVariables (_:b7) ; 187 + sp:resultVariables (_:b8) ;
168 sp:where ([ rdf:type sp:Bind ; 188 sp:where ([ rdf:type sp:Bind ;
169 sp:expression 189 sp:expression
170 [ rdf:type ep-spin-lib:buildURI ; 190 [ rdf:type ep-spin-lib:buildURI ;
...@@ -175,7 +195,7 @@ ep-spin-lib:buildExtractAWellCoreURI ...@@ -175,7 +195,7 @@ ep-spin-lib:buildExtractAWellCoreURI
175 sp:arg3 spin:_arg2 195 sp:arg3 spin:_arg2
176 ] 196 ]
177 ] ; 197 ] ;
178 - sp:variable _:b7 198 + sp:variable _:b8
179 ]) 199 ])
180 ] . 200 ] .
181 201
...@@ -185,7 +205,7 @@ ep-spin-lib:buildFluidReadingURI ...@@ -185,7 +205,7 @@ ep-spin-lib:buildFluidReadingURI
185 rdfs:subClassOf ep-spin-lib:Function ; 205 rdfs:subClassOf ep-spin-lib:Function ;
186 spin:body 206 spin:body
187 [ rdf:type sp:Select ; 207 [ rdf:type sp:Select ;
188 - sp:resultVariables (_:b8) ; 208 + sp:resultVariables (_:b9) ;
189 sp:where ([ rdf:type sp:Bind ; 209 sp:where ([ rdf:type sp:Bind ;
190 sp:expression 210 sp:expression
191 [ rdf:type ep-spin-lib:buildURI ; 211 [ rdf:type ep-spin-lib:buildURI ;
...@@ -198,7 +218,7 @@ ep-spin-lib:buildFluidReadingURI ...@@ -198,7 +218,7 @@ ep-spin-lib:buildFluidReadingURI
198 sp:arg5 spin:_arg3 218 sp:arg5 spin:_arg3
199 ] 219 ]
200 ] ; 220 ] ;
201 - sp:variable _:b8 221 + sp:variable _:b9
202 ]) 222 ])
203 ] . 223 ] .
204 224
...@@ -208,7 +228,7 @@ ep-spin-lib:buildGasReadingURI ...@@ -208,7 +228,7 @@ ep-spin-lib:buildGasReadingURI
208 rdfs:subClassOf ep-spin-lib:Function ; 228 rdfs:subClassOf ep-spin-lib:Function ;
209 spin:body 229 spin:body
210 [ rdf:type sp:Select ; 230 [ rdf:type sp:Select ;
211 - sp:resultVariables (_:b9) ; 231 + sp:resultVariables (_:b10) ;
212 sp:where ([ rdf:type sp:Bind ; 232 sp:where ([ rdf:type sp:Bind ;
213 sp:expression 233 sp:expression
214 [ rdf:type ep-spin-lib:buildURI ; 234 [ rdf:type ep-spin-lib:buildURI ;
...@@ -219,7 +239,7 @@ ep-spin-lib:buildGasReadingURI ...@@ -219,7 +239,7 @@ ep-spin-lib:buildGasReadingURI
219 sp:arg3 spin:_arg2 239 sp:arg3 spin:_arg2
220 ] 240 ]
221 ] ; 241 ] ;
222 - sp:variable _:b9 242 + sp:variable _:b10
223 ]) 243 ])
224 ] . 244 ] .
225 245
...@@ -229,7 +249,7 @@ ep-spin-lib:buildLastCasingOfAWellBoreURI ...@@ -229,7 +249,7 @@ ep-spin-lib:buildLastCasingOfAWellBoreURI
229 rdfs:subClassOf ep-spin-lib:Function ; 249 rdfs:subClassOf ep-spin-lib:Function ;
230 spin:body 250 spin:body
231 [ rdf:type sp:Select ; 251 [ rdf:type sp:Select ;
232 - sp:resultVariables (_:b10) ; 252 + sp:resultVariables (_:b11) ;
233 sp:where ([ rdf:type sp:Bind ; 253 sp:where ([ rdf:type sp:Bind ;
234 sp:expression 254 sp:expression
235 [ rdf:type ep-spin-lib:buildURI ; 255 [ rdf:type ep-spin-lib:buildURI ;
...@@ -240,7 +260,7 @@ ep-spin-lib:buildLastCasingOfAWellBoreURI ...@@ -240,7 +260,7 @@ ep-spin-lib:buildLastCasingOfAWellBoreURI
240 sp:arg3 spin:_arg2 260 sp:arg3 spin:_arg2
241 ] 261 ]
242 ] ; 262 ] ;
243 - sp:variable _:b10 263 + sp:variable _:b11
244 ]) 264 ])
245 ] . 265 ] .
246 266
...@@ -250,7 +270,7 @@ ep-spin-lib:buildLithShowObservationURI ...@@ -250,7 +270,7 @@ ep-spin-lib:buildLithShowObservationURI
250 rdfs:subClassOf ep-spin-lib:Function ; 270 rdfs:subClassOf ep-spin-lib:Function ;
251 spin:body 271 spin:body
252 [ rdf:type sp:Select ; 272 [ rdf:type sp:Select ;
253 - sp:resultVariables (_:b11) ; 273 + sp:resultVariables (_:b12) ;
254 sp:where ([ rdf:type sp:Bind ; 274 sp:where ([ rdf:type sp:Bind ;
255 sp:expression 275 sp:expression
256 [ rdf:type ep-spin-lib:buildURI ; 276 [ rdf:type ep-spin-lib:buildURI ;
...@@ -263,7 +283,7 @@ ep-spin-lib:buildLithShowObservationURI ...@@ -263,7 +283,7 @@ ep-spin-lib:buildLithShowObservationURI
263 sp:arg5 spin:_arg3 283 sp:arg5 spin:_arg3
264 ] 284 ]
265 ] ; 285 ] ;
266 - sp:variable _:b11 286 + sp:variable _:b12
267 ]) 287 ])
268 ] . 288 ] .
269 289
...@@ -273,7 +293,7 @@ ep-spin-lib:buildOpenPerforationIntervalURI ...@@ -273,7 +293,7 @@ ep-spin-lib:buildOpenPerforationIntervalURI
273 rdfs:subClassOf ep-spin-lib:Function ; 293 rdfs:subClassOf ep-spin-lib:Function ;
274 spin:body 294 spin:body
275 [ rdf:type sp:Select ; 295 [ rdf:type sp:Select ;
276 - sp:resultVariables (_:b12) ; 296 + sp:resultVariables (_:b13) ;
277 sp:where ([ rdf:type sp:Bind ; 297 sp:where ([ rdf:type sp:Bind ;
278 sp:expression 298 sp:expression
279 [ rdf:type ep-spin-lib:buildURI ; 299 [ rdf:type ep-spin-lib:buildURI ;
...@@ -284,7 +304,7 @@ ep-spin-lib:buildOpenPerforationIntervalURI ...@@ -284,7 +304,7 @@ ep-spin-lib:buildOpenPerforationIntervalURI
284 sp:arg3 spin:_arg2 304 sp:arg3 spin:_arg2
285 ] 305 ]
286 ] ; 306 ] ;
287 - sp:variable _:b12 307 + sp:variable _:b13
288 ]) 308 ])
289 ] . 309 ] .
290 310
...@@ -294,7 +314,7 @@ ep-spin-lib:buildPartActivityURI ...@@ -294,7 +314,7 @@ ep-spin-lib:buildPartActivityURI
294 rdfs:subClassOf ep-spin-lib:Function ; 314 rdfs:subClassOf ep-spin-lib:Function ;
295 spin:body 315 spin:body
296 [ rdf:type sp:Select ; 316 [ rdf:type sp:Select ;
297 - sp:resultVariables (_:b13) ; 317 + sp:resultVariables (_:b14) ;
298 sp:where ([ rdf:type sp:Bind ; 318 sp:where ([ rdf:type sp:Bind ;
299 sp:expression 319 sp:expression
300 [ rdf:type ep-spin-lib:buildURI ; 320 [ rdf:type ep-spin-lib:buildURI ;
...@@ -307,7 +327,7 @@ ep-spin-lib:buildPartActivityURI ...@@ -307,7 +327,7 @@ ep-spin-lib:buildPartActivityURI
307 sp:arg5 spin:_arg3 327 sp:arg5 spin:_arg3
308 ] 328 ]
309 ] ; 329 ] ;
310 - sp:variable _:b13 330 + sp:variable _:b14
311 ]) 331 ])
312 ] . 332 ] .
313 333
...@@ -317,7 +337,7 @@ ep-spin-lib:buildPartOfAWellBoreDuringWellTestURI ...@@ -317,7 +337,7 @@ ep-spin-lib:buildPartOfAWellBoreDuringWellTestURI
317 rdfs:subClassOf ep-spin-lib:Function ; 337 rdfs:subClassOf ep-spin-lib:Function ;
318 spin:body 338 spin:body
319 [ rdf:type sp:Select ; 339 [ rdf:type sp:Select ;
320 - sp:resultVariables (_:b14) ; 340 + sp:resultVariables (_:b15) ;
321 sp:where ([ rdf:type sp:Bind ; 341 sp:where ([ rdf:type sp:Bind ;
322 sp:expression 342 sp:expression
323 [ rdf:type ep-spin-lib:buildURI ; 343 [ rdf:type ep-spin-lib:buildURI ;
...@@ -328,7 +348,7 @@ ep-spin-lib:buildPartOfAWellBoreDuringWellTestURI ...@@ -328,7 +348,7 @@ ep-spin-lib:buildPartOfAWellBoreDuringWellTestURI
328 sp:arg3 spin:_arg2 348 sp:arg3 spin:_arg2
329 ] 349 ]
330 ] ; 350 ] ;
331 - sp:variable _:b14 351 + sp:variable _:b15
332 ]) 352 ])
333 ] . 353 ] .
334 354
...@@ -338,7 +358,7 @@ ep-spin-lib:buildPilotHoleOfAWellBoreURI ...@@ -338,7 +358,7 @@ ep-spin-lib:buildPilotHoleOfAWellBoreURI
338 rdfs:subClassOf ep-spin-lib:Function ; 358 rdfs:subClassOf ep-spin-lib:Function ;
339 spin:body 359 spin:body
340 [ rdf:type sp:Select ; 360 [ rdf:type sp:Select ;
341 - sp:resultVariables (_:b15) ; 361 + sp:resultVariables (_:b16) ;
342 sp:where ([ rdf:type sp:Bind ; 362 sp:where ([ rdf:type sp:Bind ;
343 sp:expression 363 sp:expression
344 [ rdf:type ep-spin-lib:buildURI ; 364 [ rdf:type ep-spin-lib:buildURI ;
...@@ -349,7 +369,7 @@ ep-spin-lib:buildPilotHoleOfAWellBoreURI ...@@ -349,7 +369,7 @@ ep-spin-lib:buildPilotHoleOfAWellBoreURI
349 sp:arg3 spin:_arg2 369 sp:arg3 spin:_arg2
350 ] 370 ]
351 ] ; 371 ] ;
352 - sp:variable _:b15 372 + sp:variable _:b16
353 ]) 373 ])
354 ] . 374 ] .
355 375
...@@ -359,7 +379,7 @@ ep-spin-lib:buildPorePressureDeterminationURI ...@@ -359,7 +379,7 @@ ep-spin-lib:buildPorePressureDeterminationURI
359 rdfs:subClassOf ep-spin-lib:Function ; 379 rdfs:subClassOf ep-spin-lib:Function ;
360 spin:body 380 spin:body
361 [ rdf:type sp:Select ; 381 [ rdf:type sp:Select ;
362 - sp:resultVariables (_:b16) ; 382 + sp:resultVariables (_:b17) ;
363 sp:where ([ rdf:type sp:Bind ; 383 sp:where ([ rdf:type sp:Bind ;
364 sp:expression 384 sp:expression
365 [ rdf:type ep-spin-lib:buildURI ; 385 [ rdf:type ep-spin-lib:buildURI ;
...@@ -372,7 +392,7 @@ ep-spin-lib:buildPorePressureDeterminationURI ...@@ -372,7 +392,7 @@ ep-spin-lib:buildPorePressureDeterminationURI
372 sp:arg5 spin:_arg3 392 sp:arg5 spin:_arg3
373 ] 393 ]
374 ] ; 394 ] ;
375 - sp:variable _:b16 395 + sp:variable _:b17
376 ]) 396 ])
377 ] . 397 ] .
378 398
...@@ -382,7 +402,7 @@ ep-spin-lib:buildPreliminaryZonationURI ...@@ -382,7 +402,7 @@ ep-spin-lib:buildPreliminaryZonationURI
382 rdfs:subClassOf ep-spin-lib:Function ; 402 rdfs:subClassOf ep-spin-lib:Function ;
383 spin:body 403 spin:body
384 [ rdf:type sp:Select ; 404 [ rdf:type sp:Select ;
385 - sp:resultVariables (_:b17) ; 405 + sp:resultVariables (_:b18) ;
386 sp:where ([ rdf:type sp:Bind ; 406 sp:where ([ rdf:type sp:Bind ;
387 sp:expression 407 sp:expression
388 [ rdf:type ep-spin-lib:buildURI ; 408 [ rdf:type ep-spin-lib:buildURI ;
...@@ -395,7 +415,7 @@ ep-spin-lib:buildPreliminaryZonationURI ...@@ -395,7 +415,7 @@ ep-spin-lib:buildPreliminaryZonationURI
395 sp:arg5 spin:_arg3 415 sp:arg5 spin:_arg3
396 ] 416 ]
397 ] ; 417 ] ;
398 - sp:variable _:b17 418 + sp:variable _:b18
399 ]) 419 ])
400 ] . 420 ] .
401 421
...@@ -425,7 +445,7 @@ ep-spin-lib:buildTemporalPartOfARigURI ...@@ -425,7 +445,7 @@ ep-spin-lib:buildTemporalPartOfARigURI
425 rdfs:subClassOf ep-spin-lib:Function ; 445 rdfs:subClassOf ep-spin-lib:Function ;
426 spin:body 446 spin:body
427 [ rdf:type sp:Select ; 447 [ rdf:type sp:Select ;
428 - sp:resultVariables (_:b18) ; 448 + sp:resultVariables (_:b19) ;
429 sp:where ([ rdf:type sp:Bind ; 449 sp:where ([ rdf:type sp:Bind ;
430 sp:expression 450 sp:expression
431 [ rdf:type ep-spin-lib:buildURI ; 451 [ rdf:type ep-spin-lib:buildURI ;
...@@ -438,7 +458,7 @@ ep-spin-lib:buildTemporalPartOfARigURI ...@@ -438,7 +458,7 @@ ep-spin-lib:buildTemporalPartOfARigURI
438 sp:arg5 spin:_arg3 458 sp:arg5 spin:_arg3
439 ] 459 ]
440 ] ; 460 ] ;
441 - sp:variable _:b18 461 + sp:variable _:b19
442 ]) 462 ])
443 ] . 463 ] .
444 464
...@@ -448,7 +468,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreDuringWellControlIncidentURI ...@@ -448,7 +468,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreDuringWellControlIncidentURI
448 rdfs:subClassOf ep-spin-lib:Function ; 468 rdfs:subClassOf ep-spin-lib:Function ;
449 spin:body 469 spin:body
450 [ rdf:type sp:Select ; 470 [ rdf:type sp:Select ;
451 - sp:resultVariables (_:b19) ; 471 + sp:resultVariables (_:b20) ;
452 sp:where ([ rdf:type sp:Bind ; 472 sp:where ([ rdf:type sp:Bind ;
453 sp:expression 473 sp:expression
454 [ rdf:type ep-spin-lib:buildURI ; 474 [ rdf:type ep-spin-lib:buildURI ;
...@@ -459,7 +479,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreDuringWellControlIncidentURI ...@@ -459,7 +479,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreDuringWellControlIncidentURI
459 sp:arg3 spin:_arg2 479 sp:arg3 spin:_arg2
460 ] 480 ]
461 ] ; 481 ] ;
462 - sp:variable _:b19 482 + sp:variable _:b20
463 ]) 483 ])
464 ] . 484 ] .
465 485
...@@ -469,7 +489,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreURI ...@@ -469,7 +489,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreURI
469 rdfs:subClassOf ep-spin-lib:Function ; 489 rdfs:subClassOf ep-spin-lib:Function ;
470 spin:body 490 spin:body
471 [ rdf:type sp:Select ; 491 [ rdf:type sp:Select ;
472 - sp:resultVariables (_:b20) ; 492 + sp:resultVariables (_:b21) ;
473 sp:where ([ rdf:type sp:Bind ; 493 sp:where ([ rdf:type sp:Bind ;
474 sp:expression 494 sp:expression
475 [ rdf:type ep-spin-lib:buildURI ; 495 [ rdf:type ep-spin-lib:buildURI ;
...@@ -482,7 +502,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreURI ...@@ -482,7 +502,7 @@ ep-spin-lib:buildTemporalPartOfAWellBoreURI
482 sp:arg5 spin:_arg3 502 sp:arg5 spin:_arg3
483 ] 503 ]
484 ] ; 504 ] ;
485 - sp:variable _:b20 505 + sp:variable _:b21
486 ]) 506 ])
487 ] . 507 ] .
488 508
...@@ -492,7 +512,7 @@ ep-spin-lib:buildURI ...@@ -492,7 +512,7 @@ ep-spin-lib:buildURI
492 rdfs:subClassOf ep-spin-lib:Function ; 512 rdfs:subClassOf ep-spin-lib:Function ;
493 spin:body 513 spin:body
494 [ rdf:type sp:Select ; 514 [ rdf:type sp:Select ;
495 - sp:resultVariables (_:b21) ; 515 + sp:resultVariables (_:b22) ;
496 sp:where ([ rdf:type sp:Bind ; 516 sp:where ([ rdf:type sp:Bind ;
497 sp:expression 517 sp:expression
498 [ rdf:type sp:iri ; 518 [ rdf:type sp:iri ;
...@@ -501,17 +521,17 @@ ep-spin-lib:buildURI ...@@ -501,17 +521,17 @@ ep-spin-lib:buildURI
501 sp:arg2 spin:_arg2 521 sp:arg2 spin:_arg2
502 ] 522 ]
503 ] ; 523 ] ;
504 - sp:variable _:b21 524 + sp:variable _:b22
505 ]) 525 ])
506 ] ; 526 ] ;
507 spin:constraint 527 spin:constraint
508 [ rdf:type spl:Argument ; 528 [ rdf:type spl:Argument ;
509 - spl:predicate sp:arg2 ; 529 + spl:predicate sp:arg1 ;
510 spl:valueType xsd:string 530 spl:valueType xsd:string
511 ] ; 531 ] ;
512 spin:constraint 532 spin:constraint
513 [ rdf:type spl:Argument ; 533 [ rdf:type spl:Argument ;
514 - spl:predicate sp:arg1 ; 534 + spl:predicate sp:arg2 ;
515 spl:valueType xsd:string 535 spl:valueType xsd:string
516 ] . 536 ] .
517 537
...@@ -521,7 +541,7 @@ ep-spin-lib:buildWellBoreDirectionalSurveyURI ...@@ -521,7 +541,7 @@ ep-spin-lib:buildWellBoreDirectionalSurveyURI
521 rdfs:subClassOf ep-spin-lib:Function ; 541 rdfs:subClassOf ep-spin-lib:Function ;
522 spin:body 542 spin:body
523 [ rdf:type sp:Select ; 543 [ rdf:type sp:Select ;
524 - sp:resultVariables (_:b22) ; 544 + sp:resultVariables (_:b23) ;
525 sp:where ([ rdf:type sp:Bind ; 545 sp:where ([ rdf:type sp:Bind ;
526 sp:expression 546 sp:expression
527 [ rdf:type ep-spin-lib:buildURI ; 547 [ rdf:type ep-spin-lib:buildURI ;
...@@ -534,7 +554,7 @@ ep-spin-lib:buildWellBoreDirectionalSurveyURI ...@@ -534,7 +554,7 @@ ep-spin-lib:buildWellBoreDirectionalSurveyURI
534 sp:arg5 spin:_arg3 554 sp:arg5 spin:_arg3
535 ] 555 ]
536 ] ; 556 ] ;
537 - sp:variable _:b22 557 + sp:variable _:b23
538 ]) 558 ])
539 ] . 559 ] .
540 560
...@@ -544,7 +564,7 @@ ep-spin-lib:buildWellBoreDrillBitRunURI ...@@ -544,7 +564,7 @@ ep-spin-lib:buildWellBoreDrillBitRunURI
544 rdfs:subClassOf ep-spin-lib:Function ; 564 rdfs:subClassOf ep-spin-lib:Function ;
545 spin:body 565 spin:body
546 [ rdf:type sp:Select ; 566 [ rdf:type sp:Select ;
547 - sp:resultVariables (_:b23) ; 567 + sp:resultVariables (_:b24) ;
548 sp:where ([ rdf:type sp:Bind ; 568 sp:where ([ rdf:type sp:Bind ;
549 sp:expression 569 sp:expression
550 [ rdf:type ep-spin-lib:buildURI ; 570 [ rdf:type ep-spin-lib:buildURI ;
...@@ -557,7 +577,7 @@ ep-spin-lib:buildWellBoreDrillBitRunURI ...@@ -557,7 +577,7 @@ ep-spin-lib:buildWellBoreDrillBitRunURI
557 sp:arg5 spin:_arg3 577 sp:arg5 spin:_arg3
558 ] 578 ]
559 ] ; 579 ] ;
560 - sp:variable _:b23 580 + sp:variable _:b24
561 ]) 581 ])
562 ] . 582 ] .
563 583
...@@ -567,7 +587,7 @@ ep-spin-lib:buildWellBoreDrillBitURI ...@@ -567,7 +587,7 @@ ep-spin-lib:buildWellBoreDrillBitURI
567 rdfs:subClassOf ep-spin-lib:Function ; 587 rdfs:subClassOf ep-spin-lib:Function ;
568 spin:body 588 spin:body
569 [ rdf:type sp:Select ; 589 [ rdf:type sp:Select ;
570 - sp:resultVariables (_:b24) ; 590 + sp:resultVariables (_:b25) ;
571 sp:where ([ rdf:type sp:Bind ; 591 sp:where ([ rdf:type sp:Bind ;
572 sp:expression 592 sp:expression
573 [ rdf:type ep-spin-lib:buildURI ; 593 [ rdf:type ep-spin-lib:buildURI ;
...@@ -578,7 +598,7 @@ ep-spin-lib:buildWellBoreDrillBitURI ...@@ -578,7 +598,7 @@ ep-spin-lib:buildWellBoreDrillBitURI
578 sp:arg3 spin:_arg2 598 sp:arg3 spin:_arg2
579 ] 599 ]
580 ] ; 600 ] ;
581 - sp:variable _:b24 601 + sp:variable _:b25
582 ]) 602 ])
583 ] . 603 ] .
584 604
...@@ -588,7 +608,7 @@ ep-spin-lib:buildWellBoreKickOffURI ...@@ -588,7 +608,7 @@ ep-spin-lib:buildWellBoreKickOffURI
588 rdfs:subClassOf ep-spin-lib:Function ; 608 rdfs:subClassOf ep-spin-lib:Function ;
589 spin:body 609 spin:body
590 [ rdf:type sp:Select ; 610 [ rdf:type sp:Select ;
591 - sp:resultVariables (_:b25) ; 611 + sp:resultVariables (_:b26) ;
592 sp:where ([ rdf:type sp:Bind ; 612 sp:where ([ rdf:type sp:Bind ;
593 sp:expression 613 sp:expression
594 [ rdf:type ep-spin-lib:buildURI ; 614 [ rdf:type ep-spin-lib:buildURI ;
...@@ -597,7 +617,7 @@ ep-spin-lib:buildWellBoreKickOffURI ...@@ -597,7 +617,7 @@ ep-spin-lib:buildWellBoreKickOffURI
597 sp:arg1 spin:_arg1 617 sp:arg1 spin:_arg1
598 ] 618 ]
599 ] ; 619 ] ;
600 - sp:variable _:b25 620 + sp:variable _:b26
601 ]) 621 ])
602 ] . 622 ] .
603 623
...@@ -607,7 +627,7 @@ ep-spin-lib:buildWellBoreLogRunURI ...@@ -607,7 +627,7 @@ ep-spin-lib:buildWellBoreLogRunURI
607 rdfs:subClassOf ep-spin-lib:Function ; 627 rdfs:subClassOf ep-spin-lib:Function ;
608 spin:body 628 spin:body
609 [ rdf:type sp:Select ; 629 [ rdf:type sp:Select ;
610 - sp:resultVariables (_:b26) ; 630 + sp:resultVariables (_:b27) ;
611 sp:where ([ rdf:type sp:Bind ; 631 sp:where ([ rdf:type sp:Bind ;
612 sp:expression 632 sp:expression
613 [ rdf:type ep-spin-lib:buildURI ; 633 [ rdf:type ep-spin-lib:buildURI ;
...@@ -620,7 +640,7 @@ ep-spin-lib:buildWellBoreLogRunURI ...@@ -620,7 +640,7 @@ ep-spin-lib:buildWellBoreLogRunURI
620 sp:arg5 spin:_arg3 640 sp:arg5 spin:_arg3
621 ] 641 ]
622 ] ; 642 ] ;
623 - sp:variable _:b26 643 + sp:variable _:b27
624 ]) 644 ])
625 ] . 645 ] .
626 646
...@@ -630,7 +650,7 @@ ep-spin-lib:buildWellCementJobURI ...@@ -630,7 +650,7 @@ ep-spin-lib:buildWellCementJobURI
630 rdfs:subClassOf ep-spin-lib:Function ; 650 rdfs:subClassOf ep-spin-lib:Function ;
631 spin:body 651 spin:body
632 [ rdf:type sp:Select ; 652 [ rdf:type sp:Select ;
633 - sp:resultVariables (_:b27) ; 653 + sp:resultVariables (_:b28) ;
634 sp:where ([ rdf:type sp:Bind ; 654 sp:where ([ rdf:type sp:Bind ;
635 sp:expression 655 sp:expression
636 [ rdf:type ep-spin-lib:buildURI ; 656 [ rdf:type ep-spin-lib:buildURI ;
...@@ -641,7 +661,7 @@ ep-spin-lib:buildWellCementJobURI ...@@ -641,7 +661,7 @@ ep-spin-lib:buildWellCementJobURI
641 sp:arg3 spin:_arg2 661 sp:arg3 spin:_arg2
642 ] 662 ]
643 ] ; 663 ] ;
644 - sp:variable _:b27 664 + sp:variable _:b28
645 ]) 665 ])
646 ] . 666 ] .
647 667
...@@ -651,7 +671,7 @@ ep-spin-lib:buildWellControlIncidentURI ...@@ -651,7 +671,7 @@ ep-spin-lib:buildWellControlIncidentURI
651 rdfs:subClassOf ep-spin-lib:Function ; 671 rdfs:subClassOf ep-spin-lib:Function ;
652 spin:body 672 spin:body
653 [ rdf:type sp:Select ; 673 [ rdf:type sp:Select ;
654 - sp:resultVariables (_:b28) ; 674 + sp:resultVariables (_:b29) ;
655 sp:where ([ rdf:type sp:Bind ; 675 sp:where ([ rdf:type sp:Bind ;
656 sp:expression 676 sp:expression
657 [ rdf:type ep-spin-lib:buildURI ; 677 [ rdf:type ep-spin-lib:buildURI ;
...@@ -662,7 +682,7 @@ ep-spin-lib:buildWellControlIncidentURI ...@@ -662,7 +682,7 @@ ep-spin-lib:buildWellControlIncidentURI
662 sp:arg3 spin:_arg2 682 sp:arg3 spin:_arg2
663 ] 683 ]
664 ] ; 684 ] ;
665 - sp:variable _:b28 685 + sp:variable _:b29
666 ]) 686 ])
667 ] . 687 ] .
668 688
...@@ -672,7 +692,7 @@ ep-spin-lib:buildWellStimulationURI ...@@ -672,7 +692,7 @@ ep-spin-lib:buildWellStimulationURI
672 rdfs:subClassOf ep-spin-lib:Function ; 692 rdfs:subClassOf ep-spin-lib:Function ;
673 spin:body 693 spin:body
674 [ rdf:type sp:Select ; 694 [ rdf:type sp:Select ;
675 - sp:resultVariables (_:b29) ; 695 + sp:resultVariables (_:b30) ;
676 sp:where ([ rdf:type sp:Bind ; 696 sp:where ([ rdf:type sp:Bind ;
677 sp:expression 697 sp:expression
678 [ rdf:type ep-spin-lib:buildURI ; 698 [ rdf:type ep-spin-lib:buildURI ;
...@@ -683,7 +703,7 @@ ep-spin-lib:buildWellStimulationURI ...@@ -683,7 +703,7 @@ ep-spin-lib:buildWellStimulationURI
683 sp:arg3 spin:_arg2 703 sp:arg3 spin:_arg2
684 ] 704 ]
685 ] ; 705 ] ;
686 - sp:variable _:b29 706 + sp:variable _:b30
687 ]) 707 ])
688 ] . 708 ] .
689 709
...@@ -693,7 +713,7 @@ ep-spin-lib:buildWellTestURI ...@@ -693,7 +713,7 @@ ep-spin-lib:buildWellTestURI
693 rdfs:subClassOf ep-spin-lib:Function ; 713 rdfs:subClassOf ep-spin-lib:Function ;
694 spin:body 714 spin:body
695 [ rdf:type sp:Select ; 715 [ rdf:type sp:Select ;
696 - sp:resultVariables (_:b30) ; 716 + sp:resultVariables (_:b31) ;
697 sp:where ([ rdf:type sp:Bind ; 717 sp:where ([ rdf:type sp:Bind ;
698 sp:expression 718 sp:expression
699 [ rdf:type ep-spin-lib:buildURI ; 719 [ rdf:type ep-spin-lib:buildURI ;
...@@ -704,7 +724,7 @@ ep-spin-lib:buildWellTestURI ...@@ -704,7 +724,7 @@ ep-spin-lib:buildWellTestURI
704 sp:arg3 spin:_arg2 724 sp:arg3 spin:_arg2
705 ] 725 ]
706 ] ; 726 ] ;
707 - sp:variable _:b30 727 + sp:variable _:b31
708 ]) 728 ])
709 ] . 729 ] .
710 730
...@@ -714,7 +734,7 @@ ep-spin-lib:buildWirelineFormationTestURI ...@@ -714,7 +734,7 @@ ep-spin-lib:buildWirelineFormationTestURI
714 rdfs:subClassOf ep-spin-lib:Function ; 734 rdfs:subClassOf ep-spin-lib:Function ;
715 spin:body 735 spin:body
716 [ rdf:type sp:Select ; 736 [ rdf:type sp:Select ;
717 - sp:resultVariables (_:b31) ; 737 + sp:resultVariables (_:b32) ;
718 sp:where ([ rdf:type sp:Bind ; 738 sp:where ([ rdf:type sp:Bind ;
719 sp:expression 739 sp:expression
720 [ rdf:type ep-spin-lib:buildURI ; 740 [ rdf:type ep-spin-lib:buildURI ;
...@@ -725,7 +745,7 @@ ep-spin-lib:buildWirelineFormationTestURI ...@@ -725,7 +745,7 @@ ep-spin-lib:buildWirelineFormationTestURI
725 sp:arg3 spin:_arg2 745 sp:arg3 spin:_arg2
726 ] 746 ]
727 ] ; 747 ] ;
728 - sp:variable _:b31 748 + sp:variable _:b32
729 ]) 749 ])
730 ] . 750 ] .
731 751
...@@ -807,7 +827,7 @@ ep-spin-lib:normalizeString ...@@ -807,7 +827,7 @@ ep-spin-lib:normalizeString
807 rdfs:subClassOf ep-spin-lib:Function ; 827 rdfs:subClassOf ep-spin-lib:Function ;
808 spin:body 828 spin:body
809 [ rdf:type sp:Select ; 829 [ rdf:type sp:Select ;
810 - sp:resultVariables (_:b32) ; 830 + sp:resultVariables (_:b33) ;
811 sp:where ([ rdf:type sp:Bind ; 831 sp:where ([ rdf:type sp:Bind ;
812 sp:expression 832 sp:expression
813 [ rdf:type smf:regex ; 833 [ rdf:type smf:regex ;
...@@ -815,67 +835,67 @@ ep-spin-lib:normalizeString ...@@ -815,67 +835,67 @@ ep-spin-lib:normalizeString
815 sp:arg2 "\\((.*)\\)" ; 835 sp:arg2 "\\((.*)\\)" ;
816 sp:arg3 "" 836 sp:arg3 ""
817 ] ; 837 ] ;
818 - sp:variable _:b33 838 + sp:variable _:b34
819 ] [ rdf:type sp:Bind ; 839 ] [ rdf:type sp:Bind ;
820 sp:expression 840 sp:expression
821 [ rdf:type smf:trim ; 841 [ rdf:type smf:trim ;
822 - sp:arg1 _:b33 842 + sp:arg1 _:b34
823 ] ; 843 ] ;
824 - sp:variable _:b34 844 + sp:variable _:b35
825 ] [ rdf:type sp:Bind ; 845 ] [ rdf:type sp:Bind ;
826 sp:expression 846 sp:expression
827 [ rdf:type smf:encodeURL ; 847 [ rdf:type smf:encodeURL ;
828 - sp:arg1 _:b34 848 + sp:arg1 _:b35
829 ] ; 849 ] ;
830 - sp:variable _:b35 850 + sp:variable _:b36
831 ] [ rdf:type sp:Bind ; 851 ] [ rdf:type sp:Bind ;
832 sp:expression 852 sp:expression
833 [ rdf:type smf:regex ; 853 [ rdf:type smf:regex ;
834 - sp:arg1 _:b35 ; 854 + sp:arg1 _:b36 ;
835 sp:arg2 "%2F" ; 855 sp:arg2 "%2F" ;
836 sp:arg3 "_" 856 sp:arg3 "_"
837 ] ; 857 ] ;
838 - sp:variable _:b36 858 + sp:variable _:b37
839 ] [ rdf:type sp:Bind ; 859 ] [ rdf:type sp:Bind ;
840 sp:expression 860 sp:expression
841 [ rdf:type smf:regex ; 861 [ rdf:type smf:regex ;
842 - sp:arg1 _:b36 ; 862 + sp:arg1 _:b37 ;
843 sp:arg2 "%[0-9A-F][0-9A-F]" ; 863 sp:arg2 "%[0-9A-F][0-9A-F]" ;
844 sp:arg3 "" 864 sp:arg3 ""
845 ] ; 865 ] ;
846 - sp:variable _:b37 866 + sp:variable _:b38
847 ] [ rdf:type sp:Bind ; 867 ] [ rdf:type sp:Bind ;
848 sp:expression 868 sp:expression
849 [ rdf:type smf:regex ; 869 [ rdf:type smf:regex ;
850 - sp:arg1 _:b37 ; 870 + sp:arg1 _:b38 ;
851 sp:arg2 "\\+" ; 871 sp:arg2 "\\+" ;
852 sp:arg3 "_" 872 sp:arg3 "_"
853 ] ; 873 ] ;
854 - sp:variable _:b38 874 + sp:variable _:b39
855 ] [ rdf:type sp:Bind ; 875 ] [ rdf:type sp:Bind ;
856 sp:expression 876 sp:expression
857 [ rdf:type smf:regex ; 877 [ rdf:type smf:regex ;
858 - sp:arg1 _:b38 ; 878 + sp:arg1 _:b39 ;
859 sp:arg2 "_+" ; 879 sp:arg2 "_+" ;
860 sp:arg3 "_" 880 sp:arg3 "_"
861 ] ; 881 ] ;
862 - sp:variable _:b39 882 + sp:variable _:b40
863 ] [ rdf:type sp:Bind ; 883 ] [ rdf:type sp:Bind ;
864 sp:expression 884 sp:expression
865 [ rdf:type smf:regex ; 885 [ rdf:type smf:regex ;
866 - sp:arg1 _:b39 ; 886 + sp:arg1 _:b40 ;
867 sp:arg2 "\\*" ; 887 sp:arg2 "\\*" ;
868 sp:arg3 "" 888 sp:arg3 ""
869 ] ; 889 ] ;
870 - sp:variable _:b40 890 + sp:variable _:b41
871 ] [ rdf:type sp:Bind ; 891 ] [ rdf:type sp:Bind ;
872 sp:expression 892 sp:expression
873 [ rdf:type xsd:string ; 893 [ rdf:type xsd:string ;
874 sp:arg1 [ rdf:type smf:upperCase ; 894 sp:arg1 [ rdf:type smf:upperCase ;
875 - sp:arg1 _:b40 895 + sp:arg1 _:b41
876 ] 896 ]
877 ] ; 897 ] ;
878 - sp:variable _:b32 898 + sp:variable _:b33
879 ]) 899 ])
880 ] ; 900 ] ;
881 spin:constraint 901 spin:constraint
...@@ -890,7 +910,7 @@ ep-spin-lib:selectActivitySuccessType ...@@ -890,7 +910,7 @@ ep-spin-lib:selectActivitySuccessType
890 rdfs:subClassOf ep-spin-lib:Function ; 910 rdfs:subClassOf ep-spin-lib:Function ;
891 spin:body 911 spin:body
892 [ rdf:type sp:Select ; 912 [ rdf:type sp:Select ;
893 - sp:resultVariables (_:b41) ; 913 + sp:resultVariables (_:b42) ;
894 sp:where ([ rdf:type sp:Bind ; 914 sp:where ([ rdf:type sp:Bind ;
895 sp:expression 915 sp:expression
896 [ rdf:type sp:if ; 916 [ rdf:type sp:if ;
...@@ -901,7 +921,7 @@ ep-spin-lib:selectActivitySuccessType ...@@ -901,7 +921,7 @@ ep-spin-lib:selectActivitySuccessType
901 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#SuccessfulActivity> ; 921 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#SuccessfulActivity> ;
902 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#FailedActivity> 922 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#FailedActivity>
903 ] ; 923 ] ;
904 - sp:variable _:b41 924 + sp:variable _:b42
905 ]) 925 ])
906 ] . 926 ] .
907 927
...@@ -911,7 +931,7 @@ ep-spin-lib:selectCasingRoleType ...@@ -911,7 +931,7 @@ ep-spin-lib:selectCasingRoleType
911 rdfs:subClassOf ep-spin-lib:Function ; 931 rdfs:subClassOf ep-spin-lib:Function ;
912 spin:body 932 spin:body
913 [ rdf:type sp:Select ; 933 [ rdf:type sp:Select ;
914 - sp:resultVariables (_:b42) ; 934 + sp:resultVariables (_:b43) ;
915 sp:where ([ rdf:type sp:Bind ; 935 sp:where ([ rdf:type sp:Bind ;
916 sp:expression 936 sp:expression
917 [ rdf:type sp:if ; 937 [ rdf:type sp:if ;
...@@ -936,7 +956,7 @@ ep-spin-lib:selectCasingRoleType ...@@ -936,7 +956,7 @@ ep-spin-lib:selectCasingRoleType
936 ] 956 ]
937 ] 957 ]
938 ] ; 958 ] ;
939 - sp:variable _:b42 959 + sp:variable _:b43
940 ]) 960 ])
941 ] . 961 ] .
942 962
...@@ -946,7 +966,7 @@ ep-spin-lib:selectCementingFluidReturnType ...@@ -946,7 +966,7 @@ ep-spin-lib:selectCementingFluidReturnType
946 rdfs:subClassOf ep-spin-lib:Function ; 966 rdfs:subClassOf ep-spin-lib:Function ;
947 spin:body 967 spin:body
948 [ rdf:type sp:Select ; 968 [ rdf:type sp:Select ;
949 - sp:resultVariables (_:b43) ; 969 + sp:resultVariables (_:b44) ;
950 sp:where ([ rdf:type sp:Bind ; 970 sp:where ([ rdf:type sp:Bind ;
951 sp:expression 971 sp:expression
952 [ rdf:type sp:if ; 972 [ rdf:type sp:if ;
...@@ -957,7 +977,7 @@ ep-spin-lib:selectCementingFluidReturnType ...@@ -957,7 +977,7 @@ ep-spin-lib:selectCementingFluidReturnType
957 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithFluidReturn> ; 977 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithFluidReturn> ;
958 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithoutFluidReturn> 978 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithoutFluidReturn>
959 ] ; 979 ] ;
960 - sp:variable _:b43 980 + sp:variable _:b44
961 ]) 981 ])
962 ] . 982 ] .
963 983
...@@ -967,7 +987,7 @@ ep-spin-lib:selectClassOfWellDatumObject ...@@ -967,7 +987,7 @@ ep-spin-lib:selectClassOfWellDatumObject
967 rdfs:subClassOf ep-spin-lib:Function ; 987 rdfs:subClassOf ep-spin-lib:Function ;
968 spin:body 988 spin:body
969 [ rdf:type sp:Select ; 989 [ rdf:type sp:Select ;
970 - sp:resultVariables (_:b44) ; 990 + sp:resultVariables (_:b45) ;
971 sp:where ([ rdf:type sp:Bind ; 991 sp:where ([ rdf:type sp:Bind ;
972 sp:expression 992 sp:expression
973 [ rdf:type sp:if ; 993 [ rdf:type sp:if ;
...@@ -985,7 +1005,7 @@ ep-spin-lib:selectClassOfWellDatumObject ...@@ -985,7 +1005,7 @@ ep-spin-lib:selectClassOfWellDatumObject
985 sp:arg3 owl:Nothing 1005 sp:arg3 owl:Nothing
986 ] 1006 ]
987 ] ; 1007 ] ;
988 - sp:variable _:b44 1008 + sp:variable _:b45
989 ]) 1009 ])
990 ] . 1010 ] .
991 1011
...@@ -995,7 +1015,7 @@ ep-spin-lib:selectComponentType ...@@ -995,7 +1015,7 @@ ep-spin-lib:selectComponentType
995 rdfs:subClassOf ep-spin-lib:Function ; 1015 rdfs:subClassOf ep-spin-lib:Function ;
996 spin:body 1016 spin:body
997 [ rdf:type sp:Select ; 1017 [ rdf:type sp:Select ;
998 - sp:resultVariables (_:b45) ; 1018 + sp:resultVariables (_:b46) ;
999 sp:where ([ rdf:type sp:Bind ; 1019 sp:where ([ rdf:type sp:Bind ;
1000 sp:expression 1020 sp:expression
1001 [ rdf:type sp:if ; 1021 [ rdf:type sp:if ;
...@@ -1034,7 +1054,7 @@ ep-spin-lib:selectComponentType ...@@ -1034,7 +1054,7 @@ ep-spin-lib:selectComponentType
1034 ] 1054 ]
1035 ] 1055 ]
1036 ] ; 1056 ] ;
1037 - sp:variable _:b45 1057 + sp:variable _:b46
1038 ]) 1058 ])
1039 ] . 1059 ] .
1040 1060
...@@ -1044,7 +1064,7 @@ ep-spin-lib:selectDailyDrillingReportType ...@@ -1044,7 +1064,7 @@ ep-spin-lib:selectDailyDrillingReportType
1044 rdfs:subClassOf ep-spin-lib:Function ; 1064 rdfs:subClassOf ep-spin-lib:Function ;
1045 spin:body 1065 spin:body
1046 [ rdf:type sp:Select ; 1066 [ rdf:type sp:Select ;
1047 - sp:resultVariables (_:b46) ; 1067 + sp:resultVariables (_:b47) ;
1048 sp:where ([ rdf:type sp:Bind ; 1068 sp:where ([ rdf:type sp:Bind ;
1049 sp:expression 1069 sp:expression
1050 [ rdf:type sp:if ; 1070 [ rdf:type sp:if ;
...@@ -1062,7 +1082,7 @@ ep-spin-lib:selectDailyDrillingReportType ...@@ -1062,7 +1082,7 @@ ep-spin-lib:selectDailyDrillingReportType
1062 sp:arg3 <http://www.reportinghub.no/ep/schema/report#FinalDailyDrillingReport> 1082 sp:arg3 <http://www.reportinghub.no/ep/schema/report#FinalDailyDrillingReport>
1063 ] 1083 ]
1064 ] ; 1084 ] ;
1065 - sp:variable _:b46 1085 + sp:variable _:b47
1066 ]) 1086 ])
1067 ] . 1087 ] .
1068 1088
...@@ -1072,7 +1092,7 @@ ep-spin-lib:selectDensityScale ...@@ -1072,7 +1092,7 @@ ep-spin-lib:selectDensityScale
1072 rdfs:subClassOf ep-spin-lib:Function ; 1092 rdfs:subClassOf ep-spin-lib:Function ;
1073 spin:body 1093 spin:body
1074 [ rdf:type sp:Select ; 1094 [ rdf:type sp:Select ;
1075 - sp:resultVariables (_:b47) ; 1095 + sp:resultVariables (_:b48) ;
1076 sp:where ([ rdf:type sp:Bind ; 1096 sp:where ([ rdf:type sp:Bind ;
1077 sp:expression 1097 sp:expression
1078 [ rdf:type sp:if ; 1098 [ rdf:type sp:if ;
...@@ -1090,7 +1110,7 @@ ep-spin-lib:selectDensityScale ...@@ -1090,7 +1110,7 @@ ep-spin-lib:selectDensityScale
1090 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 1110 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
1091 ] 1111 ]
1092 ] ; 1112 ] ;
1093 - sp:variable _:b47 1113 + sp:variable _:b48
1094 ]) 1114 ])
1095 ] . 1115 ] .
1096 1116
...@@ -1100,7 +1120,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType ...@@ -1100,7 +1120,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType
1100 rdfs:subClassOf ep-spin-lib:Function ; 1120 rdfs:subClassOf ep-spin-lib:Function ;
1101 spin:body 1121 spin:body
1102 [ rdf:type sp:Select ; 1122 [ rdf:type sp:Select ;
1103 - sp:resultVariables (_:b48) ; 1123 + sp:resultVariables (_:b49) ;
1104 sp:where ([ rdf:type sp:Bind ; 1124 sp:where ([ rdf:type sp:Bind ;
1105 sp:expression 1125 sp:expression
1106 [ rdf:type sp:if ; 1126 [ rdf:type sp:if ;
...@@ -1167,7 +1187,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType ...@@ -1167,7 +1187,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType
1167 ] 1187 ]
1168 ] 1188 ]
1169 ] ; 1189 ] ;
1170 - sp:variable _:b48 1190 + sp:variable _:b49
1171 ]) 1191 ])
1172 ] . 1192 ] .
1173 1193
...@@ -1177,7 +1197,7 @@ ep-spin-lib:selectDrillingActivityPurposeType ...@@ -1177,7 +1197,7 @@ ep-spin-lib:selectDrillingActivityPurposeType
1177 rdfs:subClassOf ep-spin-lib:Function ; 1197 rdfs:subClassOf ep-spin-lib:Function ;
1178 spin:body 1198 spin:body
1179 [ rdf:type sp:Select ; 1199 [ rdf:type sp:Select ;
1180 - sp:resultVariables (_:b49) ; 1200 + sp:resultVariables (_:b50) ;
1181 sp:where ([ rdf:type sp:Bind ; 1201 sp:where ([ rdf:type sp:Bind ;
1182 sp:expression 1202 sp:expression
1183 [ rdf:type sp:if ; 1203 [ rdf:type sp:if ;
...@@ -1762,7 +1782,7 @@ ep-spin-lib:selectDrillingActivityPurposeType ...@@ -1762,7 +1782,7 @@ ep-spin-lib:selectDrillingActivityPurposeType
1762 ] 1782 ]
1763 ] 1783 ]
1764 ] ; 1784 ] ;
1765 - sp:variable _:b49 1785 + sp:variable _:b50
1766 ]) 1786 ])
1767 ] . 1787 ] .
1768 1788
...@@ -1772,7 +1792,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ...@@ -1772,7 +1792,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType
1772 rdfs:subClassOf ep-spin-lib:Function ; 1792 rdfs:subClassOf ep-spin-lib:Function ;
1773 spin:body 1793 spin:body
1774 [ rdf:type sp:Select ; 1794 [ rdf:type sp:Select ;
1775 - sp:resultVariables (_:b50) ; 1795 + sp:resultVariables (_:b51) ;
1776 sp:where ([ rdf:type sp:Bind ; 1796 sp:where ([ rdf:type sp:Bind ;
1777 sp:expression 1797 sp:expression
1778 [ rdf:type sp:if ; 1798 [ rdf:type sp:if ;
...@@ -1811,7 +1831,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ...@@ -1811,7 +1831,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType
1811 ] 1831 ]
1812 ] 1832 ]
1813 ] ; 1833 ] ;
1814 - sp:variable _:b50 1834 + sp:variable _:b51
1815 ]) 1835 ])
1816 ] . 1836 ] .
1817 1837
...@@ -1821,7 +1841,7 @@ ep-spin-lib:selectDrillingEquipmentType ...@@ -1821,7 +1841,7 @@ ep-spin-lib:selectDrillingEquipmentType
1821 rdfs:subClassOf ep-spin-lib:Function ; 1841 rdfs:subClassOf ep-spin-lib:Function ;
1822 spin:body 1842 spin:body
1823 [ rdf:type sp:Select ; 1843 [ rdf:type sp:Select ;
1824 - sp:resultVariables (_:b51) ; 1844 + sp:resultVariables (_:b52) ;
1825 sp:where ([ rdf:type sp:Bind ; 1845 sp:where ([ rdf:type sp:Bind ;
1826 sp:expression 1846 sp:expression
1827 [ rdf:type sp:if ; 1847 [ rdf:type sp:if ;
...@@ -2238,7 +2258,7 @@ ep-spin-lib:selectDrillingEquipmentType ...@@ -2238,7 +2258,7 @@ ep-spin-lib:selectDrillingEquipmentType
2238 ] 2258 ]
2239 ] 2259 ]
2240 ] ; 2260 ] ;
2241 - sp:variable _:b51 2261 + sp:variable _:b52
2242 ]) 2262 ])
2243 ] . 2263 ] .
2244 2264
...@@ -2248,7 +2268,7 @@ ep-spin-lib:selectFixedOrMoveableRigType ...@@ -2248,7 +2268,7 @@ ep-spin-lib:selectFixedOrMoveableRigType
2248 rdfs:subClassOf ep-spin-lib:Function ; 2268 rdfs:subClassOf ep-spin-lib:Function ;
2249 spin:body 2269 spin:body
2250 [ rdf:type sp:Select ; 2270 [ rdf:type sp:Select ;
2251 - sp:resultVariables (_:b52) ; 2271 + sp:resultVariables (_:b53) ;
2252 sp:where ([ rdf:type sp:Bind ; 2272 sp:where ([ rdf:type sp:Bind ;
2253 sp:expression 2273 sp:expression
2254 [ rdf:type sp:if ; 2274 [ rdf:type sp:if ;
...@@ -2259,7 +2279,7 @@ ep-spin-lib:selectFixedOrMoveableRigType ...@@ -2259,7 +2279,7 @@ ep-spin-lib:selectFixedOrMoveableRigType
2259 sp:arg2 <http://www.reportinghub.no/ep/schema/facility#FixedRig> ; 2279 sp:arg2 <http://www.reportinghub.no/ep/schema/facility#FixedRig> ;
2260 sp:arg3 <http://www.reportinghub.no/ep/schema/facility#MoveableRig> 2280 sp:arg3 <http://www.reportinghub.no/ep/schema/facility#MoveableRig>
2261 ] ; 2281 ] ;
2262 - sp:variable _:b52 2282 + sp:variable _:b53
2263 ]) 2283 ])
2264 ] . 2284 ] .
2265 2285
...@@ -2269,7 +2289,7 @@ ep-spin-lib:selectFluidType ...@@ -2269,7 +2289,7 @@ ep-spin-lib:selectFluidType
2269 rdfs:subClassOf ep-spin-lib:Function ; 2289 rdfs:subClassOf ep-spin-lib:Function ;
2270 spin:body 2290 spin:body
2271 [ rdf:type sp:Select ; 2291 [ rdf:type sp:Select ;
2272 - sp:resultVariables (_:b53) ; 2292 + sp:resultVariables (_:b54) ;
2273 sp:where ([ rdf:type sp:Bind ; 2293 sp:where ([ rdf:type sp:Bind ;
2274 sp:expression 2294 sp:expression
2275 [ rdf:type sp:if ; 2295 [ rdf:type sp:if ;
...@@ -2301,7 +2321,7 @@ ep-spin-lib:selectFluidType ...@@ -2301,7 +2321,7 @@ ep-spin-lib:selectFluidType
2301 ] 2321 ]
2302 ] 2322 ]
2303 ] ; 2323 ] ;
2304 - sp:variable _:b53 2324 + sp:variable _:b54
2305 ]) 2325 ])
2306 ] . 2326 ] .
2307 2327
...@@ -2311,7 +2331,7 @@ ep-spin-lib:selectGasReadingType ...@@ -2311,7 +2331,7 @@ ep-spin-lib:selectGasReadingType
2311 rdfs:subClassOf ep-spin-lib:Function ; 2331 rdfs:subClassOf ep-spin-lib:Function ;
2312 spin:body 2332 spin:body
2313 [ rdf:type sp:Select ; 2333 [ rdf:type sp:Select ;
2314 - sp:resultVariables (_:b54) ; 2334 + sp:resultVariables (_:b55) ;
2315 sp:where ([ rdf:type sp:Bind ; 2335 sp:where ([ rdf:type sp:Bind ;
2316 sp:expression 2336 sp:expression
2317 [ rdf:type sp:if ; 2337 [ rdf:type sp:if ;
...@@ -2378,7 +2398,7 @@ ep-spin-lib:selectGasReadingType ...@@ -2378,7 +2398,7 @@ ep-spin-lib:selectGasReadingType
2378 ] 2398 ]
2379 ] 2399 ]
2380 ] ; 2400 ] ;
2381 - sp:variable _:b54 2401 + sp:variable _:b55
2382 ]) 2402 ])
2383 ] . 2403 ] .
2384 2404
...@@ -2388,7 +2408,7 @@ ep-spin-lib:selectInnerBarrelType ...@@ -2388,7 +2408,7 @@ ep-spin-lib:selectInnerBarrelType
2388 rdfs:subClassOf ep-spin-lib:Function ; 2408 rdfs:subClassOf ep-spin-lib:Function ;
2389 spin:body 2409 spin:body
2390 [ rdf:type sp:Select ; 2410 [ rdf:type sp:Select ;
2391 - sp:resultVariables (_:b55) ; 2411 + sp:resultVariables (_:b56) ;
2392 sp:where ([ rdf:type sp:Bind ; 2412 sp:where ([ rdf:type sp:Bind ;
2393 sp:expression 2413 sp:expression
2394 [ rdf:type sp:if ; 2414 [ rdf:type sp:if ;
...@@ -2420,7 +2440,7 @@ ep-spin-lib:selectInnerBarrelType ...@@ -2420,7 +2440,7 @@ ep-spin-lib:selectInnerBarrelType
2420 ] 2440 ]
2421 ] 2441 ]
2422 ] ; 2442 ] ;
2423 - sp:variable _:b55 2443 + sp:variable _:b56
2424 ]) 2444 ])
2425 ] . 2445 ] .
2426 2446
...@@ -2430,7 +2450,7 @@ ep-spin-lib:selectLabelOfSystem ...@@ -2430,7 +2450,7 @@ ep-spin-lib:selectLabelOfSystem
2430 rdfs:subClassOf ep-spin-lib:Function ; 2450 rdfs:subClassOf ep-spin-lib:Function ;
2431 spin:body 2451 spin:body
2432 [ rdf:type sp:Select ; 2452 [ rdf:type sp:Select ;
2433 - sp:resultVariables (_:b56) ; 2453 + sp:resultVariables (_:b57) ;
2434 sp:where ([ rdf:type sp:Bind ; 2454 sp:where ([ rdf:type sp:Bind ;
2435 sp:expression 2455 sp:expression
2436 [ rdf:type sp:if ; 2456 [ rdf:type sp:if ;
...@@ -2476,7 +2496,7 @@ ep-spin-lib:selectLabelOfSystem ...@@ -2476,7 +2496,7 @@ ep-spin-lib:selectLabelOfSystem
2476 ] 2496 ]
2477 ] 2497 ]
2478 ] ; 2498 ] ;
2479 - sp:variable _:b56 2499 + sp:variable _:b57
2480 ]) 2500 ])
2481 ] . 2501 ] .
2482 2502
...@@ -2486,7 +2506,7 @@ ep-spin-lib:selectLengthScale ...@@ -2486,7 +2506,7 @@ ep-spin-lib:selectLengthScale
2486 rdfs:subClassOf ep-spin-lib:Function ; 2506 rdfs:subClassOf ep-spin-lib:Function ;
2487 spin:body 2507 spin:body
2488 [ rdf:type sp:Select ; 2508 [ rdf:type sp:Select ;
2489 - sp:resultVariables (_:b57) ; 2509 + sp:resultVariables (_:b58) ;
2490 sp:where ([ rdf:type sp:Bind ; 2510 sp:where ([ rdf:type sp:Bind ;
2491 sp:expression 2511 sp:expression
2492 [ rdf:type sp:if ; 2512 [ rdf:type sp:if ;
...@@ -2567,7 +2587,7 @@ ep-spin-lib:selectLengthScale ...@@ -2567,7 +2587,7 @@ ep-spin-lib:selectLengthScale
2567 ] 2587 ]
2568 ] 2588 ]
2569 ] ; 2589 ] ;
2570 - sp:variable _:b57 2590 + sp:variable _:b58
2571 ]) 2591 ])
2572 ] . 2592 ] .
2573 2593
...@@ -2577,7 +2597,7 @@ ep-spin-lib:selectMassPerUnitLengthScale ...@@ -2577,7 +2597,7 @@ ep-spin-lib:selectMassPerUnitLengthScale
2577 rdfs:subClassOf ep-spin-lib:Function ; 2597 rdfs:subClassOf ep-spin-lib:Function ;
2578 spin:body 2598 spin:body
2579 [ rdf:type sp:Select ; 2599 [ rdf:type sp:Select ;
2580 - sp:resultVariables (_:b58) ; 2600 + sp:resultVariables (_:b59) ;
2581 sp:where ([ rdf:type sp:Bind ; 2601 sp:where ([ rdf:type sp:Bind ;
2582 sp:expression 2602 sp:expression
2583 [ rdf:type sp:if ; 2603 [ rdf:type sp:if ;
...@@ -2588,7 +2608,7 @@ ep-spin-lib:selectMassPerUnitLengthScale ...@@ -2588,7 +2608,7 @@ ep-spin-lib:selectMassPerUnitLengthScale
2588 sp:arg2 <http://www.reportinghub.no/ep/schema/core#pound_foot-1> ; 2608 sp:arg2 <http://www.reportinghub.no/ep/schema/core#pound_foot-1> ;
2589 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 2609 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2590 ] ; 2610 ] ;
2591 - sp:variable _:b58 2611 + sp:variable _:b59
2592 ]) 2612 ])
2593 ] . 2613 ] .
2594 2614
...@@ -2598,7 +2618,7 @@ ep-spin-lib:selectMudClass ...@@ -2598,7 +2618,7 @@ ep-spin-lib:selectMudClass
2598 rdfs:subClassOf ep-spin-lib:Function ; 2618 rdfs:subClassOf ep-spin-lib:Function ;
2599 spin:body 2619 spin:body
2600 [ rdf:type sp:Select ; 2620 [ rdf:type sp:Select ;
2601 - sp:resultVariables (_:b59) ; 2621 + sp:resultVariables (_:b60) ;
2602 sp:where ([ rdf:type sp:Bind ; 2622 sp:where ([ rdf:type sp:Bind ;
2603 sp:expression 2623 sp:expression
2604 [ rdf:type sp:if ; 2624 [ rdf:type sp:if ;
...@@ -2623,7 +2643,7 @@ ep-spin-lib:selectMudClass ...@@ -2623,7 +2643,7 @@ ep-spin-lib:selectMudClass
2623 ] 2643 ]
2624 ] 2644 ]
2625 ] ; 2645 ] ;
2626 - sp:variable _:b59 2646 + sp:variable _:b60
2627 ]) 2647 ])
2628 ] . 2648 ] .
2629 2649
...@@ -2633,7 +2653,7 @@ ep-spin-lib:selectPlaneAngleScale ...@@ -2633,7 +2653,7 @@ ep-spin-lib:selectPlaneAngleScale
2633 rdfs:subClassOf ep-spin-lib:Function ; 2653 rdfs:subClassOf ep-spin-lib:Function ;
2634 spin:body 2654 spin:body
2635 [ rdf:type sp:Select ; 2655 [ rdf:type sp:Select ;
2636 - sp:resultVariables (_:b60) ; 2656 + sp:resultVariables (_:b61) ;
2637 sp:where ([ rdf:type sp:Bind ; 2657 sp:where ([ rdf:type sp:Bind ;
2638 sp:expression 2658 sp:expression
2639 [ rdf:type sp:if ; 2659 [ rdf:type sp:if ;
...@@ -2644,7 +2664,7 @@ ep-spin-lib:selectPlaneAngleScale ...@@ -2644,7 +2664,7 @@ ep-spin-lib:selectPlaneAngleScale
2644 sp:arg2 <http://www.reportinghub.no/ep/schema/core#degreesOfAngle> ; 2664 sp:arg2 <http://www.reportinghub.no/ep/schema/core#degreesOfAngle> ;
2645 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 2665 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2646 ] ; 2666 ] ;
2647 - sp:variable _:b60 2667 + sp:variable _:b61
2648 ]) 2668 ])
2649 ] . 2669 ] .
2650 2670
...@@ -2654,7 +2674,7 @@ ep-spin-lib:selectPlasticViscosityScale ...@@ -2654,7 +2674,7 @@ ep-spin-lib:selectPlasticViscosityScale
2654 rdfs:subClassOf ep-spin-lib:Function ; 2674 rdfs:subClassOf ep-spin-lib:Function ;
2655 spin:body 2675 spin:body
2656 [ rdf:type sp:Select ; 2676 [ rdf:type sp:Select ;
2657 - sp:resultVariables (_:b61) ; 2677 + sp:resultVariables (_:b62) ;
2658 sp:where ([ rdf:type sp:Bind ; 2678 sp:where ([ rdf:type sp:Bind ;
2659 sp:expression 2679 sp:expression
2660 [ rdf:type sp:if ; 2680 [ rdf:type sp:if ;
...@@ -2728,7 +2748,7 @@ ep-spin-lib:selectPlasticViscosityScale ...@@ -2728,7 +2748,7 @@ ep-spin-lib:selectPlasticViscosityScale
2728 ] 2748 ]
2729 ] 2749 ]
2730 ] ; 2750 ] ;
2731 - sp:variable _:b61 2751 + sp:variable _:b62
2732 ]) 2752 ])
2733 ] . 2753 ] .
2734 2754
...@@ -2738,7 +2758,7 @@ ep-spin-lib:selectPorePressureDeterminationType ...@@ -2738,7 +2758,7 @@ ep-spin-lib:selectPorePressureDeterminationType
2738 rdfs:subClassOf ep-spin-lib:Function ; 2758 rdfs:subClassOf ep-spin-lib:Function ;
2739 spin:body 2759 spin:body
2740 [ rdf:type sp:Select ; 2760 [ rdf:type sp:Select ;
2741 - sp:resultVariables (_:b62) ; 2761 + sp:resultVariables (_:b63) ;
2742 sp:where ([ rdf:type sp:Bind ; 2762 sp:where ([ rdf:type sp:Bind ;
2743 sp:expression 2763 sp:expression
2744 [ rdf:type sp:if ; 2764 [ rdf:type sp:if ;
...@@ -2756,7 +2776,7 @@ ep-spin-lib:selectPorePressureDeterminationType ...@@ -2756,7 +2776,7 @@ ep-spin-lib:selectPorePressureDeterminationType
2756 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#PorePressureDetermination> 2776 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#PorePressureDetermination>
2757 ] 2777 ]
2758 ] ; 2778 ] ;
2759 - sp:variable _:b62 2779 + sp:variable _:b63
2760 ]) 2780 ])
2761 ] . 2781 ] .
2762 2782
...@@ -2766,7 +2786,7 @@ ep-spin-lib:selectPressureScale ...@@ -2766,7 +2786,7 @@ ep-spin-lib:selectPressureScale
2766 rdfs:subClassOf ep-spin-lib:Function ; 2786 rdfs:subClassOf ep-spin-lib:Function ;
2767 spin:body 2787 spin:body
2768 [ rdf:type sp:Select ; 2788 [ rdf:type sp:Select ;
2769 - sp:resultVariables (_:b63) ; 2789 + sp:resultVariables (_:b64) ;
2770 sp:where ([ rdf:type sp:Bind ; 2790 sp:where ([ rdf:type sp:Bind ;
2771 sp:expression 2791 sp:expression
2772 [ rdf:type sp:if ; 2792 [ rdf:type sp:if ;
...@@ -2805,7 +2825,7 @@ ep-spin-lib:selectPressureScale ...@@ -2805,7 +2825,7 @@ ep-spin-lib:selectPressureScale
2805 ] 2825 ]
2806 ] 2826 ]
2807 ] ; 2827 ] ;
2808 - sp:variable _:b63 2828 + sp:variable _:b64
2809 ]) 2829 ])
2810 ] . 2830 ] .
2811 2831
...@@ -2815,7 +2835,7 @@ ep-spin-lib:selectPressureTestType ...@@ -2815,7 +2835,7 @@ ep-spin-lib:selectPressureTestType
2815 rdfs:subClassOf ep-spin-lib:Function ; 2835 rdfs:subClassOf ep-spin-lib:Function ;
2816 spin:body 2836 spin:body
2817 [ rdf:type sp:Select ; 2837 [ rdf:type sp:Select ;
2818 - sp:resultVariables (_:b64) ; 2838 + sp:resultVariables (_:b65) ;
2819 sp:where ([ rdf:type sp:Bind ; 2839 sp:where ([ rdf:type sp:Bind ;
2820 sp:expression 2840 sp:expression
2821 [ rdf:type sp:if ; 2841 [ rdf:type sp:if ;
...@@ -2833,7 +2853,7 @@ ep-spin-lib:selectPressureTestType ...@@ -2833,7 +2853,7 @@ ep-spin-lib:selectPressureTestType
2833 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellBorePressureTest> 2853 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellBorePressureTest>
2834 ] 2854 ]
2835 ] ; 2855 ] ;
2836 - sp:variable _:b64 2856 + sp:variable _:b65
2837 ]) 2857 ])
2838 ] . 2858 ] .
2839 2859
...@@ -2843,7 +2863,7 @@ ep-spin-lib:selectSpecificMassScale ...@@ -2843,7 +2863,7 @@ ep-spin-lib:selectSpecificMassScale
2843 rdfs:subClassOf ep-spin-lib:Function ; 2863 rdfs:subClassOf ep-spin-lib:Function ;
2844 spin:body 2864 spin:body
2845 [ rdf:type sp:Select ; 2865 [ rdf:type sp:Select ;
2846 - sp:resultVariables (_:b65) ; 2866 + sp:resultVariables (_:b66) ;
2847 sp:where ([ rdf:type sp:Bind ; 2867 sp:where ([ rdf:type sp:Bind ;
2848 sp:expression 2868 sp:expression
2849 [ rdf:type sp:if ; 2869 [ rdf:type sp:if ;
...@@ -2854,7 +2874,7 @@ ep-spin-lib:selectSpecificMassScale ...@@ -2854,7 +2874,7 @@ ep-spin-lib:selectSpecificMassScale
2854 sp:arg2 <http://www.reportinghub.no/ep/schema/core#partPerMillionByMass> ; 2874 sp:arg2 <http://www.reportinghub.no/ep/schema/core#partPerMillionByMass> ;
2855 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 2875 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2856 ] ; 2876 ] ;
2857 - sp:variable _:b65 2877 + sp:variable _:b66
2858 ]) 2878 ])
2859 ] . 2879 ] .
2860 2880
...@@ -2864,7 +2884,7 @@ ep-spin-lib:selectSpecificVolumeScale ...@@ -2864,7 +2884,7 @@ ep-spin-lib:selectSpecificVolumeScale
2864 rdfs:subClassOf ep-spin-lib:Function ; 2884 rdfs:subClassOf ep-spin-lib:Function ;
2865 spin:body 2885 spin:body
2866 [ rdf:type sp:Select ; 2886 [ rdf:type sp:Select ;
2867 - sp:resultVariables (_:b66) ; 2887 + sp:resultVariables (_:b67) ;
2868 sp:where ([ rdf:type sp:Bind ; 2888 sp:where ([ rdf:type sp:Bind ;
2869 sp:expression 2889 sp:expression
2870 [ rdf:type sp:if ; 2890 [ rdf:type sp:if ;
...@@ -2924,7 +2944,7 @@ ep-spin-lib:selectSpecificVolumeScale ...@@ -2924,7 +2944,7 @@ ep-spin-lib:selectSpecificVolumeScale
2924 ] 2944 ]
2925 ] 2945 ]
2926 ] ; 2946 ] ;
2927 - sp:variable _:b66 2947 + sp:variable _:b67
2928 ]) 2948 ])
2929 ] . 2949 ] .
2930 2950
...@@ -2934,7 +2954,7 @@ ep-spin-lib:selectSpeedScale ...@@ -2934,7 +2954,7 @@ ep-spin-lib:selectSpeedScale
2934 rdfs:subClassOf ep-spin-lib:Function ; 2954 rdfs:subClassOf ep-spin-lib:Function ;
2935 spin:body 2955 spin:body
2936 [ rdf:type sp:Select ; 2956 [ rdf:type sp:Select ;
2937 - sp:resultVariables (_:b67) ; 2957 + sp:resultVariables (_:b68) ;
2938 sp:where ([ rdf:type sp:Bind ; 2958 sp:where ([ rdf:type sp:Bind ;
2939 sp:expression 2959 sp:expression
2940 [ rdf:type sp:if ; 2960 [ rdf:type sp:if ;
...@@ -2945,7 +2965,7 @@ ep-spin-lib:selectSpeedScale ...@@ -2945,7 +2965,7 @@ ep-spin-lib:selectSpeedScale
2945 sp:arg2 <http://www.reportinghub.no/ep/schema/core#metre_hour-1> ; 2965 sp:arg2 <http://www.reportinghub.no/ep/schema/core#metre_hour-1> ;
2946 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 2966 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2947 ] ; 2967 ] ;
2948 - sp:variable _:b67 2968 + sp:variable _:b68
2949 ]) 2969 ])
2950 ] . 2970 ] .
2951 2971
...@@ -2955,7 +2975,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale ...@@ -2955,7 +2975,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale
2955 rdfs:subClassOf ep-spin-lib:Function ; 2975 rdfs:subClassOf ep-spin-lib:Function ;
2956 spin:body 2976 spin:body
2957 [ rdf:type sp:Select ; 2977 [ rdf:type sp:Select ;
2958 - sp:resultVariables (_:b68) ; 2978 + sp:resultVariables (_:b69) ;
2959 sp:where ([ rdf:type sp:Bind ; 2979 sp:where ([ rdf:type sp:Bind ;
2960 sp:expression 2980 sp:expression
2961 [ rdf:type sp:if ; 2981 [ rdf:type sp:if ;
...@@ -2973,7 +2993,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale ...@@ -2973,7 +2993,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale
2973 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 2993 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2974 ] 2994 ]
2975 ] ; 2995 ] ;
2976 - sp:variable _:b68 2996 + sp:variable _:b69
2977 ]) 2997 ])
2978 ] . 2998 ] .
2979 2999
...@@ -2983,7 +3003,7 @@ ep-spin-lib:selectTemperatureScale ...@@ -2983,7 +3003,7 @@ ep-spin-lib:selectTemperatureScale
2983 rdfs:subClassOf ep-spin-lib:Function ; 3003 rdfs:subClassOf ep-spin-lib:Function ;
2984 spin:body 3004 spin:body
2985 [ rdf:type sp:Select ; 3005 [ rdf:type sp:Select ;
2986 - sp:resultVariables (_:b69) ; 3006 + sp:resultVariables (_:b70) ;
2987 sp:where ([ rdf:type sp:Bind ; 3007 sp:where ([ rdf:type sp:Bind ;
2988 sp:expression 3008 sp:expression
2989 [ rdf:type sp:if ; 3009 [ rdf:type sp:if ;
...@@ -2994,7 +3014,7 @@ ep-spin-lib:selectTemperatureScale ...@@ -2994,7 +3014,7 @@ ep-spin-lib:selectTemperatureScale
2994 sp:arg2 <http://www.reportinghub.no/ep/schema/core#celsius> ; 3014 sp:arg2 <http://www.reportinghub.no/ep/schema/core#celsius> ;
2995 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3015 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
2996 ] ; 3016 ] ;
2997 - sp:variable _:b69 3017 + sp:variable _:b70
2998 ]) 3018 ])
2999 ] . 3019 ] .
3000 3020
...@@ -3004,7 +3024,7 @@ ep-spin-lib:selectTimeDurationScale ...@@ -3004,7 +3024,7 @@ ep-spin-lib:selectTimeDurationScale
3004 rdfs:subClassOf ep-spin-lib:Function ; 3024 rdfs:subClassOf ep-spin-lib:Function ;
3005 spin:body 3025 spin:body
3006 [ rdf:type sp:Select ; 3026 [ rdf:type sp:Select ;
3007 - sp:resultVariables (_:b70) ; 3027 + sp:resultVariables (_:b71) ;
3008 sp:where ([ rdf:type sp:Bind ; 3028 sp:where ([ rdf:type sp:Bind ;
3009 sp:expression 3029 sp:expression
3010 [ rdf:type sp:if ; 3030 [ rdf:type sp:if ;
...@@ -3050,7 +3070,7 @@ ep-spin-lib:selectTimeDurationScale ...@@ -3050,7 +3070,7 @@ ep-spin-lib:selectTimeDurationScale
3050 ] 3070 ]
3051 ] 3071 ]
3052 ] ; 3072 ] ;
3053 - sp:variable _:b70 3073 + sp:variable _:b71
3054 ]) 3074 ])
3055 ] . 3075 ] .
3056 3076
...@@ -3060,7 +3080,7 @@ ep-spin-lib:selectTubeType ...@@ -3060,7 +3080,7 @@ ep-spin-lib:selectTubeType
3060 rdfs:subClassOf ep-spin-lib:Function ; 3080 rdfs:subClassOf ep-spin-lib:Function ;
3061 spin:body 3081 spin:body
3062 [ rdf:type sp:Select ; 3082 [ rdf:type sp:Select ;
3063 - sp:resultVariables (_:b71) ; 3083 + sp:resultVariables (_:b72) ;
3064 sp:where ([ rdf:type sp:Bind ; 3084 sp:where ([ rdf:type sp:Bind ;
3065 sp:expression 3085 sp:expression
3066 [ rdf:type sp:if ; 3086 [ rdf:type sp:if ;
...@@ -3085,7 +3105,7 @@ ep-spin-lib:selectTubeType ...@@ -3085,7 +3105,7 @@ ep-spin-lib:selectTubeType
3085 ] 3105 ]
3086 ] 3106 ]
3087 ] ; 3107 ] ;
3088 - sp:variable _:b71 3108 + sp:variable _:b72
3089 ]) 3109 ])
3090 ] . 3110 ] .
3091 3111
...@@ -3095,7 +3115,7 @@ ep-spin-lib:selectVolumeScale ...@@ -3095,7 +3115,7 @@ ep-spin-lib:selectVolumeScale
3095 rdfs:subClassOf ep-spin-lib:Function ; 3115 rdfs:subClassOf ep-spin-lib:Function ;
3096 spin:body 3116 spin:body
3097 [ rdf:type sp:Select ; 3117 [ rdf:type sp:Select ;
3098 - sp:resultVariables (_:b72) ; 3118 + sp:resultVariables (_:b73) ;
3099 sp:where ([ rdf:type sp:Bind ; 3119 sp:where ([ rdf:type sp:Bind ;
3100 sp:expression 3120 sp:expression
3101 [ rdf:type sp:if ; 3121 [ rdf:type sp:if ;
...@@ -3120,7 +3140,7 @@ ep-spin-lib:selectVolumeScale ...@@ -3120,7 +3140,7 @@ ep-spin-lib:selectVolumeScale
3120 ] 3140 ]
3121 ] 3141 ]
3122 ] ; 3142 ] ;
3123 - sp:variable _:b72 3143 + sp:variable _:b73
3124 ]) 3144 ])
3125 ] . 3145 ] .
3126 3146
...@@ -3130,7 +3150,7 @@ ep-spin-lib:selectVolumetricFlowRateScale ...@@ -3130,7 +3150,7 @@ ep-spin-lib:selectVolumetricFlowRateScale
3130 rdfs:subClassOf ep-spin-lib:Function ; 3150 rdfs:subClassOf ep-spin-lib:Function ;
3131 spin:body 3151 spin:body
3132 [ rdf:type sp:Select ; 3152 [ rdf:type sp:Select ;
3133 - sp:resultVariables (_:b73) ; 3153 + sp:resultVariables (_:b74) ;
3134 sp:where ([ rdf:type sp:Bind ; 3154 sp:where ([ rdf:type sp:Bind ;
3135 sp:expression 3155 sp:expression
3136 [ rdf:type sp:if ; 3156 [ rdf:type sp:if ;
...@@ -3155,7 +3175,7 @@ ep-spin-lib:selectVolumetricFlowRateScale ...@@ -3155,7 +3175,7 @@ ep-spin-lib:selectVolumetricFlowRateScale
3155 ] 3175 ]
3156 ] 3176 ]
3157 ] ; 3177 ] ;
3158 - sp:variable _:b73 3178 + sp:variable _:b74
3159 ]) 3179 ])
3160 ] . 3180 ] .
3161 3181
...@@ -3165,7 +3185,7 @@ ep-spin-lib:selectWellBoreDrillingType ...@@ -3165,7 +3185,7 @@ ep-spin-lib:selectWellBoreDrillingType
3165 rdfs:subClassOf ep-spin-lib:Function ; 3185 rdfs:subClassOf ep-spin-lib:Function ;
3166 spin:body 3186 spin:body
3167 [ rdf:type sp:Select ; 3187 [ rdf:type sp:Select ;
3168 - sp:resultVariables (_:b74) ; 3188 + sp:resultVariables (_:b75) ;
3169 sp:where ([ rdf:type sp:Bind ; 3189 sp:where ([ rdf:type sp:Bind ;
3170 sp:expression 3190 sp:expression
3171 [ rdf:type sp:if ; 3191 [ rdf:type sp:if ;
...@@ -3211,7 +3231,7 @@ ep-spin-lib:selectWellBoreDrillingType ...@@ -3211,7 +3231,7 @@ ep-spin-lib:selectWellBoreDrillingType
3211 ] 3231 ]
3212 ] 3232 ]
3213 ] ; 3233 ] ;
3214 - sp:variable _:b74 3234 + sp:variable _:b75
3215 ]) 3235 ])
3216 ] . 3236 ] .
3217 3237
...@@ -3221,7 +3241,7 @@ ep-spin-lib:selectWellBoreHphtType ...@@ -3221,7 +3241,7 @@ ep-spin-lib:selectWellBoreHphtType
3221 rdfs:subClassOf ep-spin-lib:Function ; 3241 rdfs:subClassOf ep-spin-lib:Function ;
3222 spin:body 3242 spin:body
3223 [ rdf:type sp:Select ; 3243 [ rdf:type sp:Select ;
3224 - sp:resultVariables (_:b75) ; 3244 + sp:resultVariables (_:b76) ;
3225 sp:where ([ rdf:type sp:Bind ; 3245 sp:where ([ rdf:type sp:Bind ;
3226 sp:expression 3246 sp:expression
3227 [ rdf:type sp:if ; 3247 [ rdf:type sp:if ;
...@@ -3232,7 +3252,7 @@ ep-spin-lib:selectWellBoreHphtType ...@@ -3232,7 +3252,7 @@ ep-spin-lib:selectWellBoreHphtType
3232 sp:arg2 <http://www.reportinghub.no/ep/schema/well#HphtWellBore> ; 3252 sp:arg2 <http://www.reportinghub.no/ep/schema/well#HphtWellBore> ;
3233 sp:arg3 <http://www.reportinghub.no/ep/schema/well#NotHphtWellBore> 3253 sp:arg3 <http://www.reportinghub.no/ep/schema/well#NotHphtWellBore>
3234 ] ; 3254 ] ;
3235 - sp:variable _:b75 3255 + sp:variable _:b76
3236 ]) 3256 ])
3237 ] . 3257 ] .
3238 3258
...@@ -3242,7 +3262,7 @@ ep-spin-lib:selectWellBoreTightnessType ...@@ -3242,7 +3262,7 @@ ep-spin-lib:selectWellBoreTightnessType
3242 rdfs:subClassOf ep-spin-lib:Function ; 3262 rdfs:subClassOf ep-spin-lib:Function ;
3243 spin:body 3263 spin:body
3244 [ rdf:type sp:Select ; 3264 [ rdf:type sp:Select ;
3245 - sp:resultVariables (_:b76) ; 3265 + sp:resultVariables (_:b77) ;
3246 sp:where ([ rdf:type sp:Bind ; 3266 sp:where ([ rdf:type sp:Bind ;
3247 sp:expression 3267 sp:expression
3248 [ rdf:type sp:if ; 3268 [ rdf:type sp:if ;
...@@ -3253,7 +3273,7 @@ ep-spin-lib:selectWellBoreTightnessType ...@@ -3253,7 +3273,7 @@ ep-spin-lib:selectWellBoreTightnessType
3253 sp:arg2 <http://www.reportinghub.no/ep/schema/well#TightWellBore> ; 3273 sp:arg2 <http://www.reportinghub.no/ep/schema/well#TightWellBore> ;
3254 sp:arg3 <http://www.reportinghub.no/ep/schema/well#LeakyWellBore> 3274 sp:arg3 <http://www.reportinghub.no/ep/schema/well#LeakyWellBore>
3255 ] ; 3275 ] ;
3256 - sp:variable _:b76 3276 + sp:variable _:b77
3257 ]) 3277 ])
3258 ] . 3278 ] .
3259 3279
...@@ -3263,7 +3283,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType ...@@ -3263,7 +3283,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType
3263 rdfs:subClassOf ep-spin-lib:Function ; 3283 rdfs:subClassOf ep-spin-lib:Function ;
3264 spin:body 3284 spin:body
3265 [ rdf:type sp:Select ; 3285 [ rdf:type sp:Select ;
3266 - sp:resultVariables (_:b77) ; 3286 + sp:resultVariables (_:b78) ;
3267 sp:where ([ rdf:type sp:Bind ; 3287 sp:where ([ rdf:type sp:Bind ;
3268 sp:expression 3288 sp:expression
3269 [ rdf:type sp:if ; 3289 [ rdf:type sp:if ;
...@@ -3274,7 +3294,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType ...@@ -3274,7 +3294,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType
3274 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithBottomPlug> ; 3294 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithBottomPlug> ;
3275 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutBottomPlug> 3295 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutBottomPlug>
3276 ] ; 3296 ] ;
3277 - sp:variable _:b77 3297 + sp:variable _:b78
3278 ]) 3298 ])
3279 ] . 3299 ] .
3280 3300
...@@ -3284,7 +3304,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType ...@@ -3284,7 +3304,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType
3284 rdfs:subClassOf ep-spin-lib:Function ; 3304 rdfs:subClassOf ep-spin-lib:Function ;
3285 spin:body 3305 spin:body
3286 [ rdf:type sp:Select ; 3306 [ rdf:type sp:Select ;
3287 - sp:resultVariables (_:b78) ; 3307 + sp:resultVariables (_:b79) ;
3288 sp:where ([ rdf:type sp:Bind ; 3308 sp:where ([ rdf:type sp:Bind ;
3289 sp:expression 3309 sp:expression
3290 [ rdf:type sp:if ; 3310 [ rdf:type sp:if ;
...@@ -3295,7 +3315,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType ...@@ -3295,7 +3315,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType
3295 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingReciprocation> ; 3315 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingReciprocation> ;
3296 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingReciprocation> 3316 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingReciprocation>
3297 ] ; 3317 ] ;
3298 - sp:variable _:b78 3318 + sp:variable _:b79
3299 ]) 3319 ])
3300 ] . 3320 ] .
3301 3321
...@@ -3305,7 +3325,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType ...@@ -3305,7 +3325,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType
3305 rdfs:subClassOf ep-spin-lib:Function ; 3325 rdfs:subClassOf ep-spin-lib:Function ;
3306 spin:body 3326 spin:body
3307 [ rdf:type sp:Select ; 3327 [ rdf:type sp:Select ;
3308 - sp:resultVariables (_:b79) ; 3328 + sp:resultVariables (_:b80) ;
3309 sp:where ([ rdf:type sp:Bind ; 3329 sp:where ([ rdf:type sp:Bind ;
3310 sp:expression 3330 sp:expression
3311 [ rdf:type sp:if ; 3331 [ rdf:type sp:if ;
...@@ -3316,7 +3336,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType ...@@ -3316,7 +3336,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType
3316 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingRotation> ; 3336 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingRotation> ;
3317 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingRotation> 3337 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingRotation>
3318 ] ; 3338 ] ;
3319 - sp:variable _:b79 3339 + sp:variable _:b80
3320 ]) 3340 ])
3321 ] . 3341 ] .
3322 3342
...@@ -3326,7 +3346,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType ...@@ -3326,7 +3346,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType
3326 rdfs:subClassOf ep-spin-lib:Function ; 3346 rdfs:subClassOf ep-spin-lib:Function ;
3327 spin:body 3347 spin:body
3328 [ rdf:type sp:Select ; 3348 [ rdf:type sp:Select ;
3329 - sp:resultVariables (_:b80) ; 3349 + sp:resultVariables (_:b81) ;
3330 sp:where ([ rdf:type sp:Bind ; 3350 sp:where ([ rdf:type sp:Bind ;
3331 sp:expression 3351 sp:expression
3332 [ rdf:type sp:if ; 3352 [ rdf:type sp:if ;
...@@ -3337,7 +3357,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType ...@@ -3337,7 +3357,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType
3337 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithFloatHolding> ; 3357 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithFloatHolding> ;
3338 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutFloatHolding> 3358 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutFloatHolding>
3339 ] ; 3359 ] ;
3340 - sp:variable _:b80 3360 + sp:variable _:b81
3341 ]) 3361 ])
3342 ] . 3362 ] .
3343 3363
...@@ -3347,7 +3367,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType ...@@ -3347,7 +3367,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType
3347 rdfs:subClassOf ep-spin-lib:Function ; 3367 rdfs:subClassOf ep-spin-lib:Function ;
3348 spin:body 3368 spin:body
3349 [ rdf:type sp:Select ; 3369 [ rdf:type sp:Select ;
3350 - sp:resultVariables (_:b81) ; 3370 + sp:resultVariables (_:b82) ;
3351 sp:where ([ rdf:type sp:Bind ; 3371 sp:where ([ rdf:type sp:Bind ;
3352 sp:expression 3372 sp:expression
3353 [ rdf:type sp:if ; 3373 [ rdf:type sp:if ;
...@@ -3358,7 +3378,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType ...@@ -3358,7 +3378,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType
3358 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithPlugBumping> ; 3378 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithPlugBumping> ;
3359 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutPlugBumping> 3379 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutPlugBumping>
3360 ] ; 3380 ] ;
3361 - sp:variable _:b81 3381 + sp:variable _:b82
3362 ]) 3382 ])
3363 ] . 3383 ] .
3364 3384
...@@ -3368,7 +3388,7 @@ ep-spin-lib:selectWellCementJobTopPlugType ...@@ -3368,7 +3388,7 @@ ep-spin-lib:selectWellCementJobTopPlugType
3368 rdfs:subClassOf ep-spin-lib:Function ; 3388 rdfs:subClassOf ep-spin-lib:Function ;
3369 spin:body 3389 spin:body
3370 [ rdf:type sp:Select ; 3390 [ rdf:type sp:Select ;
3371 - sp:resultVariables (_:b82) ; 3391 + sp:resultVariables (_:b83) ;
3372 sp:where ([ rdf:type sp:Bind ; 3392 sp:where ([ rdf:type sp:Bind ;
3373 sp:expression 3393 sp:expression
3374 [ rdf:type sp:if ; 3394 [ rdf:type sp:if ;
...@@ -3379,7 +3399,7 @@ ep-spin-lib:selectWellCementJobTopPlugType ...@@ -3379,7 +3399,7 @@ ep-spin-lib:selectWellCementJobTopPlugType
3379 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithTopPlug> ; 3399 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithTopPlug> ;
3380 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutTopPlug> 3400 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutTopPlug>
3381 ] ; 3401 ] ;
3382 - sp:variable _:b82 3402 + sp:variable _:b83
3383 ]) 3403 ])
3384 ] . 3404 ] .
3385 3405
...@@ -3389,7 +3409,7 @@ ep-spin-lib:selectWellCementJobType ...@@ -3389,7 +3409,7 @@ ep-spin-lib:selectWellCementJobType
3389 rdfs:subClassOf ep-spin-lib:Function ; 3409 rdfs:subClassOf ep-spin-lib:Function ;
3390 spin:body 3410 spin:body
3391 [ rdf:type sp:Select ; 3411 [ rdf:type sp:Select ;
3392 - sp:resultVariables (_:b83) ; 3412 + sp:resultVariables (_:b84) ;
3393 sp:where ([ rdf:type sp:Bind ; 3413 sp:where ([ rdf:type sp:Bind ;
3394 sp:expression 3414 sp:expression
3395 [ rdf:type sp:if ; 3415 [ rdf:type sp:if ;
...@@ -3421,7 +3441,7 @@ ep-spin-lib:selectWellCementJobType ...@@ -3421,7 +3441,7 @@ ep-spin-lib:selectWellCementJobType
3421 ] 3441 ]
3422 ] 3442 ]
3423 ] ; 3443 ] ;
3424 - sp:variable _:b83 3444 + sp:variable _:b84
3425 ]) 3445 ])
3426 ] . 3446 ] .
3427 3447
...@@ -3431,7 +3451,7 @@ ep-spin-lib:selectWellControlIncidentType ...@@ -3431,7 +3451,7 @@ ep-spin-lib:selectWellControlIncidentType
3431 rdfs:subClassOf ep-spin-lib:Function ; 3451 rdfs:subClassOf ep-spin-lib:Function ;
3432 spin:body 3452 spin:body
3433 [ rdf:type sp:Select ; 3453 [ rdf:type sp:Select ;
3434 - sp:resultVariables (_:b84) ; 3454 + sp:resultVariables (_:b85) ;
3435 sp:where ([ rdf:type sp:Bind ; 3455 sp:where ([ rdf:type sp:Bind ;
3436 sp:expression 3456 sp:expression
3437 [ rdf:type sp:if ; 3457 [ rdf:type sp:if ;
...@@ -3463,7 +3483,7 @@ ep-spin-lib:selectWellControlIncidentType ...@@ -3463,7 +3483,7 @@ ep-spin-lib:selectWellControlIncidentType
3463 ] 3483 ]
3464 ] 3484 ]
3465 ] ; 3485 ] ;
3466 - sp:variable _:b84 3486 + sp:variable _:b85
3467 ]) 3487 ])
3468 ] . 3488 ] .
3469 3489
...@@ -3473,7 +3493,7 @@ ep-spin-lib:selectWellKillingType ...@@ -3473,7 +3493,7 @@ ep-spin-lib:selectWellKillingType
3473 rdfs:subClassOf ep-spin-lib:Function ; 3493 rdfs:subClassOf ep-spin-lib:Function ;
3474 spin:body 3494 spin:body
3475 [ rdf:type sp:Select ; 3495 [ rdf:type sp:Select ;
3476 - sp:resultVariables (_:b85) ; 3496 + sp:resultVariables (_:b86) ;
3477 sp:where ([ rdf:type sp:Bind ; 3497 sp:where ([ rdf:type sp:Bind ;
3478 sp:expression 3498 sp:expression
3479 [ rdf:type sp:if ; 3499 [ rdf:type sp:if ;
...@@ -3519,7 +3539,7 @@ ep-spin-lib:selectWellKillingType ...@@ -3519,7 +3539,7 @@ ep-spin-lib:selectWellKillingType
3519 ] 3539 ]
3520 ] 3540 ]
3521 ] ; 3541 ] ;
3522 - sp:variable _:b85 3542 + sp:variable _:b86
3523 ]) 3543 ])
3524 ] . 3544 ] .
3525 3545
...@@ -3529,7 +3549,7 @@ ep-spin-lib:selectWellTestType ...@@ -3529,7 +3549,7 @@ ep-spin-lib:selectWellTestType
3529 rdfs:subClassOf ep-spin-lib:Function ; 3549 rdfs:subClassOf ep-spin-lib:Function ;
3530 spin:body 3550 spin:body
3531 [ rdf:type sp:Select ; 3551 [ rdf:type sp:Select ;
3532 - sp:resultVariables (_:b86) ; 3552 + sp:resultVariables (_:b87) ;
3533 sp:where ([ rdf:type sp:Bind ; 3553 sp:where ([ rdf:type sp:Bind ;
3534 sp:expression 3554 sp:expression
3535 [ rdf:type sp:if ; 3555 [ rdf:type sp:if ;
...@@ -3547,7 +3567,7 @@ ep-spin-lib:selectWellTestType ...@@ -3547,7 +3567,7 @@ ep-spin-lib:selectWellTestType
3547 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellTest> 3567 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellTest>
3548 ] 3568 ]
3549 ] ; 3569 ] ;
3550 - sp:variable _:b86 3570 + sp:variable _:b87
3551 ]) 3571 ])
3552 ] . 3572 ] .
3553 3573
...@@ -3557,7 +3577,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType ...@@ -3557,7 +3577,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType
3557 rdfs:subClassOf ep-spin-lib:Function ; 3577 rdfs:subClassOf ep-spin-lib:Function ;
3558 spin:body 3578 spin:body
3559 [ rdf:type sp:Select ; 3579 [ rdf:type sp:Select ;
3560 - sp:resultVariables (_:b87) ; 3580 + sp:resultVariables (_:b88) ;
3561 sp:where ([ rdf:type sp:Bind ; 3581 sp:where ([ rdf:type sp:Bind ;
3562 sp:expression 3582 sp:expression
3563 [ rdf:type sp:if ; 3583 [ rdf:type sp:if ;
...@@ -3568,7 +3588,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType ...@@ -3568,7 +3588,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType
3568 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithGoodSeal> ; 3588 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithGoodSeal> ;
3569 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithoutGoodSeal> 3589 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithoutGoodSeal>
3570 ] ; 3590 ] ;
3571 - sp:variable _:b87 3591 + sp:variable _:b88
3572 ]) 3592 ])
3573 ] . 3593 ] .
3574 3594
...@@ -3578,7 +3598,7 @@ ep-spin-lib:selectYieldPointScale ...@@ -3578,7 +3598,7 @@ ep-spin-lib:selectYieldPointScale
3578 rdfs:subClassOf ep-spin-lib:Function ; 3598 rdfs:subClassOf ep-spin-lib:Function ;
3579 spin:body 3599 spin:body
3580 [ rdf:type sp:Select ; 3600 [ rdf:type sp:Select ;
3581 - sp:resultVariables (_:b88) ; 3601 + sp:resultVariables (_:b89) ;
3582 sp:where ([ rdf:type sp:Bind ; 3602 sp:where ([ rdf:type sp:Bind ;
3583 sp:expression 3603 sp:expression
3584 [ rdf:type sp:if ; 3604 [ rdf:type sp:if ;
...@@ -3603,7 +3623,7 @@ ep-spin-lib:selectYieldPointScale ...@@ -3603,7 +3623,7 @@ ep-spin-lib:selectYieldPointScale
3603 ] 3623 ]
3604 ] 3624 ]
3605 ] ; 3625 ] ;
3606 - sp:variable _:b88 3626 + sp:variable _:b89
3607 ]) 3627 ])
3608 ] . 3628 ] .
3609 3629
...@@ -3612,257 +3632,260 @@ ddr:TTUC_Enumeration_1 ...@@ -3612,257 +3632,260 @@ ddr:TTUC_Enumeration_1
3612 rdfs:label "Enumeration"^^xsd:string ; 3632 rdfs:label "Enumeration"^^xsd:string ;
3613 dtype:value ddr:TTUC_degC . 3633 dtype:value ddr:TTUC_degC .
3614 3634
3615 -_:b1 sp:varName "uri"^^xsd:string . 3635 +_:b50
3636 + sp:varName "drillingActivityPurposeType"^^xsd:string .
3616 3637
3617 -_:b2 sp:varName "uri"^^xsd:string . 3638 +_:b49
3639 + sp:varName "drillingActivityOutcomeType"^^xsd:string .
3618 3640
3619 -_:b3 sp:varName "uri"^^xsd:string . 3641 +_:b48
3642 + sp:varName "densityScale"^^xsd:string .
3620 3643
3621 -_:b4 sp:varName "uri"^^xsd:string . 3644 +_:b47
3645 + sp:varName "dailyDrillingReportType"^^xsd:string .
3622 3646
3623 -_:b5 sp:varName "uri"^^xsd:string . 3647 +_:b46
3648 + sp:varName "componentType"^^xsd:string .
3624 3649
3625 -_:b6 sp:varName "uri"^^xsd:string . 3650 +_:b45
3651 + sp:varName "classOfWellDatumObject"^^xsd:string .
3626 3652
3627 -_:b7 sp:varName "uri"^^xsd:string . 3653 +_:b44
3654 + sp:varName "cementingFluidReturnType"^^xsd:string .
3628 3655
3629 -_:b8 sp:varName "uri"^^xsd:string . 3656 +_:b43
3657 + sp:varName "casingRoleType"^^xsd:string .
3630 3658
3631 -_:b9 sp:varName "uri"^^xsd:string . 3659 +_:b42
3660 + sp:varName "activitySuccessType"^^xsd:string .
3632 3661
3633 -_:b10 3662 +_:b41
3663 + sp:varName "t4"^^xsd:string .
3664 +
3665 +_:b40
3666 + sp:varName "t3"^^xsd:string .
3667 +
3668 +_:b39
3669 + sp:varName "t2"^^xsd:string .
3670 +
3671 +_:b38
3672 + sp:varName "t1"^^xsd:string .
3673 +
3674 +_:b37
3675 + sp:varName "t0b"^^xsd:string .
3676 +
3677 +_:b55
3678 + sp:varName "gasReadingType"^^xsd:string .
3679 +
3680 +_:b36
3681 + sp:varName "t0a"^^xsd:string .
3682 +
3683 +_:b35
3684 + sp:varName "s2"^^xsd:string .
3685 +
3686 +_:b34
3687 + sp:varName "s1"^^xsd:string .
3688 +
3689 +_:b33
3690 + sp:varName "normalizedStr"^^xsd:string .
3691 +
3692 +_:b32
3634 sp:varName "uri"^^xsd:string . 3693 sp:varName "uri"^^xsd:string .
3635 3694
3636 -_:b11 3695 +_:b31
3637 sp:varName "uri"^^xsd:string . 3696 sp:varName "uri"^^xsd:string .
3638 3697
3639 -_:b12 3698 +_:b30
3640 sp:varName "uri"^^xsd:string . 3699 sp:varName "uri"^^xsd:string .
3641 3700
3642 -_:b13 3701 +_:b29
3643 sp:varName "uri"^^xsd:string . 3702 sp:varName "uri"^^xsd:string .
3644 3703
3645 -_:b14 3704 +_:b28
3646 sp:varName "uri"^^xsd:string . 3705 sp:varName "uri"^^xsd:string .
3647 3706
3648 -_:b15 3707 +_:b27
3649 sp:varName "uri"^^xsd:string . 3708 sp:varName "uri"^^xsd:string .
3650 3709
3651 -_:b16 3710 +_:b26
3652 sp:varName "uri"^^xsd:string . 3711 sp:varName "uri"^^xsd:string .
3653 3712
3654 -_:b17 3713 +_:b25
3655 sp:varName "uri"^^xsd:string . 3714 sp:varName "uri"^^xsd:string .
3656 3715
3657 -_:b18 3716 +_:b24
3658 sp:varName "uri"^^xsd:string . 3717 sp:varName "uri"^^xsd:string .
3659 3718
3660 -_:b19 3719 +_:b23
3661 sp:varName "uri"^^xsd:string . 3720 sp:varName "uri"^^xsd:string .
3662 3721
3663 -_:b20 3722 +_:b22
3664 sp:varName "uri"^^xsd:string . 3723 sp:varName "uri"^^xsd:string .
3665 3724
3666 _:b21 3725 _:b21
3667 sp:varName "uri"^^xsd:string . 3726 sp:varName "uri"^^xsd:string .
3668 3727
3669 -_:b22 3728 +_:b20
3670 sp:varName "uri"^^xsd:string . 3729 sp:varName "uri"^^xsd:string .
3671 3730
3672 -_:b23 3731 +_:b19
3673 sp:varName "uri"^^xsd:string . 3732 sp:varName "uri"^^xsd:string .
3674 3733
3675 -_:b24 3734 +_:b18
3676 sp:varName "uri"^^xsd:string . 3735 sp:varName "uri"^^xsd:string .
3677 3736
3678 -_:b25 3737 +_:b17
3679 sp:varName "uri"^^xsd:string . 3738 sp:varName "uri"^^xsd:string .
3680 3739
3681 -_:b26 3740 +_:b16
3682 sp:varName "uri"^^xsd:string . 3741 sp:varName "uri"^^xsd:string .
3683 3742
3684 -_:b27 3743 +_:b15
3685 sp:varName "uri"^^xsd:string . 3744 sp:varName "uri"^^xsd:string .
3686 3745
3687 -_:b28 3746 +_:b14
3688 sp:varName "uri"^^xsd:string . 3747 sp:varName "uri"^^xsd:string .
3689 3748
3690 -_:b29 3749 +_:b13
3691 sp:varName "uri"^^xsd:string . 3750 sp:varName "uri"^^xsd:string .
3692 3751
3693 -_:b30 3752 +_:b12
3694 sp:varName "uri"^^xsd:string . 3753 sp:varName "uri"^^xsd:string .
3695 3754
3696 -_:b31 3755 +_:b11
3697 sp:varName "uri"^^xsd:string . 3756 sp:varName "uri"^^xsd:string .
3698 3757
3699 -_:b32 3758 +_:b54
3700 - sp:varName "normalizedStr"^^xsd:string . 3759 + sp:varName "fluidType"^^xsd:string .
3701 3760
3702 -_:b33 3761 +_:b10
3703 - sp:varName "s1"^^xsd:string . 3762 + sp:varName "uri"^^xsd:string .
3704 3763
3705 -_:b34 3764 +_:b9 sp:varName "uri"^^xsd:string .
3706 - sp:varName "s2"^^xsd:string .
3707 3765
3708 -_:b35 3766 +_:b8 sp:varName "uri"^^xsd:string .
3709 - sp:varName "t0a"^^xsd:string .
3710 3767
3711 -_:b36 3768 +_:b7 sp:varName "uri"^^xsd:string .
3712 - sp:varName "t0b"^^xsd:string .
3713 3769
3714 -_:b37 3770 +_:b6 sp:varName "uri"^^xsd:string .
3715 - sp:varName "t1"^^xsd:string .
3716 3771
3717 -_:b38 3772 +_:b4 sp:varName "uri"^^xsd:string .
3718 - sp:varName "t2"^^xsd:string .
3719 3773
3720 -_:b39 3774 +_:b3 sp:varName "uri"^^xsd:string .
3721 - sp:varName "t3"^^xsd:string .
3722 3775
3723 -_:b40 3776 +_:b2 sp:varName "uri"^^xsd:string .
3724 - sp:varName "t4"^^xsd:string .
3725 3777
3726 -_:b41 3778 +_:b1 sp:varName "uri"^^xsd:string .
3727 - sp:varName "activitySuccessType"^^xsd:string .
3728 3779
3729 -_:b42 3780 +_:b53
3730 - sp:varName "casingRoleType"^^xsd:string . 3781 + sp:varName "fixedOrMoveableRigType"^^xsd:string .
3731 3782
3732 -_:b43 3783 +_:b56
3733 - sp:varName "cementingFluidReturnType"^^xsd:string . 3784 + sp:varName "innerBarrelType"^^xsd:string .
3734 3785
3735 -_:b44 3786 +_:b52
3736 - sp:varName "classOfWellDatumObject"^^xsd:string . 3787 + sp:varName "drillingEquipmentType"^^xsd:string .
3737 3788
3738 -_:b45 3789 +_:b51
3739 - sp:varName "componentType"^^xsd:string . 3790 + sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string .
3740 3791
3741 -_:b46 3792 +_:b77
3742 - sp:varName "dailyDrillingReportType"^^xsd:string . 3793 + sp:varName "wellBoreTightnessType"^^xsd:string .
3743 3794
3744 -_:b47 3795 +_:b78
3745 - sp:varName "densityScale"^^xsd:string . 3796 + sp:varName "wellCementJobBottomPlugType"^^xsd:string .
3746 3797
3747 -_:b48 3798 +_:b79
3748 - sp:varName "drillingActivityOutcomeType"^^xsd:string . 3799 + sp:varName "wellCementJobCasingReciprocationType"^^xsd:string .
3749 3800
3750 -_:b49 3801 +_:b80
3751 - sp:varName "drillingActivityPurposeType"^^xsd:string . 3802 + sp:varName "wellCementJobCasingRotationType"^^xsd:string .
3752 3803
3753 -_:b50 3804 +_:b81
3754 - sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string . 3805 + sp:varName "wellCementJobFloatHoldingType"^^xsd:string .
3755 3806
3756 -_:b51 3807 +_:b5 sp:varName "uri"^^xsd:string .
3757 - sp:varName "drillingEquipmentType"^^xsd:string .
3758 3808
3759 -_:b52 3809 +_:b82
3760 - sp:varName "fixedOrMoveableRigType"^^xsd:string . 3810 + sp:varName "wellCementJobPlugBumpingType"^^xsd:string .
3761 3811
3762 -_:b53 3812 +_:b83
3763 - sp:varName "fluidType"^^xsd:string . 3813 + sp:varName "wellCementJobTopPlugType"^^xsd:string .
3764 3814
3765 -_:b54 3815 +_:b84
3766 - sp:varName "gasReadingType"^^xsd:string . 3816 + sp:varName "wellCementJobType"^^xsd:string .
3767 3817
3768 -_:b55 3818 +_:b85
3769 - sp:varName "innerBarrelType"^^xsd:string . 3819 + sp:varName "wellControlIncidentType"^^xsd:string .
3770 3820
3771 -_:b56 3821 +_:b86
3772 - sp:varName "dailyDrillingReportType"^^xsd:string . 3822 + sp:varName "wellKillingType"^^xsd:string .
3773 3823
3774 -_:b57 3824 +_:b87
3775 - sp:varName "lengthScale"^^xsd:string . 3825 + sp:varName "wellTestType"^^xsd:string .
3826 +
3827 +_:b88
3828 + sp:varName "wirelineFormationTestGoodnessOfSealType"^^xsd:string .
3829 +
3830 +_:b89
3831 + sp:varName "yieldPointScale"^^xsd:string .
3776 3832
3777 _:b58 3833 _:b58
3778 - sp:varName "massPerUnitLengthScale"^^xsd:string . 3834 + sp:varName "lengthScale"^^xsd:string .
3779 3835
3780 _:b59 3836 _:b59
3781 - sp:varName "mudClass"^^xsd:string . 3837 + sp:varName "massPerUnitLengthScale"^^xsd:string .
3782 3838
3783 _:b60 3839 _:b60
3784 - sp:varName "angleScale"^^xsd:string . 3840 + sp:varName "mudClass"^^xsd:string .
3785 3841
3786 _:b61 3842 _:b61
3787 - sp:varName "plasticViscosityScale"^^xsd:string . 3843 + sp:varName "angleScale"^^xsd:string .
3788 3844
3789 _:b62 3845 _:b62
3790 - sp:varName "porePressureDeterminationType"^^xsd:string . 3846 + sp:varName "plasticViscosityScale"^^xsd:string .
3791 3847
3792 _:b63 3848 _:b63
3793 - sp:varName "pressureScale"^^xsd:string . 3849 + sp:varName "porePressureDeterminationType"^^xsd:string .
3794 3850
3795 _:b64 3851 _:b64
3796 - sp:varName "pressureTestType"^^xsd:string . 3852 + sp:varName "pressureScale"^^xsd:string .
3853 +
3854 +_:b57
3855 + sp:varName "dailyDrillingReportType"^^xsd:string .
3797 3856
3798 _:b65 3857 _:b65
3799 - sp:varName "specificMassScale"^^xsd:string . 3858 + sp:varName "pressureTestType"^^xsd:string .
3800 3859
3801 _:b66 3860 _:b66
3802 - sp:varName "specificVolumeScale"^^xsd:string . 3861 + sp:varName "specificMassScale"^^xsd:string .
3803 3862
3804 _:b67 3863 _:b67
3805 - sp:varName "speedScale"^^xsd:string . 3864 + sp:varName "specificVolumeScale"^^xsd:string .
3806 3865
3807 _:b68 3866 _:b68
3808 - sp:varName "strengthScale"^^xsd:string . 3867 + sp:varName "speedScale"^^xsd:string .
3809 3868
3810 _:b69 3869 _:b69
3811 - sp:varName "temperatureScale"^^xsd:string . 3870 + sp:varName "strengthScale"^^xsd:string .
3812 3871
3813 _:b70 3872 _:b70
3814 - sp:varName "durationScale"^^xsd:string . 3873 + sp:varName "temperatureScale"^^xsd:string .
3815 3874
3816 _:b71 3875 _:b71
3817 - sp:varName "tubeType"^^xsd:string . 3876 + sp:varName "durationScale"^^xsd:string .
3818 3877
3819 _:b72 3878 _:b72
3820 - sp:varName "volumeScale"^^xsd:string . 3879 + sp:varName "tubeType"^^xsd:string .
3821 3880
3822 _:b73 3881 _:b73
3823 - sp:varName "volumetricFlowRateScale"^^xsd:string . 3882 + sp:varName "volumeScale"^^xsd:string .
3824 3883
3825 _:b74 3884 _:b74
3826 - sp:varName "wellBoreDrillingType"^^xsd:string . 3885 + sp:varName "volumetricFlowRateScale"^^xsd:string .
3827 3886
3828 _:b75 3887 _:b75
3829 - sp:varName "wellBoreHphtType"^^xsd:string . 3888 + sp:varName "wellBoreDrillingType"^^xsd:string .
3830 3889
3831 _:b76 3890 _:b76
3832 - sp:varName "wellBoreTightnessType"^^xsd:string . 3891 + sp:varName "wellBoreHphtType"^^xsd:string .
3833 -
3834 -_:b77
3835 - sp:varName "wellCementJobBottomPlugType"^^xsd:string .
3836 -
3837 -_:b78
3838 - sp:varName "wellCementJobCasingReciprocationType"^^xsd:string .
3839 -
3840 -_:b79
3841 - sp:varName "wellCementJobCasingRotationType"^^xsd:string .
3842 -
3843 -_:b80
3844 - sp:varName "wellCementJobFloatHoldingType"^^xsd:string .
3845 -
3846 -_:b81
3847 - sp:varName "wellCementJobPlugBumpingType"^^xsd:string .
3848 -
3849 -_:b82
3850 - sp:varName "wellCementJobTopPlugType"^^xsd:string .
3851 -
3852 -_:b83
3853 - sp:varName "wellCementJobType"^^xsd:string .
3854 -
3855 -_:b84
3856 - sp:varName "wellControlIncidentType"^^xsd:string .
3857 -
3858 -_:b85
3859 - sp:varName "wellKillingType"^^xsd:string .
3860 -
3861 -_:b86
3862 - sp:varName "wellTestType"^^xsd:string .
3863 -
3864 -_:b87
3865 - sp:varName "wirelineFormationTestGoodnessOfSealType"^^xsd:string .
3866 -
3867 -_:b88
3868 - sp:varName "yieldPointScale"^^xsd:string .
......
1 +# Saved by TopBraid on Thu Oct 27 11:10:33 BST 2011
1 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord 2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord
2 -# imports: http://spinrdf.org/spin
3 -# imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
5 # imports: http://www.witsml.org/schemas/1series 4 # imports: http://www.witsml.org/schemas/1series
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/activity
6 +# imports: http://spinrdf.org/spin
6 7
7 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord#> . 8 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord#> .
8 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . 9 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
...@@ -19,7 +20,7 @@ ...@@ -19,7 +20,7 @@
19 20
20 <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord> 21 <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord>
21 rdf:type owl:Ontology ; 22 rdf:type owl:Ontology ;
22 - owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ; 23 + owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://spinrdf.org/spin> ;
23 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
24 25
25 <http://www.witsml.org/schemas/1series#Obj_drillReport> 26 <http://www.witsml.org/schemas/1series#Obj_drillReport>
...@@ -28,420 +29,387 @@ ...@@ -28,420 +29,387 @@
28 rdfs:comment "STEP 190a Create a well bore bit run activity"^^xsd:string ; 29 rdfs:comment "STEP 190a Create a well bore bit run activity"^^xsd:string ;
29 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-singleRun> ; 30 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-singleRun> ;
30 sp:predicate rdf:type ; 31 sp:predicate rdf:type ;
31 - sp:subject 32 + sp:subject _:b1
32 - [ sp:varName "wellBoreDrillBitRun"^^xsd:string 33 + ] [ sp:object _:b2 ;
33 - ]
34 - ] [ sp:object _:b1 ;
35 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 34 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
36 - sp:subject 35 + sp:subject _:b1
37 - [ sp:varName "wellBoreDrillBitRun"^^xsd:string
38 - ]
39 ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-entire> ; 36 ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-entire> ;
40 sp:predicate rdf:type ; 37 sp:predicate rdf:type ;
41 - sp:subject _:b1 38 + sp:subject _:b2
42 - ] [ sp:object _:b2 ; 39 + ] [ sp:object _:b3 ;
43 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 40 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
44 - sp:subject 41 + sp:subject _:b4
45 - [ sp:varName "dailyDrillingActivity"^^xsd:string 42 + ] [ sp:object _:b1 ;
46 - ]
47 - ] [ sp:object
48 - [ sp:varName "wellBoreDrillBitRun"^^xsd:string
49 - ] ;
50 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 43 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
51 - sp:subject _:b2 44 + sp:subject _:b3
52 ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-withinReportingPeriod> ; 45 ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellBoreDrillBitRun-withinReportingPeriod> ;
53 sp:predicate rdf:type ; 46 sp:predicate rdf:type ;
54 - sp:subject _:b2 47 + sp:subject _:b3
55 - ] [ sp:object _:b3 ; 48 + ] [ sp:object _:b5 ;
56 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 49 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
57 - sp:subject _:b2 50 + sp:subject _:b3
58 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ; 51 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
59 sp:predicate rdf:type ; 52 sp:predicate rdf:type ;
60 - sp:subject _:b3 53 + sp:subject _:b5
61 - ] [ sp:object 54 + ] [ sp:object _:b6 ;
62 - [ sp:varName "dailyTemporalPartOfAWellBore"^^xsd:string
63 - ] ;
64 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 55 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
65 - sp:subject _:b3 56 + sp:subject _:b5
66 - ] [ sp:object _:b4 ; 57 + ] [ sp:object _:b7 ;
67 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onDrillBit> ; 58 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onDrillBit> ;
68 - sp:subject 59 + sp:subject _:b1
69 - [ sp:varName "wellBoreDrillBitRun"^^xsd:string
70 - ]
71 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#Equipment> ; 60 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#Equipment> ;
72 sp:predicate rdf:type ; 61 sp:predicate rdf:type ;
73 - sp:subject _:b4 62 + sp:subject _:b7
74 - ] [ sp:object 63 + ] [ sp:object _:b8 ;
75 - [ sp:varName "drillBitForWellBore"^^xsd:string
76 - ] ;
77 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 64 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
78 - sp:subject _:b4 65 + sp:subject _:b7
79 - ] [ sp:object _:b5 ;
80 - sp:predicate rdf:type ;
81 - sp:subject _:b4
82 - ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DullGrade> ;
83 - sp:predicate rdf:type ;
84 - sp:subject _:b5
85 - ] [ sp:object
86 - [ sp:varName "dullGrade"^^xsd:string
87 - ] ;
88 - sp:predicate rdfs:label ;
89 - sp:subject _:b5
90 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBitForWellBore> ; 66 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBitForWellBore> ;
91 sp:predicate rdf:type ; 67 sp:predicate rdf:type ;
92 - sp:subject 68 + sp:subject _:b8
93 - [ sp:varName "drillBitForWellBore"^^xsd:string 69 + ] [ sp:object _:b9 ;
94 - ]
95 - ] [ sp:object
96 - [ sp:varName "numBit"^^xsd:string
97 - ] ;
98 sp:predicate <http://www.reportinghub.no/ep/schema/core#name> ; 70 sp:predicate <http://www.reportinghub.no/ep/schema/core#name> ;
99 - sp:subject 71 + sp:subject _:b8
100 - [ sp:varName "drillBitForWellBore"^^xsd:string 72 + ] [ sp:object _:b10 ;
101 - ]
102 - ] [ sp:object _:b6 ;
103 sp:predicate rdf:type ; 73 sp:predicate rdf:type ;
104 - sp:subject 74 + sp:subject _:b8
105 - [ sp:varName "drillBitForWellBore"^^xsd:string
106 - ]
107 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ClassOfSupplyDefinedByAManufacturer> ; 75 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ClassOfSupplyDefinedByAManufacturer> ;
108 sp:predicate rdf:type ; 76 sp:predicate rdf:type ;
109 - sp:subject _:b6 77 + sp:subject _:b10
110 - ] [ sp:object _:b7 ; 78 + ] [ sp:object _:b11 ;
111 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#diameterOfDrillBit> ; 79 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#diameterOfDrillBit> ;
112 - sp:subject _:b6 80 + sp:subject _:b10
113 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 81 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
114 sp:predicate rdf:type ; 82 sp:predicate rdf:type ;
115 - sp:subject _:b7 83 + sp:subject _:b11
116 - ] [ sp:object 84 + ] [ sp:object _:b12 ;
117 - [ sp:varName "realDia"^^xsd:string 85 + sp:predicate _:b13 ;
118 - ] ; 86 + sp:subject _:b11
119 - sp:predicate 87 + ] [ sp:object _:b14 ;
120 - [ sp:varName "lengthScaleDia"^^xsd:string
121 - ] ;
122 - sp:subject _:b7
123 - ] [ sp:object _:b8 ;
124 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#manufacturedBy> ; 88 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#manufacturedBy> ;
125 - sp:subject 89 + sp:subject _:b8
126 - [ sp:varName "drillBitForWellBore"^^xsd:string
127 - ]
128 ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#Organization> ; 90 ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#Organization> ;
129 sp:predicate rdf:type ; 91 sp:predicate rdf:type ;
130 - sp:subject _:b8 92 + sp:subject _:b14
131 - ] [ sp:object 93 + ] [ sp:object _:b15 ;
132 - [ sp:varName "nameManufacturer"^^xsd:string
133 - ] ;
134 sp:predicate rdfs:label ; 94 sp:predicate rdfs:label ;
135 - sp:subject _:b8 95 + sp:subject _:b14
136 - ] [ sp:object 96 + ] [ sp:object _:b16 ;
137 - [ sp:varName "codeMfg"^^xsd:string
138 - ] ;
139 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#codeAssignedByAManufacturer> ; 97 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#codeAssignedByAManufacturer> ;
140 - sp:subject _:b6 98 + sp:subject _:b10
141 ]) ; 99 ]) ;
142 - sp:where ([ sp:object 100 + sp:where ([ sp:object _:b17 ;
143 - [ sp:varName "nameWellBore"^^xsd:string
144 - ] ;
145 sp:predicate ep-spin-lib:nameWellbore ; 101 sp:predicate ep-spin-lib:nameWellbore ;
146 sp:subject spin:_this 102 sp:subject spin:_this
147 - ] [ sp:object 103 + ] [ sp:object _:b18 ;
148 - [ sp:varName "dTimStart"^^xsd:string
149 - ] ;
150 sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ; 104 sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ;
151 sp:subject spin:_this 105 sp:subject spin:_this
152 - ] [ sp:object 106 + ] [ sp:object _:b6 ;
153 - [ sp:varName "dailyTemporalPartOfAWellBore"^^xsd:string
154 - ] ;
155 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 107 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
156 - sp:subject 108 + sp:subject _:b4
157 - [ sp:varName "dailyDrillingActivity"^^xsd:string 109 + ] [ sp:object _:b19 ;
158 - ]
159 - ] [ sp:object
160 - [ sp:varName "bitRecord"^^xsd:string
161 - ] ;
162 sp:predicate <http://www.witsml.org/schemas/1series#bitRecordRef> ; 110 sp:predicate <http://www.witsml.org/schemas/1series#bitRecordRef> ;
163 sp:subject spin:_this 111 sp:subject spin:_this
164 - ] [ sp:object 112 + ] [ sp:object _:b9 ;
165 - [ sp:varName "numBit"^^xsd:string
166 - ] ;
167 sp:predicate <http://www.witsml.org/schemas/1series#numBit> ; 113 sp:predicate <http://www.witsml.org/schemas/1series#numBit> ;
168 - sp:subject 114 + sp:subject _:b19
169 - [ sp:varName "bitRecord"^^xsd:string 115 + ] [ sp:object _:b20 ;
170 - ]
171 - ] [ sp:object
172 - [ sp:varName "diaBit"^^xsd:string
173 - ] ;
174 sp:predicate <http://www.witsml.org/schemas/1series#diaBitRef> ; 116 sp:predicate <http://www.witsml.org/schemas/1series#diaBitRef> ;
175 - sp:subject 117 + sp:subject _:b19
176 - [ sp:varName "bitRecord"^^xsd:string 118 + ] [ sp:object _:b21 ;
177 - ]
178 - ] [ sp:object
179 - [ sp:varName "uomDia"^^xsd:string
180 - ] ;
181 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 119 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
182 - sp:subject 120 + sp:subject _:b20
183 - [ sp:varName "diaBit"^^xsd:string 121 + ] [ sp:object _:b12 ;
184 - ]
185 - ] [ sp:object
186 - [ sp:varName "realDia"^^xsd:string
187 - ] ;
188 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 122 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
189 - sp:subject 123 + sp:subject _:b20
190 - [ sp:varName "diaBit"^^xsd:string
191 - ]
192 ] [ rdf:type sp:Optional ; 124 ] [ rdf:type sp:Optional ;
193 - sp:elements ([ sp:object 125 + sp:elements ([ sp:object _:b15 ;
194 - [ sp:varName "nameManufacturer"^^xsd:string
195 - ] ;
196 sp:predicate <http://www.witsml.org/schemas/1series#manufacturer> ; 126 sp:predicate <http://www.witsml.org/schemas/1series#manufacturer> ;
197 - sp:subject 127 + sp:subject _:b19
198 - [ sp:varName "bitRecord"^^xsd:string
199 - ]
200 ]) 128 ])
201 ] [ rdf:type sp:Optional ; 129 ] [ rdf:type sp:Optional ;
202 - sp:elements ([ sp:object 130 + sp:elements ([ sp:object _:b16 ;
203 - [ sp:varName "codeMfg"^^xsd:string
204 - ] ;
205 sp:predicate <http://www.witsml.org/schemas/1series#codeMfg> ; 131 sp:predicate <http://www.witsml.org/schemas/1series#codeMfg> ;
206 - sp:subject 132 + sp:subject _:b19
207 - [ sp:varName "bitRecord"^^xsd:string
208 - ]
209 - ])
210 - ] [ rdf:type sp:Optional ;
211 - sp:elements ([ sp:object
212 - [ sp:varName "dullGrade"^^xsd:string
213 - ] ;
214 - sp:predicate <http://www.witsml.org/schemas/1series#dullGrade> ;
215 - sp:subject
216 - [ sp:varName "bitRecord"^^xsd:string
217 - ]
218 ]) 133 ])
219 ] [ rdf:type sp:Bind ; 134 ] [ rdf:type sp:Bind ;
220 sp:expression 135 sp:expression
221 [ rdf:type ep-spin-lib:normalizeString ; 136 [ rdf:type ep-spin-lib:normalizeString ;
222 - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string 137 + sp:arg1 _:b17
223 - ]
224 ] ; 138 ] ;
225 - sp:variable 139 + sp:variable _:b22
226 - [ sp:varName "normalizedWellBoreName"^^xsd:string
227 - ]
228 ] [ rdf:type sp:Bind ; 140 ] [ rdf:type sp:Bind ;
229 sp:expression 141 sp:expression
230 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; 142 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
231 - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string 143 + sp:arg1 _:b22 ;
232 - ] ; 144 + sp:arg2 _:b18
233 - sp:arg2 [ sp:varName "dTimStart"^^xsd:string
234 - ]
235 ] ; 145 ] ;
236 - sp:variable 146 + sp:variable _:b4
237 - [ sp:varName "dailyDrillingActivity"^^xsd:string
238 - ]
239 ] [ rdf:type sp:Bind ; 147 ] [ rdf:type sp:Bind ;
240 sp:expression 148 sp:expression
241 [ rdf:type afn:localname ; 149 [ rdf:type afn:localname ;
242 - sp:arg1 [ sp:varName "bitRecord"^^xsd:string 150 + sp:arg1 _:b19
243 - ]
244 ] ; 151 ] ;
245 - sp:variable 152 + sp:variable _:b23
246 - [ sp:varName "localname"^^xsd:string
247 - ]
248 ] [ rdf:type sp:Bind ; 153 ] [ rdf:type sp:Bind ;
249 sp:expression 154 sp:expression
250 [ rdf:type ep-spin-lib:buildWellBoreDrillBitRunURI ; 155 [ rdf:type ep-spin-lib:buildWellBoreDrillBitRunURI ;
251 - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string 156 + sp:arg1 _:b22 ;
157 + sp:arg2 _:b18 ;
158 + sp:arg3 _:b23
252 ] ; 159 ] ;
253 - sp:arg2 [ sp:varName "dTimStart"^^xsd:string 160 + sp:variable _:b1
161 + ] [ rdf:type sp:Bind ;
162 + sp:expression
163 + [ rdf:type ep-spin-lib:normalizeString ;
164 + sp:arg1 _:b9
254 ] ; 165 ] ;
255 - sp:arg3 [ sp:varName "localname"^^xsd:string 166 + sp:variable _:b24
256 - ] 167 + ] [ rdf:type sp:Bind ;
168 + sp:expression
169 + [ rdf:type ep-spin-lib:buildWellBoreDrillBitURI ;
170 + sp:arg1 _:b22 ;
171 + sp:arg2 _:b24
257 ] ; 172 ] ;
258 - sp:variable 173 + sp:variable _:b8
259 - [ sp:varName "wellBoreDrillBitRun"^^xsd:string 174 + ] [ rdf:type sp:Bind ;
260 - ] 175 + sp:expression
176 + [ rdf:type ep-spin-lib:selectLengthScale ;
177 + sp:arg1 _:b21
178 + ] ;
179 + sp:variable _:b13
180 + ])
181 + ] ;
182 + spin:rule
183 + [ rdf:type sp:Construct ;
184 + rdfs:comment "STEP 190d Classify a drillbit according to dull grade - dull grade class exists"^^xsd:string ;
185 + sp:templates ([ sp:object _:b25 ;
186 + sp:predicate rdf:type ;
187 + sp:subject _:b26
188 + ]) ;
189 + sp:where ([ sp:object _:b27 ;
190 + sp:predicate ep-spin-lib:nameWellbore ;
191 + sp:subject spin:_this
192 + ] [ sp:object _:b28 ;
193 + sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ;
194 + sp:subject spin:_this
195 + ] [ sp:object _:b29 ;
196 + sp:predicate <http://www.witsml.org/schemas/1series#bitRecordRef> ;
197 + sp:subject spin:_this
198 + ] [ sp:object _:b30 ;
199 + sp:predicate <http://www.witsml.org/schemas/1series#numBit> ;
200 + sp:subject _:b29
201 + ] [ sp:object _:b31 ;
202 + sp:predicate <http://www.witsml.org/schemas/1series#dullGrade> ;
203 + sp:subject _:b29
204 + ] [ sp:object _:b26 ;
205 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#onDrillBit> ;
206 + sp:subject _:b32
207 + ] [ sp:object _:b33 ;
208 + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
209 + sp:subject _:b26
210 + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DullGrade> ;
211 + sp:predicate rdf:type ;
212 + sp:subject _:b25
261 ] [ rdf:type sp:Bind ; 213 ] [ rdf:type sp:Bind ;
262 sp:expression 214 sp:expression
263 [ rdf:type ep-spin-lib:normalizeString ; 215 [ rdf:type ep-spin-lib:normalizeString ;
264 - sp:arg1 [ sp:varName "numBit"^^xsd:string 216 + sp:arg1 _:b27
265 - ]
266 ] ; 217 ] ;
267 - sp:variable 218 + sp:variable _:b34
268 - [ sp:varName "normalizedNumBit"^^xsd:string 219 + ] [ rdf:type sp:Bind ;
269 - ] 220 + sp:expression
221 + [ rdf:type afn:localname ;
222 + sp:arg1 _:b29
223 + ] ;
224 + sp:variable _:b35
225 + ] [ rdf:type sp:Bind ;
226 + sp:expression
227 + [ rdf:type ep-spin-lib:buildWellBoreDrillBitRunURI ;
228 + sp:arg1 _:b34 ;
229 + sp:arg2 _:b28 ;
230 + sp:arg3 _:b35
231 + ] ;
232 + sp:variable _:b32
233 + ] [ rdf:type sp:Bind ;
234 + sp:expression
235 + [ rdf:type ep-spin-lib:normalizeString ;
236 + sp:arg1 _:b30
237 + ] ;
238 + sp:variable _:b36
270 ] [ rdf:type sp:Bind ; 239 ] [ rdf:type sp:Bind ;
271 sp:expression 240 sp:expression
272 [ rdf:type ep-spin-lib:buildWellBoreDrillBitURI ; 241 [ rdf:type ep-spin-lib:buildWellBoreDrillBitURI ;
273 - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string 242 + sp:arg1 _:b34 ;
243 + sp:arg2 _:b36
274 ] ; 244 ] ;
275 - sp:arg2 [ sp:varName "normalizedNumBit"^^xsd:string 245 + sp:variable _:b33
276 - ] 246 + ] [ rdf:type sp:Bind ;
247 + sp:expression
248 + [ rdf:type ep-spin-lib:normalizeString ;
249 + sp:arg1 _:b31
277 ] ; 250 ] ;
278 - sp:variable 251 + sp:variable _:b37
279 - [ sp:varName "drillBitForWellBore"^^xsd:string
280 - ]
281 ] [ rdf:type sp:Bind ; 252 ] [ rdf:type sp:Bind ;
282 sp:expression 253 sp:expression
283 - [ rdf:type ep-spin-lib:selectLengthScale ; 254 + [ rdf:type ep-spin-lib:buildDullGradeURI ;
284 - sp:arg1 [ sp:varName "uomDia"^^xsd:string 255 + sp:arg1 _:b37
285 - ]
286 ] ; 256 ] ;
287 - sp:variable 257 + sp:variable _:b25
288 - [ sp:varName "lengthScaleDia"^^xsd:string
289 - ]
290 ]) 258 ])
291 ] ; 259 ] ;
292 spin:rule 260 spin:rule
293 [ rdf:type sp:Construct ; 261 [ rdf:type sp:Construct ;
294 rdfs:comment "STEP 190b Create a well bore bit run activity"^^xsd:string ; 262 rdfs:comment "STEP 190b Create a well bore bit run activity"^^xsd:string ;
295 - sp:templates ([ sp:object _:b9 ; 263 + sp:templates ([ sp:object _:b38 ;
296 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ; 264 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ;
297 sp:subject 265 sp:subject
298 [ sp:varName "wellBoreDrillBitRun"^^xsd:string 266 [ sp:varName "wellBoreDrillBitRun"^^xsd:string
299 ] 267 ]
300 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; 268 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ;
301 sp:predicate rdf:type ; 269 sp:predicate rdf:type ;
302 - sp:subject _:b9 270 + sp:subject _:b38
303 ] [ sp:object 271 ] [ sp:object
304 [ sp:varName "realHrsDrilledRun"^^xsd:string 272 [ sp:varName "realHrsDrilledRun"^^xsd:string
305 ] ; 273 ] ;
306 sp:predicate 274 sp:predicate
307 [ sp:varName "durationScaleHrsDrilledRun"^^xsd:string 275 [ sp:varName "durationScaleHrsDrilledRun"^^xsd:string
308 ] ; 276 ] ;
309 - sp:subject _:b9 277 + sp:subject _:b38
310 - ] [ sp:object _:b10 ; 278 + ] [ sp:object _:b39 ;
311 sp:predicate <http://www.reportinghub.no/ep/schema/activity#distanceDrilled> ; 279 sp:predicate <http://www.reportinghub.no/ep/schema/activity#distanceDrilled> ;
312 sp:subject 280 sp:subject
313 [ sp:varName "wellBoreDrillBitRun"^^xsd:string 281 [ sp:varName "wellBoreDrillBitRun"^^xsd:string
314 ] 282 ]
315 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 283 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
316 sp:predicate rdf:type ; 284 sp:predicate rdf:type ;
317 - sp:subject _:b10 285 + sp:subject _:b39
318 ] [ sp:object 286 ] [ sp:object
319 [ sp:varName "realHoleMadeRun"^^xsd:string 287 [ sp:varName "realHoleMadeRun"^^xsd:string
320 ] ; 288 ] ;
321 sp:predicate 289 sp:predicate
322 [ sp:varName "lengthScaleHoleMadeRun"^^xsd:string 290 [ sp:varName "lengthScaleHoleMadeRun"^^xsd:string
323 ] ; 291 ] ;
324 - sp:subject _:b10 292 + sp:subject _:b39
325 - ] [ sp:object _:b11 ; 293 + ] [ sp:object _:b40 ;
326 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ; 294 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ;
327 sp:subject 295 sp:subject
328 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string 296 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string
329 ] 297 ]
330 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; 298 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ;
331 sp:predicate rdf:type ; 299 sp:predicate rdf:type ;
332 - sp:subject _:b11 300 + sp:subject _:b40
333 ] [ sp:object 301 ] [ sp:object
334 [ sp:varName "realHrsDrilledTot"^^xsd:string 302 [ sp:varName "realHrsDrilledTot"^^xsd:string
335 ] ; 303 ] ;
336 sp:predicate 304 sp:predicate
337 [ sp:varName "durationScaleHrsDrilledTot"^^xsd:string 305 [ sp:varName "durationScaleHrsDrilledTot"^^xsd:string
338 ] ; 306 ] ;
339 - sp:subject _:b11 307 + sp:subject _:b40
340 - ] [ sp:object _:b12 ; 308 + ] [ sp:object _:b41 ;
341 sp:predicate <http://www.reportinghub.no/ep/schema/activity#distanceDrilled> ; 309 sp:predicate <http://www.reportinghub.no/ep/schema/activity#distanceDrilled> ;
342 sp:subject 310 sp:subject
343 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string 311 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string
344 ] 312 ]
345 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 313 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
346 sp:predicate rdf:type ; 314 sp:predicate rdf:type ;
347 - sp:subject _:b12 315 + sp:subject _:b41
348 ] [ sp:object 316 ] [ sp:object
349 [ sp:varName "realHoleMadeTot"^^xsd:string 317 [ sp:varName "realHoleMadeTot"^^xsd:string
350 ] ; 318 ] ;
351 sp:predicate 319 sp:predicate
352 [ sp:varName "lengthScaleHoleMadeTot"^^xsd:string 320 [ sp:varName "lengthScaleHoleMadeTot"^^xsd:string
353 ] ; 321 ] ;
354 - sp:subject _:b12 322 + sp:subject _:b41
355 - ] [ sp:object _:b13 ; 323 + ] [ sp:object _:b42 ;
356 sp:predicate <http://www.reportinghub.no/ep/schema/activity#averageRateOfDrilling> ; 324 sp:predicate <http://www.reportinghub.no/ep/schema/activity#averageRateOfDrilling> ;
357 sp:subject 325 sp:subject
358 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string 326 [ sp:varName "wellBoreDrillBitRunEntire"^^xsd:string
359 ] 327 ]
360 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Speed> ; 328 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Speed> ;
361 sp:predicate rdf:type ; 329 sp:predicate rdf:type ;
362 - sp:subject _:b13 330 + sp:subject _:b42
363 ] [ sp:object 331 ] [ sp:object
364 [ sp:varName "realRopTot"^^xsd:string 332 [ sp:varName "realRopTot"^^xsd:string
365 ] ; 333 ] ;
366 sp:predicate 334 sp:predicate
367 [ sp:varName "speedScaleRopTot"^^xsd:string 335 [ sp:varName "speedScaleRopTot"^^xsd:string
368 ] ; 336 ] ;
369 - sp:subject _:b13 337 + sp:subject _:b42
370 - ] [ sp:object _:b14 ; 338 + ] [ sp:object _:b43 ;
371 sp:predicate <http://www.reportinghub.no/ep/schema/activity#operatingTimeOfDrillBit> ; 339 sp:predicate <http://www.reportinghub.no/ep/schema/activity#operatingTimeOfDrillBit> ;
372 sp:subject 340 sp:subject
373 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string 341 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string
374 ] 342 ]
375 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; 343 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ;
376 sp:predicate rdf:type ; 344 sp:predicate rdf:type ;
377 - sp:subject _:b14 345 + sp:subject _:b43
378 ] [ sp:object 346 ] [ sp:object
379 [ sp:varName "realETim"^^xsd:string 347 [ sp:varName "realETim"^^xsd:string
380 ] ; 348 ] ;
381 sp:predicate 349 sp:predicate
382 [ sp:varName "durationScaleETim"^^xsd:string 350 [ sp:varName "durationScaleETim"^^xsd:string
383 ] ; 351 ] ;
384 - sp:subject _:b14 352 + sp:subject _:b43
385 - ] [ sp:object _:b15 ; 353 + ] [ sp:object _:b44 ;
386 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ; 354 sp:predicate <http://www.reportinghub.no/ep/schema/activity#durationOfDrilling> ;
387 sp:subject 355 sp:subject
388 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string 356 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string
389 ] 357 ]
390 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; 358 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ;
391 sp:predicate rdf:type ; 359 sp:predicate rdf:type ;
392 - sp:subject _:b15 360 + sp:subject _:b44
393 ] [ sp:object 361 ] [ sp:object
394 [ sp:varName "realHrsDrilled"^^xsd:string 362 [ sp:varName "realHrsDrilled"^^xsd:string
395 ] ; 363 ] ;
396 sp:predicate 364 sp:predicate
397 [ sp:varName "durationScaleHrsDrilled"^^xsd:string 365 [ sp:varName "durationScaleHrsDrilled"^^xsd:string
398 ] ; 366 ] ;
399 - sp:subject _:b15 367 + sp:subject _:b44
400 - ] [ sp:object _:b16 ; 368 + ] [ sp:object _:b45 ;
401 sp:predicate <http://www.reportinghub.no/ep/schema/activity#averageRateOfDrilling> ; 369 sp:predicate <http://www.reportinghub.no/ep/schema/activity#averageRateOfDrilling> ;
402 sp:subject 370 sp:subject
403 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string 371 [ sp:varName "wellBoreDrillBitRunWithinReportingPeriod"^^xsd:string
404 ] 372 ]
405 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Speed> ; 373 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Speed> ;
406 sp:predicate rdf:type ; 374 sp:predicate rdf:type ;
407 - sp:subject _:b16 375 + sp:subject _:b45
408 ] [ sp:object 376 ] [ sp:object
409 [ sp:varName "realRop"^^xsd:string 377 [ sp:varName "realRop"^^xsd:string
410 ] ; 378 ] ;
411 sp:predicate 379 sp:predicate
412 [ sp:varName "speedScaleRop"^^xsd:string 380 [ sp:varName "speedScaleRop"^^xsd:string
413 ] ; 381 ] ;
414 - sp:subject _:b16 382 + sp:subject _:b45
415 - ] [ sp:object _:b17 ; 383 + ] [ sp:object _:b46 ;
416 sp:predicate <http://www.reportinghub.no/ep/schema/well#initialBottomHoleMeasuredDepth> ; 384 sp:predicate <http://www.reportinghub.no/ep/schema/well#initialBottomHoleMeasuredDepth> ;
417 sp:subject 385 sp:subject
418 [ sp:varName "temporalPartOfWellBoreDuringDrillingRunWithinReportingPeriod"^^xsd:string 386 [ sp:varName "temporalPartOfWellBoreDuringDrillingRunWithinReportingPeriod"^^xsd:string
419 ] 387 ]
420 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 388 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
421 sp:predicate rdf:type ; 389 sp:predicate rdf:type ;
422 - sp:subject _:b17 390 + sp:subject _:b46
423 ] [ sp:object 391 ] [ sp:object
424 [ sp:varName "realMdStart"^^xsd:string 392 [ sp:varName "realMdStart"^^xsd:string
425 ] ; 393 ] ;
426 sp:predicate 394 sp:predicate
427 [ sp:varName "lengthScaleMdStart"^^xsd:string 395 [ sp:varName "lengthScaleMdStart"^^xsd:string
428 ] ; 396 ] ;
429 - sp:subject _:b17 397 + sp:subject _:b46
430 - ] [ sp:object _:b18 ; 398 + ] [ sp:object _:b47 ;
431 sp:predicate <http://www.reportinghub.no/ep/schema/well#finalBottomHoleMeasuredDepth> ; 399 sp:predicate <http://www.reportinghub.no/ep/schema/well#finalBottomHoleMeasuredDepth> ;
432 sp:subject 400 sp:subject
433 [ sp:varName "temporalPartOfWellBoreDuringDrillingRunWithinReportingPeriod"^^xsd:string 401 [ sp:varName "temporalPartOfWellBoreDuringDrillingRunWithinReportingPeriod"^^xsd:string
434 ] 402 ]
435 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 403 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
436 sp:predicate rdf:type ; 404 sp:predicate rdf:type ;
437 - sp:subject _:b18 405 + sp:subject _:b47
438 ] [ sp:object 406 ] [ sp:object
439 [ sp:varName "realMdStop"^^xsd:string 407 [ sp:varName "realMdStop"^^xsd:string
440 ] ; 408 ] ;
441 sp:predicate 409 sp:predicate
442 [ sp:varName "lengthScaleMdStop"^^xsd:string 410 [ sp:varName "lengthScaleMdStop"^^xsd:string
443 ] ; 411 ] ;
444 - sp:subject _:b18 412 + sp:subject _:b47
445 ]) ; 413 ]) ;
446 sp:where ([ sp:object 414 sp:where ([ sp:object
447 [ sp:varName "nameWellBore"^^xsd:string 415 [ sp:varName "nameWellBore"^^xsd:string
...@@ -884,4 +852,214 @@ ...@@ -884,4 +852,214 @@
884 [ sp:varName "durationScaleHrsDrilledTot"^^xsd:string 852 [ sp:varName "durationScaleHrsDrilledTot"^^xsd:string
885 ] 853 ]
886 ]) 854 ])
855 + ] ;
856 + spin:rule
857 + [ rdf:type sp:Construct ;
858 + rdfs:comment "STEP 190c Classify a drillbit according to dull grade - dull grade class does not exist"^^xsd:string ;
859 + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/equipment#DullGrade> ;
860 + sp:predicate rdf:type ;
861 + sp:subject _:b48
862 + ] [ sp:object _:b49 ;
863 + sp:predicate rdfs:label ;
864 + sp:subject _:b48
865 + ] [ sp:object _:b48 ;
866 + sp:predicate rdf:type ;
867 + sp:subject _:b50
868 + ]) ;
869 + sp:where ([ sp:object _:b51 ;
870 + sp:predicate ep-spin-lib:nameWellbore ;
871 + sp:subject spin:_this
872 + ] [ sp:object _:b52 ;
873 + sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ;
874 + sp:subject spin:_this
875 + ] [ sp:object _:b53 ;
876 + sp:predicate <http://www.witsml.org/schemas/1series#bitRecordRef> ;
877 + sp:subject spin:_this
878 + ] [ sp:object _:b54 ;
879 + sp:predicate <http://www.witsml.org/schemas/1series#numBit> ;
880 + sp:subject _:b53
881 + ] [ sp:object _:b49 ;
882 + sp:predicate <http://www.witsml.org/schemas/1series#dullGrade> ;
883 + sp:subject _:b53
884 + ] [ sp:object _:b50 ;
885 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#onDrillBit> ;
886 + sp:subject _:b55
887 + ] [ sp:object _:b56 ;
888 + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
889 + sp:subject _:b50
890 + ] [ rdf:type sp:NotExists ;
891 + sp:elements ([ sp:object <http://www.reportinghub.no/ep/schema/equipment#DullGrade> ;
892 + sp:predicate rdf:type ;
893 + sp:subject _:b48
894 + ])
895 + ] [ rdf:type sp:Bind ;
896 + sp:expression
897 + [ rdf:type ep-spin-lib:normalizeString ;
898 + sp:arg1 _:b51
899 + ] ;
900 + sp:variable _:b57
901 + ] [ rdf:type sp:Bind ;
902 + sp:expression
903 + [ rdf:type afn:localname ;
904 + sp:arg1 _:b53
905 + ] ;
906 + sp:variable _:b58
907 + ] [ rdf:type sp:Bind ;
908 + sp:expression
909 + [ rdf:type ep-spin-lib:buildWellBoreDrillBitRunURI ;
910 + sp:arg1 _:b57 ;
911 + sp:arg2 _:b52 ;
912 + sp:arg3 _:b58
913 + ] ;
914 + sp:variable _:b55
915 + ] [ rdf:type sp:Bind ;
916 + sp:expression
917 + [ rdf:type ep-spin-lib:normalizeString ;
918 + sp:arg1 _:b54
919 + ] ;
920 + sp:variable _:b59
921 + ] [ rdf:type sp:Bind ;
922 + sp:expression
923 + [ rdf:type ep-spin-lib:buildWellBoreDrillBitURI ;
924 + sp:arg1 _:b57 ;
925 + sp:arg2 _:b59
926 + ] ;
927 + sp:variable _:b56
928 + ] [ rdf:type sp:Bind ;
929 + sp:expression
930 + [ rdf:type ep-spin-lib:normalizeString ;
931 + sp:arg1 _:b49
932 + ] ;
933 + sp:variable _:b60
934 + ] [ rdf:type sp:Bind ;
935 + sp:expression
936 + [ rdf:type ep-spin-lib:buildDullGradeURI ;
937 + sp:arg1 _:b60
938 + ] ;
939 + sp:variable _:b48
940 + ])
887 ] . 941 ] .
942 +
943 +_:b17
944 + sp:varName "nameWellBore"^^xsd:string .
945 +
946 +_:b18
947 + sp:varName "dTimStart"^^xsd:string .
948 +
949 +_:b4 sp:varName "dailyDrillingActivity"^^xsd:string .
950 +
951 +_:b6 sp:varName "dailyTemporalPartOfAWellBore"^^xsd:string .
952 +
953 +_:b19
954 + sp:varName "bitRecord"^^xsd:string .
955 +
956 +_:b9 sp:varName "numBit"^^xsd:string .
957 +
958 +_:b20
959 + sp:varName "diaBit"^^xsd:string .
960 +
961 +_:b21
962 + sp:varName "uomDia"^^xsd:string .
963 +
964 +_:b12
965 + sp:varName "realDia"^^xsd:string .
966 +
967 +_:b15
968 + sp:varName "nameManufacturer"^^xsd:string .
969 +
970 +_:b16
971 + sp:varName "codeMfg"^^xsd:string .
972 +
973 +_:b22
974 + sp:varName "normalizedWellBoreName"^^xsd:string .
975 +
976 +_:b23
977 + sp:varName "localname"^^xsd:string .
978 +
979 +_:b1 sp:varName "wellBoreDrillBitRun"^^xsd:string .
980 +
981 +_:b24
982 + sp:varName "normalizedNumBit"^^xsd:string .
983 +
984 +_:b8 sp:varName "drillBitForWellBore"^^xsd:string .
985 +
986 +_:b13
987 + sp:varName "lengthScaleDia"^^xsd:string .
988 +
989 +_:b27
990 + sp:varName "nameWellBore"^^xsd:string .
991 +
992 +_:b28
993 + sp:varName "dTimStart"^^xsd:string .
994 +
995 +_:b29
996 + sp:varName "bitRecord"^^xsd:string .
997 +
998 +_:b30
999 + sp:varName "numBit"^^xsd:string .
1000 +
1001 +_:b31
1002 + sp:varName "dullGradeLabel"^^xsd:string .
1003 +
1004 +_:b32
1005 + sp:varName "wellBoreDrillBitRun"^^xsd:string .
1006 +
1007 +_:b26
1008 + sp:varName "temporalPartOfADrillBit"^^xsd:string .
1009 +
1010 +_:b33
1011 + sp:varName "drillBitForWellBore"^^xsd:string .
1012 +
1013 +_:b25
1014 + sp:varName "dullGrade"^^xsd:string .
1015 +
1016 +_:b34
1017 + sp:varName "normalizedWellBoreName"^^xsd:string .
1018 +
1019 +_:b35
1020 + sp:varName "localname"^^xsd:string .
1021 +
1022 +_:b36
1023 + sp:varName "normalizedNumBit"^^xsd:string .
1024 +
1025 +_:b37
1026 + sp:varName "normalizedDullGradeLabel"^^xsd:string .
1027 +
1028 +_:b51
1029 + sp:varName "nameWellBore"^^xsd:string .
1030 +
1031 +_:b52
1032 + sp:varName "dTimStart"^^xsd:string .
1033 +
1034 +_:b53
1035 + sp:varName "bitRecord"^^xsd:string .
1036 +
1037 +_:b54
1038 + sp:varName "numBit"^^xsd:string .
1039 +
1040 +_:b49
1041 + sp:varName "dullGradeLabel"^^xsd:string .
1042 +
1043 +_:b55
1044 + sp:varName "wellBoreDrillBitRun"^^xsd:string .
1045 +
1046 +_:b50
1047 + sp:varName "temporalPartOfADrillBit"^^xsd:string .
1048 +
1049 +_:b56
1050 + sp:varName "drillBitForWellBore"^^xsd:string .
1051 +
1052 +_:b48
1053 + sp:varName "dullGrade"^^xsd:string .
1054 +
1055 +_:b57
1056 + sp:varName "normalizedWellBoreName"^^xsd:string .
1057 +
1058 +_:b58
1059 + sp:varName "localname"^^xsd:string .
1060 +
1061 +_:b59
1062 + sp:varName "normalizedNumBit"^^xsd:string .
1063 +
1064 +_:b60
1065 + sp:varName "normalizedDullGradeLabel"^^xsd:string .
......