David Price

Removed npd:Field

...@@ -19,6 +19,31 @@ ...@@ -19,6 +19,31 @@
19 <http://www.reportinghub.no/ep/schema/facility#Facility> 19 <http://www.reportinghub.no/ep/schema/facility#Facility>
20 rdfs:subClassOf npd:NPDIndividual . 20 rdfs:subClassOf npd:NPDIndividual .
21 21
22 +<http://www.reportinghub.no/ep/schema/facility#Field>
23 + rdfs:subClassOf
24 + [ rdf:type owl:Restriction ;
25 + owl:minCardinality "0"^^xsd:nonNegativeInteger ;
26 + owl:onProperty npd:fieldOwner
27 + ] ;
28 + rdfs:subClassOf
29 + [ rdf:type owl:Restriction ;
30 + owl:minCardinality "0"^^xsd:nonNegativeInteger ;
31 + owl:onProperty npd:fieldOperator
32 + ] ;
33 + rdfs:subClassOf
34 + [ rdf:type owl:Restriction ;
35 + owl:minCardinality "0"^^xsd:nonNegativeInteger ;
36 + owl:onProperty npd:currentActivityStatus
37 + ] ;
38 + rdfs:subClassOf
39 + [ rdf:type owl:Restriction ;
40 + owl:minCardinality "0"^^xsd:nonNegativeInteger ;
41 + owl:onProperty npd:fieldDiscoveryWellBore
42 + ] .
43 +
44 +<http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAField>
45 + rdfs:subClassOf npd:FixedFacilityParent .
46 +
22 <http://www.reportinghub.no/ep/schema/organization#Company> 47 <http://www.reportinghub.no/ep/schema/organization#Company>
23 rdfs:subClassOf npd:Individual . 48 rdfs:subClassOf npd:Individual .
24 49
...@@ -38,56 +63,6 @@ npd:BusinessArrangementArea ...@@ -38,56 +63,6 @@ npd:BusinessArrangementArea
38 rdfs:comment "A business arrangement area in this context is an area which is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence."^^xsd:string ; 63 rdfs:comment "A business arrangement area in this context is an area which is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence."^^xsd:string ;
39 rdfs:subClassOf npd:NPDIndividual , <http://www.reportinghub.no/ep/schema/core#PhysicalThing> , npd:Owner . 64 rdfs:subClassOf npd:NPDIndividual , <http://www.reportinghub.no/ep/schema/core#PhysicalThing> , npd:Owner .
40 65
41 -npd:DAS_DecidedByTheLicensees
42 - rdf:type npd:DiscoveryActivityStatus ;
43 - rdfs:label "decided by the licensees"@en ;
44 - npd:code "DECIDED BY THE LICENSEES"^^xsd:string .
45 -
46 -npd:DAS_DevelopmentIsNotVeryLikely
47 - rdf:type npd:DiscoveryActivityStatus ;
48 - rdfs:label "development is not very likely"@en ;
49 - npd:code "DEVELOPMENT IS NOT VERY LIKELY"^^xsd:string .
50 -
51 -npd:DAS_DevelopmentLikelyButNotClarified
52 - rdf:type npd:DiscoveryActivityStatus ;
53 - rdfs:label "development likely but not clarified"@en ;
54 - npd:code "DEVELOPMENT LIKELY BUT NOT CLARIFIED"^^xsd:string .
55 -
56 -npd:DAS_IncludedInOtherDiscovery
57 - rdf:type npd:DiscoveryActivityStatus ;
58 - rdfs:label "included in other discovery"@en ;
59 - npd:code "INCLUDED IN OTHER DISCOVERY"^^xsd:string .
60 -
61 -npd:DAS_NewDiscoveriesNotEvaluated
62 - rdf:type npd:DiscoveryActivityStatus ;
63 - rdfs:label "new discoveries, not evaluated"@en ;
64 - npd:code "NEW DISCOVERIES, NOT EVALUATED"^^xsd:string .
65 -
66 -npd:DAS_PDOApproved
67 - rdf:type npd:DiscoveryActivityStatus ;
68 - rdfs:label "PDO approved"@en ;
69 - npd:code "PDO APPROVED"^^xsd:string .
70 -
71 -npd:DAS_PlanningPhase
72 - rdf:type npd:DiscoveryActivityStatus ;
73 - rdfs:label "planning phase"@en ;
74 - npd:code "PLANNING PHASE"^^xsd:string .
75 -
76 -npd:DAS_Producing
77 - rdf:type npd:DiscoveryActivityStatus ;
78 - rdfs:label "producing"@en ;
79 - npd:code "PRODUCING"^^xsd:string .
80 -
81 -npd:DAS_ShutDown
82 - rdf:type npd:DiscoveryActivityStatus ;
83 - rdfs:label "shut down"@en ;
84 - npd:code "SHUT DOWN"^^xsd:string .
85 -
86 -npd:DAS_Unknown
87 - rdf:type npd:DiscoveryActivityStatus ;
88 - rdfs:label "unknown"@en ;
89 - npd:code "?"^^xsd:string .
90 -
91 npd:DWBP_Injection 66 npd:DWBP_Injection
92 rdf:type npd:DevelopmentWellBorePurpose ; 67 rdf:type npd:DevelopmentWellBorePurpose ;
93 rdfs:label "injection"@en ; 68 rdfs:label "injection"@en ;
...@@ -114,12 +89,6 @@ npd:Discovery ...@@ -114,12 +89,6 @@ npd:Discovery
114 rdfs:comment "A discovery is a petroleum deposit or several petroleum deposits collectively, which have been discovered in the same well, in which through testing, sampling or logging there has been established a probability of the existence of mobile petroleum (includes both commercial and technical discovery)."^^xsd:string ; 89 rdfs:comment "A discovery is a petroleum deposit or several petroleum deposits collectively, which have been discovered in the same well, in which through testing, sampling or logging there has been established a probability of the existence of mobile petroleum (includes both commercial and technical discovery)."^^xsd:string ;
115 rdfs:subClassOf npd:NPDIndividual . 90 rdfs:subClassOf npd:NPDIndividual .
116 91
117 -npd:DiscoveryActivityStatus
118 - rdf:type owl:Class ;
119 - rdfs:label "Discovery activity status"^^xsd:string ;
120 - rdfs:subClassOf npd:Enumeration ;
121 - owl:oneOf (npd:DAS_Unknown npd:DAS_PlanningPhase npd:DAS_IncludedInOtherDiscovery npd:DAS_PDOApproved npd:DAS_ShutDown npd:DAS_DevelopmentLikelyButNotClarified npd:DAS_DecidedByTheLicensees npd:DAS_DevelopmentIsNotVeryLikely npd:DAS_NewDiscoveriesNotEvaluated npd:DAS_Producing) .
122 -
123 npd:EWBP_Appraisal 92 npd:EWBP_Appraisal
124 rdf:type npd:ExplorationWellBorePurpose ; 93 rdf:type npd:ExplorationWellBorePurpose ;
125 rdfs:label "appraisal"@en ; 94 rdfs:label "appraisal"@en ;
...@@ -166,86 +135,16 @@ npd:FAS_ShutDown ...@@ -166,86 +135,16 @@ npd:FAS_ShutDown
166 rdfs:label "shut down"@en ; 135 rdfs:label "shut down"@en ;
167 npd:code "SHUT DOWN"^^xsd:string . 136 npd:code "SHUT DOWN"^^xsd:string .
168 137
169 -npd:FFP_Decommissioned
170 - rdf:type npd:FixedFacilityPhase ;
171 - rdfs:label "decommissioned"@en ;
172 - npd:code "DECOMMISSIONED"^^xsd:string .
173 -
174 -npd:FFP_DisposalCompleted
175 - rdf:type npd:FixedFacilityPhase ;
176 - rdfs:label "disposal completed"@en ;
177 - npd:code "DISPOSAL COMPLETED"^^xsd:string .
178 -
179 -npd:FFP_Fabrication
180 - rdf:type npd:FixedFacilityPhase ;
181 - rdfs:label "fabrication"@en ;
182 - npd:code "FABRICATION"^^xsd:string .
183 -
184 -npd:FFP_Future
185 - rdf:type npd:FixedFacilityPhase ;
186 - rdfs:label "future"@en ;
187 - npd:code "FUTURE"^^xsd:string .
188 -
189 -npd:FFP_InService
190 - rdf:type npd:FixedFacilityPhase ;
191 - rdfs:label "in service"@en ;
192 - npd:code "IN SERVICE"^^xsd:string .
193 -
194 -npd:FFP_Installation
195 - rdf:type npd:FixedFacilityPhase ;
196 - rdfs:label "installation"@en ;
197 - npd:code "INSTALLATION"^^xsd:string .
198 -
199 -npd:FFP_PartlyRemoved
200 - rdf:type npd:FixedFacilityPhase ;
201 - rdfs:label "partly removed"@en ;
202 - npd:code "PARTLY REMOVED"^^xsd:string .
203 -
204 -npd:FFP_Removal
205 - rdf:type npd:FixedFacilityPhase ;
206 - rdfs:label "removal"@en ;
207 - npd:code "REMOVAL"^^xsd:string .
208 -
209 -npd:FFP_Removed
210 - rdf:type npd:FixedFacilityPhase ;
211 - rdfs:label "removed"@en ;
212 - npd:code "REMOVED"^^xsd:string .
213 -
214 -npd:FFP_ShutDown
215 - rdf:type npd:FixedFacilityPhase ;
216 - rdfs:label "shut down"@en ;
217 - npd:code "SHUT DOWN"^^xsd:string .
218 -
219 -npd:Field
220 - rdf:type owl:Class ;
221 - rdfs:comment """A field is a discovery or several discoveries combined which the licensees have decided to develop, and for which the authorities have approved a plan for development and operation (PDO) or granted a PDO exemption.
222 -
223 -A field may have several Wells, however this information is not presented directly in the NPD data. Each Well usually has one (occasionally more than one) WellBore, and so in order to ascertain what field the Well is in, we have to infer it from the related WellBore table. Unfortunately, the Field column is not always populated, so sometimes the Field can only be inferred from the License, which usually corresponds to a Field.
224 -
225 -NOTE: Wells do not have NPDIDs"""^^xsd:string ;
226 - rdfs:subClassOf npd:FixedFacilityParent .
227 -
228 npd:FieldActivityStatus 138 npd:FieldActivityStatus
229 rdf:type owl:Class ; 139 rdf:type owl:Class ;
230 rdfs:label "Field activity status"^^xsd:string ; 140 rdfs:label "Field activity status"^^xsd:string ;
231 rdfs:subClassOf npd:Enumeration ; 141 rdfs:subClassOf npd:Enumeration ;
232 owl:oneOf (npd:FAS_PDOApproved npd:FAS_Producing npd:FAS_ShutDown) . 142 owl:oneOf (npd:FAS_PDOApproved npd:FAS_Producing npd:FAS_ShutDown) .
233 143
234 -npd:FieldPart
235 - rdf:type owl:Class ;
236 - rdfs:comment "A part of a Field"^^xsd:string ;
237 - rdfs:subClassOf npd:FixedFacilityParent .
238 -
239 npd:FixedFacilityParent 144 npd:FixedFacilityParent
240 rdf:type owl:Class ; 145 rdf:type owl:Class ;
241 rdfs:subClassOf npd:NPDIndividual . 146 rdfs:subClassOf npd:NPDIndividual .
242 147
243 -npd:FixedFacilityPhase
244 - rdf:type owl:Class ;
245 - rdfs:label "Fixed facility phase"^^xsd:string ;
246 - rdfs:subClassOf npd:Enumeration ;
247 - owl:oneOf (npd:FFP_Fabrication npd:FFP_PartlyRemoved npd:FFP_DisposalCompleted npd:FFP_ShutDown npd:FFP_Decommissioned npd:FFP_Removal npd:FFP_Removed npd:FFP_Installation npd:FFP_InService npd:FFP_Future) .
248 -
249 npd:HCT_Gas 148 npd:HCT_Gas
250 rdf:type npd:HCType ; 149 rdf:type npd:HCType ;
251 rdfs:label "gas"@en ; 150 rdfs:label "gas"@en ;
...@@ -458,9 +357,9 @@ npd:companyShortName ...@@ -458,9 +357,9 @@ npd:companyShortName
458 rdfs:subPropertyOf rdfs:label . 357 rdfs:subPropertyOf rdfs:label .
459 358
460 npd:currentActivityStatus 359 npd:currentActivityStatus
461 - rdf:type owl:ObjectProperty ; 360 + rdf:type owl:DatatypeProperty ;
462 - rdfs:domain npd:Field ; 361 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
463 - rdfs:range npd:FieldActivityStatus . 362 + rdfs:range xsd:string .
464 363
465 npd:currentOperator 364 npd:currentOperator
466 rdf:type owl:ObjectProperty ; 365 rdf:type owl:ObjectProperty ;
...@@ -475,15 +374,15 @@ npd:currentlyResponsibleCompany ...@@ -475,15 +374,15 @@ npd:currentlyResponsibleCompany
475 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> . 374 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
476 375
477 npd:discoveryCurrentActivityStatus 376 npd:discoveryCurrentActivityStatus
478 - rdf:type owl:ObjectProperty ; 377 + rdf:type owl:DatatypeProperty ;
479 rdfs:domain npd:Discovery ; 378 rdfs:domain npd:Discovery ;
480 - rdfs:range npd:DiscoveryActivityStatus . 379 + rdfs:range xsd:string .
481 380
482 npd:discoveryField 381 npd:discoveryField
483 rdf:type owl:ObjectProperty ; 382 rdf:type owl:ObjectProperty ;
484 rdfs:comment "Corresponds to Field NPDID field in NPD Discovery table (overview)"^^xsd:string ; 383 rdfs:comment "Corresponds to Field NPDID field in NPD Discovery table (overview)"^^xsd:string ;
485 rdfs:domain npd:Discovery ; 384 rdfs:domain npd:Discovery ;
486 - rdfs:range npd:Field . 385 + rdfs:range <http://www.reportinghub.no/ep/schema/facility#Field> .
487 386
488 npd:discoveryHCType 387 npd:discoveryHCType
489 rdf:type owl:ObjectProperty ; 388 rdf:type owl:ObjectProperty ;
...@@ -557,25 +456,25 @@ npd:facilityKind ...@@ -557,25 +456,25 @@ npd:facilityKind
557 npd:fieldDiscoveryWellBore 456 npd:fieldDiscoveryWellBore
558 rdf:type owl:ObjectProperty ; 457 rdf:type owl:ObjectProperty ;
559 rdfs:comment "Corresponds to Discovery Wellbore NPDID in the Field table "^^xsd:string ; 458 rdfs:comment "Corresponds to Discovery Wellbore NPDID in the Field table "^^xsd:string ;
560 - rdfs:domain npd:Field ; 459 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
561 rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> . 460 rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> .
562 461
563 npd:fieldOperator 462 npd:fieldOperator
564 rdf:type owl:ObjectProperty ; 463 rdf:type owl:ObjectProperty ;
565 - rdfs:domain npd:Field ; 464 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
566 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> . 465 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
567 466
568 npd:fieldOwner 467 npd:fieldOwner
569 rdf:type owl:ObjectProperty ; 468 rdf:type owl:ObjectProperty ;
570 rdfs:comment "The owner column in the NPD Field table may correspond to a BAA or a License, as indicated by the Owner Kind column"^^xsd:string ; 469 rdfs:comment "The owner column in the NPD Field table may correspond to a BAA or a License, as indicated by the Owner Kind column"^^xsd:string ;
571 - rdfs:domain npd:Field ; 470 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
572 rdfs:range npd:Owner . 471 rdfs:range npd:Owner .
573 472
574 npd:fixedFacilityPhase 473 npd:fixedFacilityPhase
575 - rdf:type owl:ObjectProperty ; 474 + rdf:type owl:DatatypeProperty ;
576 rdfs:comment "corresponds to Phase field in fixed facility tables"^^xsd:string ; 475 rdfs:comment "corresponds to Phase field in fixed facility tables"^^xsd:string ;
577 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#FixedFacility> ; 476 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#FixedFacility> ;
578 - rdfs:range npd:FixedFacilityPhase . 477 + rdfs:range xsd:string .
579 478
580 npd:id 479 npd:id
581 rdf:type owl:DatatypeProperty ; 480 rdf:type owl:DatatypeProperty ;
...@@ -616,11 +515,6 @@ npd:parentCompany ...@@ -616,11 +515,6 @@ npd:parentCompany
616 rdfs:domain npd:OperatingCompany ; 515 rdfs:domain npd:OperatingCompany ;
617 rdfs:range npd:ParentCompany . 516 rdfs:range npd:ParentCompany .
618 517
619 -npd:partOfField
620 - rdf:type owl:ObjectProperty ;
621 - rdfs:domain npd:FieldPart ;
622 - rdfs:range npd:Field .
623 -
624 npd:partOfTUF 518 npd:partOfTUF
625 rdf:type owl:ObjectProperty ; 519 rdf:type owl:ObjectProperty ;
626 rdfs:domain npd:TUFPart ; 520 rdfs:domain npd:TUFPart ;
...@@ -689,7 +583,7 @@ npd:wellPartOfField ...@@ -689,7 +583,7 @@ npd:wellPartOfField
689 rdf:type owl:ObjectProperty ; 583 rdf:type owl:ObjectProperty ;
690 rdfs:comment "A field may have several Wells, however this information is not presented directly in the NPD data. Each Well usually has one (occasionally more than one) WellBore, and so in order to ascertain what field the Well is in, we have to infer it from the related WellBore table. Unfortunately, the Field column is not always populated, so sometimes the Field can only be inferred from the License, which usually corresponds to a Field."^^xsd:string ; 584 rdfs:comment "A field may have several Wells, however this information is not presented directly in the NPD data. Each Well usually has one (occasionally more than one) WellBore, and so in order to ascertain what field the Well is in, we have to infer it from the related WellBore table. Unfortunately, the Field column is not always populated, so sometimes the Field can only be inferred from the License, which usually corresponds to a Field."^^xsd:string ;
691 rdfs:domain <http://www.reportinghub.no/ep/schema/well#Well> ; 585 rdfs:domain <http://www.reportinghub.no/ep/schema/well#Well> ;
692 - rdfs:range npd:Field . 586 + rdfs:range <http://www.reportinghub.no/ep/schema/facility#Field> .
693 587
694 npd:wellboreOwner 588 npd:wellboreOwner
695 rdf:type owl:ObjectProperty ; 589 rdf:type owl:ObjectProperty ;
......
...@@ -259,6 +259,15 @@ ...@@ -259,6 +259,15 @@
259 spinmap:rule 259 spinmap:rule
260 [ rdf:type spinmap:Mapping-1-1 ; 260 [ rdf:type spinmap:Mapping-1-1 ;
261 spinmap:context :Discovery-Discovery ; 261 spinmap:context :Discovery-Discovery ;
262 + spinmap:expression spin:_arg1 ;
263 + spinmap:sourcePredicate1
264 + <file:///www.reportinghub.no/transform/npd/discovery#dscCurrentActivityStatus> ;
265 + spinmap:targetPredicate1
266 + <http://www.reportinghub.no/np/schema/npd#discoveryCurrentActivityStatus>
267 + ] ;
268 + spinmap:rule
269 + [ rdf:type spinmap:Mapping-1-1 ;
270 + spinmap:context :Discovery-Discovery ;
262 spinmap:expression 271 spinmap:expression
263 [ rdf:type rhspin:wellBoreById ; 272 [ rdf:type rhspin:wellBoreById ;
264 arg:id spin:_arg1 273 arg:id spin:_arg1
...@@ -431,6 +440,15 @@ ...@@ -431,6 +440,15 @@
431 <file:///www.reportinghub.no/transform/npd/facilityfixed#fclKind> ; 440 <file:///www.reportinghub.no/transform/npd/facilityfixed#fclKind> ;
432 spinmap:targetPredicate1 441 spinmap:targetPredicate1
433 <http://www.reportinghub.no/np/schema/npd#facilityKind> 442 <http://www.reportinghub.no/np/schema/npd#facilityKind>
443 + ] ;
444 + spinmap:rule
445 + [ rdf:type spinmap:Mapping-1-1 ;
446 + spinmap:context :FacilityFixed-FixedFacility ;
447 + spinmap:expression spin:_arg1 ;
448 + spinmap:sourcePredicate1
449 + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclPhase> ;
450 + spinmap:targetPredicate1
451 + <http://www.reportinghub.no/np/schema/npd#fixedFacilityPhase>
434 ] . 452 ] .
435 453
436 <file:///www.reportinghub.no/transform/npd/facilitymoveable#FacilityMoveable> 454 <file:///www.reportinghub.no/transform/npd/facilitymoveable#FacilityMoveable>
...@@ -485,23 +503,13 @@ ...@@ -485,23 +503,13 @@
485 503
486 <file:///www.reportinghub.no/transform/npd/field#Field> 504 <file:///www.reportinghub.no/transform/npd/field#Field>
487 spinmap:rule 505 spinmap:rule
488 - [ rdf:type spinmap:Mapping-0-1 ;
489 - spinmap:context :Field-Field ;
490 - spinmap:expression <http://www.reportinghub.no/np/schema/npd#Field> ;
491 - spinmap:targetPredicate1
492 - rdf:type
493 - ] ;
494 - spinmap:rule
495 [ rdf:type spinmap:Mapping-1-1 ; 506 [ rdf:type spinmap:Mapping-1-1 ;
496 spinmap:context :Field-Field ; 507 spinmap:context :Field-Field ;
497 - spinmap:expression 508 + spinmap:expression spin:_arg1 ;
498 - [ rdf:type rhspin:companyById ;
499 - arg:id spin:_arg1
500 - ] ;
501 spinmap:sourcePredicate1 509 spinmap:sourcePredicate1
502 - <file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ; 510 + <file:///www.reportinghub.no/transform/npd/field#fldName> ;
503 spinmap:targetPredicate1 511 spinmap:targetPredicate1
504 - <http://www.reportinghub.no/np/schema/npd#fieldOperator> 512 + <http://www.reportinghub.no/np/schema/npd#name>
505 ] ; 513 ] ;
506 spinmap:rule 514 spinmap:rule
507 [ rdf:type spinmap:Mapping-1-1 ; 515 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -517,9 +525,16 @@ ...@@ -517,9 +525,16 @@
517 spinmap:context :Field-Field ; 525 spinmap:context :Field-Field ;
518 spinmap:expression spin:_arg1 ; 526 spinmap:expression spin:_arg1 ;
519 spinmap:sourcePredicate1 527 spinmap:sourcePredicate1
520 - <file:///www.reportinghub.no/transform/npd/field#fldName> ; 528 + <file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ;
521 spinmap:targetPredicate1 529 spinmap:targetPredicate1
522 - <http://www.reportinghub.no/np/schema/npd#name> 530 + <http://www.reportinghub.no/np/schema/npd#currentActivityStatus>
531 + ] ;
532 + spinmap:rule
533 + [ rdf:type spinmap:Mapping-0-1 ;
534 + spinmap:context :Field-Field ;
535 + spinmap:expression <http://www.reportinghub.no/ep/schema/facility#Field> ;
536 + spinmap:targetPredicate1
537 + rdf:type
523 ] ; 538 ] ;
524 spinmap:rule 539 spinmap:rule
525 [ rdf:type spinmap:Mapping-1-1 ; 540 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -537,29 +552,25 @@ ...@@ -537,29 +552,25 @@
537 [ rdf:type spinmap:Mapping-1-1 ; 552 [ rdf:type spinmap:Mapping-1-1 ;
538 spinmap:context :Field-Field ; 553 spinmap:context :Field-Field ;
539 spinmap:expression 554 spinmap:expression
540 - [ rdf:type spinmapl:resourceWithValue ; 555 + [ rdf:type rhspin:companyById ;
541 - sp:arg1 spin:_arg1 ; 556 + arg:id spin:_arg1
542 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#id> ;
543 - spinmapl:type <http://www.reportinghub.no/np/schema/npd#Owner>
544 ] ; 557 ] ;
545 spinmap:sourcePredicate1 558 spinmap:sourcePredicate1
546 - <file:///www.reportinghub.no/transform/npd/field#fldNpdidOwner> ; 559 + <file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ;
547 spinmap:targetPredicate1 560 spinmap:targetPredicate1
548 - <http://www.reportinghub.no/np/schema/npd#fieldOwner> 561 + <http://www.reportinghub.no/np/schema/npd#fieldOperator>
549 ] ; 562 ] ;
550 spinmap:rule 563 spinmap:rule
551 [ rdf:type spinmap:Mapping-1-1 ; 564 [ rdf:type spinmap:Mapping-1-1 ;
552 spinmap:context :Field-Field ; 565 spinmap:context :Field-Field ;
553 spinmap:expression 566 spinmap:expression
554 - [ rdf:type spinmapl:resourceWithValue ; 567 + [ rdf:type rhspin:companyById ;
555 - sp:arg1 spin:_arg1 ; 568 + arg:id spin:_arg1
556 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#code> ;
557 - spinmapl:type <http://www.reportinghub.no/np/schema/npd#FieldActivityStatus>
558 ] ; 569 ] ;
559 spinmap:sourcePredicate1 570 spinmap:sourcePredicate1
560 - <file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ; 571 + <file:///www.reportinghub.no/transform/npd/field#fldOwnerName> ;
561 spinmap:targetPredicate1 572 spinmap:targetPredicate1
562 - <http://www.reportinghub.no/np/schema/npd#currentActivityStatus> 573 + <http://www.reportinghub.no/np/schema/npd#fieldOwner>
563 ] . 574 ] .
564 575
565 <file:///www.reportinghub.no/transform/npd/licence#Licence> 576 <file:///www.reportinghub.no/transform/npd/licence#Licence>
...@@ -741,27 +752,6 @@ ...@@ -741,27 +752,6 @@
741 [ rdf:type spinmap:Mapping-1-1 ; 752 [ rdf:type spinmap:Mapping-1-1 ;
742 spinmap:context :WBDev-WellBore ; 753 spinmap:context :WBDev-WellBore ;
743 spinmap:expression 754 spinmap:expression
744 - [ rdf:type rhspin:facilityById ;
745 - arg:id spin:_arg1
746 - ] ;
747 - spinmap:sourcePredicate1
748 - <file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ;
749 - spinmap:targetPredicate1
750 - <http://www.reportinghub.no/np/schema/npd#productionFacility>
751 - ] ;
752 - spinmap:rule
753 - [ rdf:type spinmap:Mapping-1-1 ;
754 - spinmap:context :WBDev-WellBore ;
755 - spinmap:expression spin:_arg1 ;
756 - spinmap:sourcePredicate1
757 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ;
758 - spinmap:targetPredicate1
759 - <http://www.reportinghub.no/np/schema/npd#name>
760 - ] ;
761 - spinmap:rule
762 - [ rdf:type spinmap:Mapping-1-1 ;
763 - spinmap:context :WBDev-WellBore ;
764 - spinmap:expression
765 [ rdf:type rhspin:wellByName ; 755 [ rdf:type rhspin:wellByName ;
766 arg:wellName spin:_arg1 756 arg:wellName spin:_arg1
767 ] ; 757 ] ;
...@@ -771,25 +761,11 @@ ...@@ -771,25 +761,11 @@
771 <http://www.reportinghub.no/np/schema/npd#partOfWell> 761 <http://www.reportinghub.no/np/schema/npd#partOfWell>
772 ] ; 762 ] ;
773 spinmap:rule 763 spinmap:rule
774 - [ rdf:type spinmap:Mapping-1-1 ; 764 + [ rdf:type spinmap:Mapping-0-1 ;
775 spinmap:context :WBDev-WellBore ; 765 spinmap:context :WBDev-WellBore ;
776 - spinmap:expression spin:_arg1 ; 766 + spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
777 - spinmap:sourcePredicate1
778 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillPermit> ;
779 - spinmap:targetPredicate1
780 - <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit>
781 - ] ;
782 - spinmap:rule
783 - [ rdf:type spinmap:Mapping-1-1 ;
784 - spinmap:context :WBDev-Well ;
785 - spinmap:expression
786 - [ rdf:type rhspin:fieldById ;
787 - arg:id spin:_arg1
788 - ] ;
789 - spinmap:sourcePredicate1
790 - <file:///www.reportinghub.no/transform/npd/wbdev#fldNpdidField> ;
791 spinmap:targetPredicate1 767 spinmap:targetPredicate1
792 - <http://www.reportinghub.no/np/schema/npd#wellPartOfField> 768 + rdf:type
793 ] ; 769 ] ;
794 spinmap:rule 770 spinmap:rule
795 [ rdf:type spinmap:Mapping-1-1 ; 771 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -804,22 +780,14 @@ ...@@ -804,22 +780,14 @@
804 [ rdf:type spinmap:Mapping-1-1 ; 780 [ rdf:type spinmap:Mapping-1-1 ;
805 spinmap:context :WBDev-WellBore ; 781 spinmap:context :WBDev-WellBore ;
806 spinmap:expression 782 spinmap:expression
807 - [ rdf:type spinmapl:resourceWithValue ; 783 + [ rdf:type spif:parseDate ;
808 - sp:arg1 spin:_arg1 ; 784 + arg:pattern "dd.MM.yyyy"^^xsd:string ;
809 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#code> ; 785 + sp:arg1 spin:_arg1
810 - spinmapl:type <http://www.reportinghub.no/np/schema/npd#WellBoreContent>
811 ] ; 786 ] ;
812 spinmap:sourcePredicate1 787 spinmap:sourcePredicate1
813 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbContent> ; 788 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ;
814 - spinmap:targetPredicate1
815 - <http://www.reportinghub.no/np/schema/npd#wellBoreContent>
816 - ] ;
817 - spinmap:rule
818 - [ rdf:type spinmap:Mapping-0-1 ;
819 - spinmap:context :WBDev-Well ;
820 - spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
821 spinmap:targetPredicate1 789 spinmap:targetPredicate1
822 - rdf:type 790 + <http://www.reportinghub.no/np/schema/npd#startDate>
823 ] ; 791 ] ;
824 spinmap:rule 792 spinmap:rule
825 [ rdf:type spinmap:Mapping-1-1 ; 793 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -834,56 +802,46 @@ ...@@ -834,56 +802,46 @@
834 <http://www.reportinghub.no/np/schema/npd#drillingFacility> 802 <http://www.reportinghub.no/np/schema/npd#drillingFacility>
835 ] ; 803 ] ;
836 spinmap:rule 804 spinmap:rule
837 - [ rdf:type spinmap:Mapping-1-1 ;
838 - spinmap:context :WBDev-WellBore ;
839 - spinmap:expression
840 - [ rdf:type spinmapl:resourceWithValue ;
841 - sp:arg1 spin:_arg1 ;
842 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#name> ;
843 - spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
844 - ] ;
845 - spinmap:sourcePredicate1
846 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ;
847 - spinmap:targetPredicate1
848 - <http://www.reportinghub.no/np/schema/npd#drillingOperator>
849 - ] ;
850 - spinmap:rule
851 [ rdf:type spinmap:Mapping-0-1 ; 805 [ rdf:type spinmap:Mapping-0-1 ;
852 - spinmap:context :WBDev-WellBore ; 806 + spinmap:context :WBDev-Well ;
853 - spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ; 807 + spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
854 spinmap:targetPredicate1 808 spinmap:targetPredicate1
855 rdf:type 809 rdf:type
856 ] ; 810 ] ;
857 spinmap:rule 811 spinmap:rule
858 [ rdf:type spinmap:Mapping-1-1 ; 812 [ rdf:type spinmap:Mapping-1-1 ;
859 - spinmap:context :WBDev-WellBore ; 813 + spinmap:context :WBDev-Well ;
860 - spinmap:expression spin:_arg1 ; 814 + spinmap:expression
815 + [ rdf:type rhspin:fieldById ;
816 + arg:id spin:_arg1
817 + ] ;
861 spinmap:sourcePredicate1 818 spinmap:sourcePredicate1
862 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ; 819 + <file:///www.reportinghub.no/transform/npd/wbdev#fldNpdidField> ;
863 spinmap:targetPredicate1 820 spinmap:targetPredicate1
864 - <http://www.reportinghub.no/np/schema/npd#wellBoreType> 821 + <http://www.reportinghub.no/np/schema/npd#wellPartOfField>
865 ] ; 822 ] ;
866 spinmap:rule 823 spinmap:rule
867 [ rdf:type spinmap:Mapping-1-1 ; 824 [ rdf:type spinmap:Mapping-1-1 ;
868 spinmap:context :WBDev-WellBore ; 825 spinmap:context :WBDev-WellBore ;
869 spinmap:expression spin:_arg1 ; 826 spinmap:expression spin:_arg1 ;
870 spinmap:sourcePredicate1 827 spinmap:sourcePredicate1
871 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ; 828 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ;
872 spinmap:targetPredicate1 829 spinmap:targetPredicate1
873 - <http://www.reportinghub.no/np/schema/npd#id> 830 + <http://www.reportinghub.no/np/schema/npd#name>
874 ] ; 831 ] ;
875 spinmap:rule 832 spinmap:rule
876 [ rdf:type spinmap:Mapping-1-1 ; 833 [ rdf:type spinmap:Mapping-1-1 ;
877 spinmap:context :WBDev-WellBore ; 834 spinmap:context :WBDev-WellBore ;
878 spinmap:expression 835 spinmap:expression
879 - [ rdf:type spif:parseDate ; 836 + [ rdf:type spinmapl:resourceWithValue ;
880 - arg:pattern "dd.MM.yyyy"^^xsd:string ; 837 + sp:arg1 spin:_arg1 ;
881 - sp:arg1 spin:_arg1 838 + spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#code> ;
839 + spinmapl:type <http://www.reportinghub.no/np/schema/npd#WellBoreContent>
882 ] ; 840 ] ;
883 spinmap:sourcePredicate1 841 spinmap:sourcePredicate1
884 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbCompletionDate> ; 842 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbContent> ;
885 spinmap:targetPredicate1 843 spinmap:targetPredicate1
886 - <http://www.reportinghub.no/np/schema/npd#wellBoreCompletionDate> 844 + <http://www.reportinghub.no/np/schema/npd#wellBoreContent>
887 ] ; 845 ] ;
888 spinmap:rule 846 spinmap:rule
889 [ rdf:type spinmap:Mapping-1-1 ; 847 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -908,9 +866,18 @@ ...@@ -908,9 +866,18 @@
908 sp:arg1 spin:_arg1 866 sp:arg1 spin:_arg1
909 ] ; 867 ] ;
910 spinmap:sourcePredicate1 868 spinmap:sourcePredicate1
911 - <file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ; 869 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbCompletionDate> ;
912 spinmap:targetPredicate1 870 spinmap:targetPredicate1
913 - <http://www.reportinghub.no/np/schema/npd#startDate> 871 + <http://www.reportinghub.no/np/schema/npd#wellBoreCompletionDate>
872 + ] ;
873 + spinmap:rule
874 + [ rdf:type spinmap:Mapping-1-1 ;
875 + spinmap:context :WBDev-WellBore ;
876 + spinmap:expression spin:_arg1 ;
877 + spinmap:sourcePredicate1
878 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillPermit> ;
879 + spinmap:targetPredicate1
880 + <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit>
914 ] ; 881 ] ;
915 spinmap:rule 882 spinmap:rule
916 [ rdf:type spinmap:Mapping-1-1 ; 883 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -923,70 +890,71 @@ ...@@ -923,70 +890,71 @@
923 <file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ; 890 <file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ;
924 spinmap:targetPredicate1 891 spinmap:targetPredicate1
925 <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence> 892 <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence>
926 - ] . 893 + ] ;
927 -
928 -<file:///www.reportinghub.no/transform/npd/wbexp#WBExp>
929 spinmap:rule 894 spinmap:rule
930 [ rdf:type spinmap:Mapping-1-1 ; 895 [ rdf:type spinmap:Mapping-1-1 ;
931 - spinmap:context :WBExp-WellBore ; 896 + spinmap:context :WBDev-WellBore ;
932 spinmap:expression 897 spinmap:expression
933 - [ rdf:type spinmapl:resourceWithValue ; 898 + [ rdf:type rhspin:facilityById ;
934 - sp:arg1 spin:_arg1 ; 899 + arg:id spin:_arg1
935 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#name> ;
936 - spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
937 ] ; 900 ] ;
938 spinmap:sourcePredicate1 901 spinmap:sourcePredicate1
939 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillingOperator> ; 902 + <file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ;
940 spinmap:targetPredicate1 903 spinmap:targetPredicate1
941 - <http://www.reportinghub.no/np/schema/npd#drillingOperator> 904 + <http://www.reportinghub.no/np/schema/npd#productionFacility>
942 ] ; 905 ] ;
943 spinmap:rule 906 spinmap:rule
944 [ rdf:type spinmap:Mapping-1-1 ; 907 [ rdf:type spinmap:Mapping-1-1 ;
945 - spinmap:context :WBExp-WellBore ; 908 + spinmap:context :WBDev-WellBore ;
946 spinmap:expression spin:_arg1 ; 909 spinmap:expression spin:_arg1 ;
947 spinmap:sourcePredicate1 910 spinmap:sourcePredicate1
948 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbWellType> ; 911 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ;
949 spinmap:targetPredicate1 912 spinmap:targetPredicate1
950 - <http://www.reportinghub.no/np/schema/npd#wellBoreType> 913 + <http://www.reportinghub.no/np/schema/npd#id>
951 ] ; 914 ] ;
952 spinmap:rule 915 spinmap:rule
953 [ rdf:type spinmap:Mapping-1-1 ; 916 [ rdf:type spinmap:Mapping-1-1 ;
954 - spinmap:context :WBExp-WellBore ; 917 + spinmap:context :WBDev-WellBore ;
955 spinmap:expression 918 spinmap:expression
956 - [ rdf:type spif:parseDate ; 919 + [ rdf:type spinmapl:resourceWithValue ;
957 - arg:pattern "dd.MM.yyyy"^^xsd:string ; 920 + sp:arg1 spin:_arg1 ;
958 - sp:arg1 spin:_arg1 921 + spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#name> ;
922 + spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
959 ] ; 923 ] ;
960 spinmap:sourcePredicate1 924 spinmap:sourcePredicate1
961 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbEntryDate> ; 925 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ;
962 spinmap:targetPredicate1 926 spinmap:targetPredicate1
963 - <http://www.reportinghub.no/np/schema/npd#startDate> 927 + <http://www.reportinghub.no/np/schema/npd#drillingOperator>
964 ] ; 928 ] ;
965 spinmap:rule 929 spinmap:rule
966 - [ rdf:type spinmap:Mapping-0-1 ; 930 + [ rdf:type spinmap:Mapping-1-1 ;
967 - spinmap:context :WBExp-Well ; 931 + spinmap:context :WBDev-WellBore ;
968 - spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ; 932 + spinmap:expression spin:_arg1 ;
933 + spinmap:sourcePredicate1
934 + <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ;
969 spinmap:targetPredicate1 935 spinmap:targetPredicate1
970 - rdf:type 936 + <http://www.reportinghub.no/np/schema/npd#wellBoreType>
971 - ] ; 937 + ] .
938 +
939 +<file:///www.reportinghub.no/transform/npd/wbexp#WBExp>
972 spinmap:rule 940 spinmap:rule
973 [ rdf:type spinmap:Mapping-1-1 ; 941 [ rdf:type spinmap:Mapping-1-1 ;
974 - spinmap:context :WBExp-Well ; 942 + spinmap:context :WBExp-WellBore ;
975 spinmap:expression 943 spinmap:expression
976 - [ rdf:type rhspin:fieldById ; 944 + [ rdf:type rhspin:facilityById ;
977 arg:id spin:_arg1 945 arg:id spin:_arg1
978 ] ; 946 ] ;
979 spinmap:sourcePredicate1 947 spinmap:sourcePredicate1
980 - <file:///www.reportinghub.no/transform/npd/wbexp#fldNpdidField> ; 948 + <file:///www.reportinghub.no/transform/npd/wbexp#fclNpdidFacilityDrilling> ;
981 spinmap:targetPredicate1 949 spinmap:targetPredicate1
982 - <http://www.reportinghub.no/np/schema/npd#wellPartOfField> 950 + <http://www.reportinghub.no/np/schema/npd#drillingFacility>
983 ] ; 951 ] ;
984 spinmap:rule 952 spinmap:rule
985 [ rdf:type spinmap:Mapping-1-1 ; 953 [ rdf:type spinmap:Mapping-1-1 ;
986 - spinmap:context :WBExp-Well ; 954 + spinmap:context :WBExp-WellBore ;
987 spinmap:expression spin:_arg1 ; 955 spinmap:expression spin:_arg1 ;
988 spinmap:sourcePredicate1 956 spinmap:sourcePredicate1
989 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ; 957 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbWellboreName> ;
990 spinmap:targetPredicate1 958 spinmap:targetPredicate1
991 <http://www.reportinghub.no/np/schema/npd#name> 959 <http://www.reportinghub.no/np/schema/npd#name>
992 ] ; 960 ] ;
...@@ -1007,40 +975,59 @@ ...@@ -1007,40 +975,59 @@
1007 spinmap:rule 975 spinmap:rule
1008 [ rdf:type spinmap:Mapping-1-1 ; 976 [ rdf:type spinmap:Mapping-1-1 ;
1009 spinmap:context :WBExp-WellBore ; 977 spinmap:context :WBExp-WellBore ;
978 + spinmap:expression spin:_arg1 ;
979 + spinmap:sourcePredicate1
980 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillPermit> ;
981 + spinmap:targetPredicate1
982 + <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit>
983 + ] ;
984 + spinmap:rule
985 + [ rdf:type spinmap:Mapping-0-1 ;
986 + spinmap:context :WBExp-Well ;
987 + spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
988 + spinmap:targetPredicate1
989 + rdf:type
990 + ] ;
991 + spinmap:rule
992 + [ rdf:type spinmap:Mapping-1-1 ;
993 + spinmap:context :WBExp-WellBore ;
1010 spinmap:expression 994 spinmap:expression
1011 [ rdf:type spinmapl:resourceWithValue ; 995 [ rdf:type spinmapl:resourceWithValue ;
1012 sp:arg1 spin:_arg1 ; 996 sp:arg1 spin:_arg1 ;
1013 - spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#code> ; 997 + spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#name> ;
1014 - spinmapl:type <http://www.reportinghub.no/np/schema/npd#ExplorationWellBorePurpose> 998 + spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
1015 ] ; 999 ] ;
1016 spinmap:sourcePredicate1 1000 spinmap:sourcePredicate1
1017 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbPurpose> ; 1001 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillingOperator> ;
1018 spinmap:targetPredicate1 1002 spinmap:targetPredicate1
1019 - <http://www.reportinghub.no/np/schema/npd#wellBorePurpose> 1003 + <http://www.reportinghub.no/np/schema/npd#drillingOperator>
1020 ] ; 1004 ] ;
1021 spinmap:rule 1005 spinmap:rule
1022 [ rdf:type spinmap:Mapping-1-1 ; 1006 [ rdf:type spinmap:Mapping-1-1 ;
1023 spinmap:context :WBExp-WellBore ; 1007 spinmap:context :WBExp-WellBore ;
1024 spinmap:expression 1008 spinmap:expression
1025 - [ rdf:type rhspin:facilityById ; 1009 + [ rdf:type spif:parseDate ;
1026 - arg:id spin:_arg1 1010 + arg:pattern "dd.MM.yyyy"^^xsd:string ;
1011 + sp:arg1 spin:_arg1
1027 ] ; 1012 ] ;
1028 spinmap:sourcePredicate1 1013 spinmap:sourcePredicate1
1029 - <file:///www.reportinghub.no/transform/npd/wbexp#fclNpdidFacilityDrilling> ; 1014 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbCompletionDate> ;
1030 spinmap:targetPredicate1 1015 spinmap:targetPredicate1
1031 - <http://www.reportinghub.no/np/schema/npd#drillingFacility> 1016 + <http://www.reportinghub.no/np/schema/npd#wellBoreCompletionDate>
1032 ] ; 1017 ] ;
1033 spinmap:rule 1018 spinmap:rule
1034 [ rdf:type spinmap:Mapping-1-1 ; 1019 [ rdf:type spinmap:Mapping-1-1 ;
1035 spinmap:context :WBExp-WellBore ; 1020 spinmap:context :WBExp-WellBore ;
1036 spinmap:expression 1021 spinmap:expression
1037 - [ rdf:type rhspin:licenceById ; 1022 + [ rdf:type spinmapl:resourceWithValue ;
1038 - arg:id spin:_arg1 1023 + sp:arg1 spin:_arg1 ;
1024 + spinmapl:predicate <http://www.reportinghub.no/np/schema/npd#code> ;
1025 + spinmapl:type <http://www.reportinghub.no/np/schema/npd#ExplorationWellBorePurpose>
1039 ] ; 1026 ] ;
1040 spinmap:sourcePredicate1 1027 spinmap:sourcePredicate1
1041 - <file:///www.reportinghub.no/transform/npd/wbexp#prlNpdidProductionLicence> ; 1028 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbPurpose> ;
1042 spinmap:targetPredicate1 1029 spinmap:targetPredicate1
1043 - <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence> 1030 + <http://www.reportinghub.no/np/schema/npd#wellBorePurpose>
1044 ] ; 1031 ] ;
1045 spinmap:rule 1032 spinmap:rule
1046 [ rdf:type spinmap:Mapping-1-1 ; 1033 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -1055,35 +1042,47 @@ ...@@ -1055,35 +1042,47 @@
1055 [ rdf:type spinmap:Mapping-1-1 ; 1042 [ rdf:type spinmap:Mapping-1-1 ;
1056 spinmap:context :WBExp-WellBore ; 1043 spinmap:context :WBExp-WellBore ;
1057 spinmap:expression 1044 spinmap:expression
1058 - [ rdf:type rhspin:wellByName ; 1045 + [ rdf:type spif:parseDate ;
1059 - arg:wellName spin:_arg1 1046 + arg:pattern "dd.MM.yyyy"^^xsd:string ;
1047 + sp:arg1 spin:_arg1
1060 ] ; 1048 ] ;
1061 spinmap:sourcePredicate1 1049 spinmap:sourcePredicate1
1062 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ; 1050 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbEntryDate> ;
1063 spinmap:targetPredicate1 1051 spinmap:targetPredicate1
1064 - <http://www.reportinghub.no/np/schema/npd#partOfWell> 1052 + <http://www.reportinghub.no/np/schema/npd#startDate>
1065 ] ; 1053 ] ;
1066 spinmap:rule 1054 spinmap:rule
1067 [ rdf:type spinmap:Mapping-1-1 ; 1055 [ rdf:type spinmap:Mapping-1-1 ;
1068 - spinmap:context :WBExp-WellBore ; 1056 + spinmap:context :WBExp-Well ;
1069 spinmap:expression 1057 spinmap:expression
1070 - [ rdf:type spif:parseDate ; 1058 + [ rdf:type rhspin:fieldById ;
1071 - arg:pattern "dd.MM.yyyy"^^xsd:string ; 1059 + arg:id spin:_arg1
1072 - sp:arg1 spin:_arg1
1073 ] ; 1060 ] ;
1074 spinmap:sourcePredicate1 1061 spinmap:sourcePredicate1
1075 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbCompletionDate> ; 1062 + <file:///www.reportinghub.no/transform/npd/wbexp#fldNpdidField> ;
1076 spinmap:targetPredicate1 1063 spinmap:targetPredicate1
1077 - <http://www.reportinghub.no/np/schema/npd#wellBoreCompletionDate> 1064 + <http://www.reportinghub.no/np/schema/npd#wellPartOfField>
1078 ] ; 1065 ] ;
1079 spinmap:rule 1066 spinmap:rule
1080 [ rdf:type spinmap:Mapping-1-1 ; 1067 [ rdf:type spinmap:Mapping-1-1 ;
1081 spinmap:context :WBExp-WellBore ; 1068 spinmap:context :WBExp-WellBore ;
1082 spinmap:expression spin:_arg1 ; 1069 spinmap:expression spin:_arg1 ;
1083 spinmap:sourcePredicate1 1070 spinmap:sourcePredicate1
1084 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillPermit> ; 1071 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbWellType> ;
1085 spinmap:targetPredicate1 1072 spinmap:targetPredicate1
1086 - <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit> 1073 + <http://www.reportinghub.no/np/schema/npd#wellBoreType>
1074 + ] ;
1075 + spinmap:rule
1076 + [ rdf:type spinmap:Mapping-1-1 ;
1077 + spinmap:context :WBExp-WellBore ;
1078 + spinmap:expression
1079 + [ rdf:type rhspin:licenceById ;
1080 + arg:id spin:_arg1
1081 + ] ;
1082 + spinmap:sourcePredicate1
1083 + <file:///www.reportinghub.no/transform/npd/wbexp#prlNpdidProductionLicence> ;
1084 + spinmap:targetPredicate1
1085 + <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence>
1087 ] ; 1086 ] ;
1088 spinmap:rule 1087 spinmap:rule
1089 [ rdf:type spinmap:Mapping-0-1 ; 1088 [ rdf:type spinmap:Mapping-0-1 ;
...@@ -1094,12 +1093,24 @@ ...@@ -1094,12 +1093,24 @@
1094 ] ; 1093 ] ;
1095 spinmap:rule 1094 spinmap:rule
1096 [ rdf:type spinmap:Mapping-1-1 ; 1095 [ rdf:type spinmap:Mapping-1-1 ;
1097 - spinmap:context :WBExp-WellBore ; 1096 + spinmap:context :WBExp-Well ;
1098 spinmap:expression spin:_arg1 ; 1097 spinmap:expression spin:_arg1 ;
1099 spinmap:sourcePredicate1 1098 spinmap:sourcePredicate1
1100 - <file:///www.reportinghub.no/transform/npd/wbexp#wlbWellboreName> ; 1099 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ;
1101 spinmap:targetPredicate1 1100 spinmap:targetPredicate1
1102 <http://www.reportinghub.no/np/schema/npd#name> 1101 <http://www.reportinghub.no/np/schema/npd#name>
1102 + ] ;
1103 + spinmap:rule
1104 + [ rdf:type spinmap:Mapping-1-1 ;
1105 + spinmap:context :WBExp-WellBore ;
1106 + spinmap:expression
1107 + [ rdf:type rhspin:wellByName ;
1108 + arg:wellName spin:_arg1
1109 + ] ;
1110 + spinmap:sourcePredicate1
1111 + <file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ;
1112 + spinmap:targetPredicate1
1113 + <http://www.reportinghub.no/np/schema/npd#partOfWell>
1103 ] . 1114 ] .
1104 1115
1105 <file:///www.reportinghub.no/transform/npd/wbid#WBId> 1116 <file:///www.reportinghub.no/transform/npd/wbid#WBId>
...@@ -1198,17 +1209,20 @@ ...@@ -1198,17 +1209,20 @@
1198 <http://www.reportinghub.no/np/schema/npd#partOfWell> 1209 <http://www.reportinghub.no/np/schema/npd#partOfWell>
1199 ] ; 1210 ] ;
1200 spinmap:rule 1211 spinmap:rule
1201 - [ rdf:type spinmap:Mapping-1-1 ; 1212 + [ rdf:type spinmap:Mapping-0-1 ;
1202 spinmap:context :WBSha-WellBore ; 1213 spinmap:context :WBSha-WellBore ;
1203 - spinmap:expression 1214 + spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
1204 - [ rdf:type spif:parseDate ; 1215 + spinmap:targetPredicate1
1205 - arg:pattern "dd.MM.yyyy"^^xsd:string ; 1216 + rdf:type
1206 - sp:arg1 spin:_arg1
1207 ] ; 1217 ] ;
1218 + spinmap:rule
1219 + [ rdf:type spinmap:Mapping-1-1 ;
1220 + spinmap:context :WBSha-WellBore ;
1221 + spinmap:expression spin:_arg1 ;
1208 spinmap:sourcePredicate1 1222 spinmap:sourcePredicate1
1209 - <file:///www.reportinghub.no/transform/npd/wbsha#wlbEntryDate> ; 1223 + <file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillPermit> ;
1210 spinmap:targetPredicate1 1224 spinmap:targetPredicate1
1211 - <http://www.reportinghub.no/np/schema/npd#startDate> 1225 + <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit>
1212 ] ; 1226 ] ;
1213 spinmap:rule 1227 spinmap:rule
1214 [ rdf:type spinmap:Mapping-1-1 ; 1228 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -1225,29 +1239,6 @@ ...@@ -1225,29 +1239,6 @@
1225 <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence> 1239 <http://www.reportinghub.no/np/schema/npd#drilledInProductionLicence>
1226 ] ; 1240 ] ;
1227 spinmap:rule 1241 spinmap:rule
1228 - [ rdf:type spinmap:Mapping-0-1 ;
1229 - spinmap:context :WBSha-WellBore ;
1230 - spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
1231 - spinmap:targetPredicate1
1232 - rdf:type
1233 - ] ;
1234 - spinmap:rule
1235 - [ rdf:type spinmap:Mapping-0-1 ;
1236 - spinmap:context :WBSha-Well ;
1237 - spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
1238 - spinmap:targetPredicate1
1239 - rdf:type
1240 - ] ;
1241 - spinmap:rule
1242 - [ rdf:type spinmap:Mapping-1-1 ;
1243 - spinmap:context :WBSha-WellBore ;
1244 - spinmap:expression spin:_arg1 ;
1245 - spinmap:sourcePredicate1
1246 - <file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillPermit> ;
1247 - spinmap:targetPredicate1
1248 - <http://www.reportinghub.no/np/schema/npd#wellBoreDrillPermit>
1249 - ] ;
1250 - spinmap:rule
1251 [ rdf:type spinmap:Mapping-1-1 ; 1242 [ rdf:type spinmap:Mapping-1-1 ;
1252 spinmap:context :WBSha-WellBore ; 1243 spinmap:context :WBSha-WellBore ;
1253 spinmap:expression spin:_arg1 ; 1244 spinmap:expression spin:_arg1 ;
...@@ -1257,13 +1248,11 @@ ...@@ -1257,13 +1248,11 @@
1257 <http://www.reportinghub.no/np/schema/npd#name> 1248 <http://www.reportinghub.no/np/schema/npd#name>
1258 ] ; 1249 ] ;
1259 spinmap:rule 1250 spinmap:rule
1260 - [ rdf:type spinmap:Mapping-1-1 ; 1251 + [ rdf:type spinmap:Mapping-0-1 ;
1261 spinmap:context :WBSha-Well ; 1252 spinmap:context :WBSha-Well ;
1262 - spinmap:expression spin:_arg1 ; 1253 + spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
1263 - spinmap:sourcePredicate1
1264 - <file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
1265 spinmap:targetPredicate1 1254 spinmap:targetPredicate1
1266 - <http://www.reportinghub.no/np/schema/npd#name> 1255 + rdf:type
1267 ] ; 1256 ] ;
1268 spinmap:rule 1257 spinmap:rule
1269 [ rdf:type spinmap:Mapping-1-1 ; 1258 [ rdf:type spinmap:Mapping-1-1 ;
...@@ -1282,6 +1271,19 @@ ...@@ -1282,6 +1271,19 @@
1282 spinmap:rule 1271 spinmap:rule
1283 [ rdf:type spinmap:Mapping-1-1 ; 1272 [ rdf:type spinmap:Mapping-1-1 ;
1284 spinmap:context :WBSha-WellBore ; 1273 spinmap:context :WBSha-WellBore ;
1274 + spinmap:expression
1275 + [ rdf:type spif:parseDate ;
1276 + arg:pattern "dd.MM.yyyy"^^xsd:string ;
1277 + sp:arg1 spin:_arg1
1278 + ] ;
1279 + spinmap:sourcePredicate1
1280 + <file:///www.reportinghub.no/transform/npd/wbsha#wlbEntryDate> ;
1281 + spinmap:targetPredicate1
1282 + <http://www.reportinghub.no/np/schema/npd#startDate>
1283 + ] ;
1284 + spinmap:rule
1285 + [ rdf:type spinmap:Mapping-1-1 ;
1286 + spinmap:context :WBSha-WellBore ;
1285 spinmap:expression spin:_arg1 ; 1287 spinmap:expression spin:_arg1 ;
1286 spinmap:sourcePredicate1 1288 spinmap:sourcePredicate1
1287 <file:///www.reportinghub.no/transform/npd/wbsha#wlbNpdidWellbore> ; 1289 <file:///www.reportinghub.no/transform/npd/wbsha#wlbNpdidWellbore> ;
...@@ -1290,6 +1292,15 @@ ...@@ -1290,6 +1292,15 @@
1290 ] ; 1292 ] ;
1291 spinmap:rule 1293 spinmap:rule
1292 [ rdf:type spinmap:Mapping-1-1 ; 1294 [ rdf:type spinmap:Mapping-1-1 ;
1295 + spinmap:context :WBSha-Well ;
1296 + spinmap:expression spin:_arg1 ;
1297 + spinmap:sourcePredicate1
1298 + <file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
1299 + spinmap:targetPredicate1
1300 + <http://www.reportinghub.no/np/schema/npd#name>
1301 + ] ;
1302 + spinmap:rule
1303 + [ rdf:type spinmap:Mapping-1-1 ;
1293 spinmap:context :WBSha-WellBore ; 1304 spinmap:context :WBSha-WellBore ;
1294 spinmap:expression 1305 spinmap:expression
1295 [ rdf:type spif:parseDate ; 1306 [ rdf:type spif:parseDate ;
...@@ -1403,7 +1414,7 @@ arg:wellName ...@@ -1403,7 +1414,7 @@ arg:wellName
1403 [ rdf:type :buildFieldURI ; 1414 [ rdf:type :buildFieldURI ;
1404 spinmap:source spinmap:_source 1415 spinmap:source spinmap:_source
1405 ] ; 1416 ] ;
1406 - spinmap:targetClass <http://www.reportinghub.no/np/schema/npd#Field> . 1417 + spinmap:targetClass <http://www.reportinghub.no/ep/schema/facility#Field> .
1407 1418
1408 :License-License 1419 :License-License
1409 rdf:type spinmap:Context ; 1420 rdf:type spinmap:Context ;
......