David Leal

Merging of DDR and NPD ontologies

# Saved by TopBraid on Mon Aug 08 14:39:42 BST 2011
# Saved by TopBraid on Tue Aug 09 15:23:56 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.linkedmodel.org/1.2/schema/vaem
# imports: http://www.linkedmodel.org/1.1/schema/ordered
......@@ -21,7 +21,7 @@
ep-activity:Activity
rdf:type owl:Class ;
rdfs:label "Activity"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/iso15926/nativeOWL#Activity> ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
......@@ -29,6 +29,11 @@ ep-activity:Activity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:startedAt
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:Activity ;
owl:onProperty <http://www.linkedmodel.org/schema/ordered#after>
] ;
......@@ -46,11 +51,6 @@ ep-activity:Activity
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:Activity ;
owl:onProperty <http://www.linkedmodel.org/schema/ordered#during>
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:startedAt
] .
ep-activity:DailyDrillingActivity
......@@ -59,8 +59,8 @@ ep-activity:DailyDrillingActivity
rdfs:subClassOf ep-activity:DrillingActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
owl:allValuesFrom ep-activity:Activity ;
owl:onProperty <http://www.reportinghub.no/ep/schema/core#hasPart>
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
......@@ -69,8 +69,8 @@ ep-activity:DailyDrillingActivity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:DrillingActivity ;
owl:onProperty ep-activity:hasSubActivity
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
......@@ -176,8 +176,8 @@ ep-activity:OffshoreWellActivity
rdfs:subClassOf ep-activity:OffshoreActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/equipment#Rig> ;
owl:onProperty ep-activity:onRig
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:onWell
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
......@@ -188,11 +188,6 @@ ep-activity:OffshoreWellActivity
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#Well> ;
owl:onProperty ep-activity:onWell
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:onWell
] .
ep-activity:PressureTestType
......
# Saved by TopBraid on Sun Aug 07 12:55:41 PDT 2011
# Saved by TopBraid on Tue Aug 09 15:02:54 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/1.1/core
# imports: http://www.linkedmodel.org/1.2/schema/vaem
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/iso15926/bindEP-NativeOWL
@prefix bindEP-NativeOWL: <http://www.reportinghub.no/iso15926/bindEP-NativeOWL#> .
@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
......@@ -14,22 +12,58 @@
<http://www.reportinghub.no/ep/schema/1.1/core>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.linkedmodel.org/1.2/schema/vaem> , <http://www.reportinghub.no/iso15926/bindEP-NativeOWL> ;
owl:imports <http://www.linkedmodel.org/1.2/schema/vaem> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ep-core:PhysicalObject
rdf:type owl:Class ;
rdfs:label "physical object"^^xsd:string ;
rdfs:subClassOf ep-core:PhysicalThing .
ep-core:PhysicalThing
rdf:type owl:Class ;
rdfs:label "physical thing"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ep-core:basisFor
rdf:type owl:ObjectProperty ;
rdfs:label "basis for"^^xsd:string .
ep-core:derivedFrom
rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:label "derived from"^^xsd:string .
ep-core:hasPart
rdf:type owl:ObjectProperty ;
rdfs:label "has part"^^xsd:string .
rdf:type owl:TransitiveProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "has part"^^xsd:string ;
rdfs:range ep-core:PhysicalThing ;
owl:inverseOf ep-core:partOf .
ep-core:hasTemporalPart
rdf:type owl:TransitiveProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "has temporal part"^^xsd:string ;
rdfs:range ep-core:PhysicalThing ;
rdfs:subPropertyOf ep-core:hasPart ;
owl:inverseOf ep-core:partOf .
ep-core:name
rdf:type owl:DatatypeProperty ;
rdfs:label "name"^^xsd:string ;
rdfs:range xsd:string .
ep-core:partOf
rdf:type owl:TransitiveProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "part of"^^xsd:string ;
rdfs:range ep-core:PhysicalThing ;
owl:inverseOf ep-core:hasPart .
ep-core:temporalPartOf
rdf:type owl:TransitiveProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "temporal part of"^^xsd:string ;
rdfs:range ep-core:PhysicalThing ;
rdfs:subPropertyOf ep-core:hasPart ;
owl:inverseOf ep-core:hasTemporalPart .
......
# Saved by TopBraid on Sun Aug 07 12:55:41 PDT 2011
# Saved by TopBraid on Tue Aug 09 15:41:34 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/equipment
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/schema/1.1/core
@prefix : <http://www.reportinghub.no/ep/schema/equipment#> .
......@@ -10,17 +9,15 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/core#PhysicalThing>
rdfs:comment "Equivalent to ISO 15926-2 Possible Individual - DL"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/ep/schema/1.1/core> ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/core> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ep-eqt:Equipment
rdf:type owl:Class ;
rdfs:label "Equipment"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ep-eqt:Rig
rdf:type owl:Class ;
rdfs:label "Rig"^^xsd:string ;
rdfs:subClassOf ep-eqt:Equipment .
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> .
......
# Saved by TopBraid on Sun Aug 07 12:55:41 PDT 2011
# Saved by TopBraid on Tue Aug 09 15:08:18 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/well
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/schema/1.1/core
@prefix : <http://www.reportinghub.no/ep/schema/well#> .
......@@ -12,12 +11,13 @@
<http://www.reportinghub.no/ep/schema/well>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/ep/schema/1.1/core> ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/core> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ep-well:AllOrPartOfTheLifeOfAWellBore
rdf:type owl:Class ;
rdfs:label "all or part of the life of a well bore"^^xsd:string .
rdfs:label "all or part of the life of a well bore"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> .
ep-well:TemporalPartOfAWellBore
rdf:type owl:Class ;
......@@ -27,16 +27,16 @@ ep-well:TemporalPartOfAWellBore
ep-well:Well
rdf:type owl:Class ;
rdfs:label "Well"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://www.reportinghub.no/ep/schema/core#name>
owl:allValuesFrom ep-well:WellBore ;
owl:onProperty <http://www.reportinghub.no/ep/schema/core#hasPart>
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-well:WellBore ;
owl:onProperty <http://www.reportinghub.no/ep/schema/core#hasPart>
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://www.reportinghub.no/ep/schema/core#name>
] .
ep-well:WellBore
......
# Saved by TopBraid on Sun Aug 07 12:55:42 PDT 2011
# Saved by TopBraid on Tue Aug 09 14:47:57 BST 2011
# baseURI: http://www.reportinghub.no/ep/spin/ddr-constraints
# imports: http://www.reportinghub.no/ep/schema/1.1.1/ddr
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/1.1/schema/npd
# imports: http://spinrdf.org/spin
# imports: http://www.reportinghub.no/1.1/schema/npd
@prefix : <http://www.reportinghub.no/ep/spin/ddr-constraints#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
......@@ -26,7 +26,7 @@
sp:elements ([ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/schema/npd#name> ;
sp:subject _:b2
] [ sp:object <http://www.reportinghub.no/schema/npd#WellBore> ;
] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBore> ;
sp:predicate rdf:type ;
sp:subject _:b2
])
......@@ -37,7 +37,7 @@
<http://www.reportinghub.no/ep/spin/ddr-constraints>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.1.1/ddr> , <http://www.reportinghub.no/1.1/schema/npd> ;
owl:imports <http://www.reportinghub.no/1.1/schema/npd> , <http://www.reportinghub.no/ep/schema/1.1.1/ddr> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.1/activity> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
_:b2 sp:varName "wellBore"^^xsd:string .
......
# Saved by TopBraid on Sun Aug 07 12:55:42 PDT 2011
# Saved by TopBraid on Tue Aug 09 14:47:57 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
# Saved by TopBraid on Mon Aug 08 17:04:22 BST 2011
# Saved by TopBraid on Tue Aug 09 15:05:12 BST 2011
# baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/activity
# imports: http://www.reportinghub.no/ep/spin/1.1/lib
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr
# imports: http://www.reportinghub.no/iso15926/bindEP-NativeOWL
# imports: http://www.reportinghub.no/ep/schema/1.1/activity-purpose
# imports: http://www.reportinghub.no/ep/schema/equipment
# imports: http://spinrdf.org/spin
......@@ -158,7 +157,7 @@
sp:predicate rdf:type ;
sp:subject _:b25
] [ sp:object _:b25 ;
sp:predicate iso15926:hasPart ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
sp:subject _:b26
] [ sp:object _:b27 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
......@@ -170,7 +169,7 @@
sp:predicate rdf:type ;
sp:subject _:b29
] [ sp:object _:b30 ;
sp:predicate iso15926:temporalPartOf ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
sp:subject _:b29
] [ sp:object _:b29 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
......@@ -234,101 +233,101 @@
<http://www.reportinghub.no/ep/transform/1.1/ddr/activity>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/equipment> , <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/schema/1.1/activity-purpose> , <http://www.reportinghub.no/iso15926/bindEP-NativeOWL> ;
owl:imports <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/equipment> , <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/schema/1.1/activity-purpose> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
_:b3 sp:varName "nameWellBore"^^xsd:string .
_:b4 sp:varName "activity"^^xsd:string .
_:b8 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b5 sp:varName "index"^^xsd:string .
_:b7 sp:varName "proprietaryCode"^^xsd:string .
_:b6 sp:varName "dTimStartPart"^^xsd:string .
_:b7 sp:varName "proprietaryCode"^^xsd:string .
_:b5 sp:varName "index"^^xsd:string .
_:b8 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b4 sp:varName "activity"^^xsd:string .
_:b3 sp:varName "nameWellBore"^^xsd:string .
_:b2 sp:varName "partActivity"^^xsd:string .
_:b1 sp:varName "drillingActivityPurposeType"^^xsd:string .
_:b17
sp:varName "md"^^xsd:string .
_:b16
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b18
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b15
sp:varName "partActivity"^^xsd:string .
_:b19
sp:varName "nameWellBore"^^xsd:string .
_:b14
sp:varName "dTimStartPart"^^xsd:string .
_:b20
_:b13
sp:varName "index"^^xsd:string .
_:b12
sp:varName "activity"^^xsd:string .
_:b21
sp:varName "index"^^xsd:string .
_:b11
sp:varName "nameWellBore"^^xsd:string .
_:b22
sp:varName "dTimStartPart"^^xsd:string .
_:b10
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b23
sp:varName "partActivity"^^xsd:string .
_:b9 sp:varName "tvd"^^xsd:string .
_:b24
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b9 sp:varName "tvd"^^xsd:string .
_:b23
sp:varName "partActivity"^^xsd:string .
_:b10
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b22
sp:varName "dTimStartPart"^^xsd:string .
_:b11
sp:varName "nameWellBore"^^xsd:string .
_:b21
sp:varName "index"^^xsd:string .
_:b12
_:b20
sp:varName "activity"^^xsd:string .
_:b13
sp:varName "index"^^xsd:string .
_:b19
sp:varName "nameWellBore"^^xsd:string .
_:b14
sp:varName "dTimStartPart"^^xsd:string .
_:b18
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b15
sp:varName "partActivity"^^xsd:string .
_:b17
sp:varName "md"^^xsd:string .
_:b16
_:b35
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b25
sp:varName "partActivity"^^xsd:string .
_:b26
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b34
sp:varName "index"^^xsd:string .
_:b27
sp:varName "dTimStartPart"^^xsd:string .
_:b33
sp:varName "activity"^^xsd:string .
_:b28
sp:varName "dTimEndPart"^^xsd:string .
_:b32
sp:varName "dTimStart"^^xsd:string .
_:b29
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b31
sp:varName "nameWellBore"^^xsd:string .
_:b30
sp:varName "wellBore"^^xsd:string .
_:b31
sp:varName "nameWellBore"^^xsd:string .
_:b29
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b32
sp:varName "dTimStart"^^xsd:string .
_:b28
sp:varName "dTimEndPart"^^xsd:string .
_:b33
sp:varName "activity"^^xsd:string .
_:b27
sp:varName "dTimStartPart"^^xsd:string .
_:b34
sp:varName "index"^^xsd:string .
_:b26
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b35
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b25
sp:varName "partActivity"^^xsd:string .
......
# Saved by TopBraid on Mon Aug 08 14:39:37 BST 2011
# Saved by TopBraid on Tue Aug 09 15:44:24 BST 2011
# baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport
# imports: http://www.reportinghub.no/ep/spin/1.1/lib
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr
# imports: http://www.reportinghub.no/ep/schema/report
# imports: http://www.reportinghub.no/iso15926/bindEP-NativeOWL
# imports: http://www.reportinghub.no/ep/schema/equipment
# imports: http://spinrdf.org/spin
# imports: http://www.reportinghub.no/ep/schema/well
......@@ -28,95 +27,116 @@
<http://www.reportinghub.no/ep/schema/ddr#Obj_drillReport>
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 104 Create Well"^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/well#Well> ;
rdfs:comment """STEP 101 Create DailyDrillingReport, DailyDrillingActivity, TemporalPartOfAWellBore and WellBore
Minimum data - createDate, dTimStart, nameWellBore"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/report#DailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b1
] [ sp:object <http://www.reportinghub.no/ep/schema/activity#DailyDrillingActivity> ;
sp:predicate rdf:type ;
sp:subject _:b2
] [ sp:object _:b2 ;
sp:predicate rdfs:label ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#reportOn> ;
sp:subject _:b1
] [ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWell> ;
sp:subject _:b3
] [ sp:object _:b4 ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
] [ sp:object _:b3 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#createdAt> ;
sp:subject _:b1
] [ sp:object _:b4 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
sp:subject _:b2
] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
sp:predicate rdf:type ;
sp:subject _:b5
] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBore> ;
sp:predicate rdf:type ;
sp:subject _:b6
] [ sp:object _:b6 ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
sp:subject _:b5
] [ sp:object _:b7 ;
sp:predicate rdfs:label ;
sp:subject _:b6
] [ sp:object _:b5 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b2
]) ;
sp:where ([ sp:object _:b5 ;
sp:where ([ sp:object _:b7 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b2 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWell> ;
] [ sp:object _:b4 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b6 ;
] [ sp:object _:b8 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b4 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b3
] [ sp:object _:b3 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b5
sp:arg1 _:b7
] ;
sp:variable _:b7
sp:variable _:b9
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b9 ;
sp:arg2 _:b3
] ;
sp:variable _:b1
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b7 ;
sp:arg2 _:b6
sp:arg1 _:b9 ;
sp:arg2 _:b4
] ;
sp:variable _:b3
sp:variable _:b2
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b2
[ rdf:type ep-spin-lib:buildTemporalPartOfAWellBoreURI ;
sp:arg1 _:b9 ;
sp:arg2 _:b4 ;
sp:arg3 _:b8
] ;
sp:variable _:b8
sp:variable _:b5
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildWellURI ;
sp:arg1 _:b8
[ rdf:type ep-spin-lib:buildWellBoreURI ;
sp:arg1 _:b9
] ;
sp:variable _:b1
sp:variable _:b6
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 103
Classify a DailyDrillingReport"""^^xsd:string ;
sp:templates ([ sp:object _:b9 ;
sp:predicate rdf:type ;
sp:subject _:b10
rdfs:comment "STEP 102 Transfer dTimEnd"^^xsd:string ;
sp:templates ([ sp:object _:b10 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ;
sp:subject _:b11
]) ;
sp:where ([ sp:object _:b11 ;
sp:where ([ sp:object _:b12 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b12 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ sp:object _:b13 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumVersionKind> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b10 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimEnd> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectDailyDrillingReportType ;
sp:arg1 _:b13
] ;
sp:variable _:b9
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b11
sp:arg1 _:b12
] ;
sp:variable _:b14
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b14 ;
sp:arg2 _:b12
sp:arg2 _:b13
] ;
sp:variable _:b10
sp:variable _:b11
])
] ;
spin:rule
......@@ -153,30 +173,37 @@ Minimum data - createDate, dTimStart, nameWellBore"""^^xsd:string ;
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 102 Transfer dTimEnd"^^xsd:string ;
rdfs:comment """STEP 103
Classify a DailyDrillingReport"""^^xsd:string ;
sp:templates ([ sp:object _:b20 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ;
sp:predicate rdf:type ;
sp:subject _:b21
]) ;
sp:where ([ sp:object _:b22 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b23 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ sp:object _:b20 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimEnd> ;
] [ sp:object _:b24 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumVersionKind> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectDailyDrillingReportType ;
sp:arg1 _:b24
] ;
sp:variable _:b20
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b22
] ;
sp:variable _:b24
sp:variable _:b25
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b24 ;
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b25 ;
sp:arg2 _:b23
] ;
sp:variable _:b21
......@@ -184,128 +211,105 @@ Minimum data - createDate, dTimStart, nameWellBore"""^^xsd:string ;
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 101 Create DailyDrillingReport, DailyDrillingActivity, TemporalPartOfAWellBore and WellBore
Minimum data - createDate, dTimStart, nameWellBore"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/report#DailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b25
] [ sp:object <http://www.reportinghub.no/ep/schema/activity#DailyDrillingActivity> ;
rdfs:comment "STEP 104 Create Well"^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/well#Well> ;
sp:predicate rdf:type ;
sp:subject _:b26
] [ sp:object _:b26 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#reportOn> ;
sp:subject _:b25
] [ sp:object _:b27 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#createdAt> ;
sp:subject _:b25
] [ sp:object _:b28 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
sp:subject _:b26
] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
sp:predicate rdf:type ;
sp:subject _:b29
] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBore> ;
sp:predicate rdf:type ;
sp:subject _:b30
] [ sp:object _:b30 ;
sp:predicate iso15926:temporalPartOf ;
sp:subject _:b29
] [ sp:object _:b31 ;
sp:predicate rdfs:label ;
sp:subject _:b30
sp:subject _:b26
] [ sp:object _:b26 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWell> ;
sp:subject _:b28
] [ sp:object _:b29 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
sp:subject _:b26
]) ;
sp:where ([ sp:object _:b31 ;
sp:where ([ sp:object _:b30 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b28 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b27 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWell> ;
sp:subject spin:_this
] [ sp:object _:b31 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b29 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b28
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b31
sp:arg1 _:b30
] ;
sp:variable _:b32
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b32 ;
sp:arg2 _:b27
] ;
sp:variable _:b25
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b32 ;
sp:arg2 _:b28
sp:arg2 _:b31
] ;
sp:variable _:b26
sp:variable _:b28
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildTemporalPartOfAWellBoreURI ;
sp:arg1 _:b32 ;
sp:arg2 _:b28 ;
sp:arg3 [ sp:varName "dTimEnd"^^xsd:string
]
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b27
] ;
sp:variable _:b29
sp:variable _:b33
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildWellBoreURI ;
sp:arg1 _:b32
[ rdf:type ep-spin-lib:buildWellURI ;
sp:arg1 _:b33
] ;
sp:variable _:b30
sp:variable _:b26
])
] .
<http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport>
rdf:type owl:Ontology ;
owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/iso15926/bindEP-NativeOWL> , <http://www.reportinghub.no/ep/schema/report> , <http://www.reportinghub.no/ep/schema/equipment> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/transform/1.1/ddr> ;
owl:imports <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/ep/schema/equipment> , <http://www.reportinghub.no/ep/schema/report> , <http://www.reportinghub.no/ep/schema/well> , <http://spinrdf.org/spin> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
_:b25
sp:varName "dailyDrillingReport"^^xsd:string .
_:b26
sp:varName "dailyDrillingActivity"^^xsd:string .
sp:varName "well"^^xsd:string .
_:b27
sp:varName "createDate"^^xsd:string .
sp:varName "nameWell"^^xsd:string .
_:b28
sp:varName "dTimStart"^^xsd:string .
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b29
sp:varName "temporalPartOfAWellBore"^^xsd:string .
sp:varName "wellBore"^^xsd:string .
_:b30
sp:varName "wellBore"^^xsd:string .
sp:varName "nameWellBore"^^xsd:string .
_:b31
sp:varName "nameWellBore"^^xsd:string .
sp:varName "dTimStart"^^xsd:string .
_:b32
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b33
sp:varName "normalizedWellName"^^xsd:string .
_:b20
sp:varName "dTimEnd"^^xsd:string .
sp:varName "dailyDrillingReportType"^^xsd:string .
_:b21
sp:varName "dailyDrillingActivity"^^xsd:string .
sp:varName "dailyDrillingReport"^^xsd:string .
_:b22
sp:varName "nameWellBore"^^xsd:string .
_:b23
sp:varName "dTimStart"^^xsd:string .
sp:varName "createDate"^^xsd:string .
_:b24
sp:varName "versionKind"^^xsd:string .
_:b25
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b15
......@@ -323,35 +327,35 @@ _:b18
_:b19
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b9 sp:varName "dailyDrillingReportType"^^xsd:string .
_:b10
sp:varName "dailyDrillingReport"^^xsd:string .
sp:varName "dTimEnd"^^xsd:string .
_:b11
sp:varName "nameWellBore"^^xsd:string .
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b12
sp:varName "createDate"^^xsd:string .
sp:varName "nameWellBore"^^xsd:string .
_:b13
sp:varName "versionKind"^^xsd:string .
sp:varName "dTimStart"^^xsd:string .
_:b14
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b1 sp:varName "well"^^xsd:string .
_:b7 sp:varName "nameWellBore"^^xsd:string .
_:b4 sp:varName "dTimStart"^^xsd:string .
_:b2 sp:varName "nameWell"^^xsd:string .
_:b8 sp:varName "dTimEnd"^^xsd:string .
_:b3 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b3 sp:varName "createDate"^^xsd:string .
_:b4 sp:varName "wellBore"^^xsd:string .
_:b9 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b5 sp:varName "nameWellBore"^^xsd:string .
_:b1 sp:varName "dailyDrillingReport"^^xsd:string .
_:b6 sp:varName "dTimStart"^^xsd:string .
_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b7 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b5 sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b8 sp:varName "normalizedWellName"^^xsd:string .
_:b6 sp:varName "wellBore"^^xsd:string .
......
# Saved by TopBraid on Mon Aug 08 14:39:37 BST 2011
# Saved by TopBraid on Tue Aug 09 15:44:24 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
# Saved by TopBraid on Mon Aug 08 17:06:00 BST 2011
# Saved by TopBraid on Tue Aug 09 15:10:29 BST 2011
# baseURI: http://www.reportinghub.no/ep/transform/1.1/normalization
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr/activity
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo
# imports: http://spinrdf.org/spin
......@@ -20,7 +19,7 @@
<http://www.reportinghub.no/ep/transform/1.1/normalization>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/transform/1.1/ddr/activity> , <http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport> , <http://www.reportinghub.no/ep/schema/1.1/activity> ;
owl:imports <http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/activity> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
owl:Thing
......
# Saved by TopBraid on Mon Aug 08 17:06:00 BST 2011
# Saved by TopBraid on Tue Aug 09 15:10:29 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
# Saved by TopBraid on Mon Aug 08 14:37:32 BST 2011
# Saved by TopBraid on Tue Aug 09 15:06:28 BST 2011
# baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo
# imports: http://www.reportinghub.no/ep/spin/1.1/lib
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr
# imports: http://www.reportinghub.no/iso15926/bindEP-NativeOWL
# imports: http://www.reportinghub.no/ep/schema/report
# imports: http://www.reportinghub.no/ep/schema/equipment
# imports: http://spinrdf.org/spin
......@@ -29,9 +28,9 @@
<http://www.reportinghub.no/ep/schema/ddr#Obj_drillReport>
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 119 Transfer mdStrengthForm"^^xsd:string ;
rdfs:comment "STEP 126 Transfer WellboreType"^^xsd:string ;
sp:templates ([ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdStrengthForm> ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellBoreDrillingType> ;
sp:subject _:b2
]) ;
sp:where ([ sp:object _:b3 ;
......@@ -43,14 +42,17 @@
] [ sp:object _:b5 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b2 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b6
] [ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdStrengthForm> ;
] [ sp:object _:b6 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumTypeWellbore> ;
sp:subject _:b5
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectWellBoreDrillingType ;
sp:arg1 _:b6
] ;
sp:variable _:b1
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b3
] ;
......@@ -61,14 +63,14 @@
sp:arg1 _:b7 ;
sp:arg2 _:b4
] ;
sp:variable _:b6
sp:variable _:b2
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 106 Transfer distDrill"^^xsd:string ;
rdfs:comment "STEP 110 Transfer tvd"^^xsd:string ;
sp:templates ([ sp:object _:b8 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#distDrill> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvd> ;
sp:subject _:b9
]) ;
sp:where ([ sp:object _:b10 ;
......@@ -80,33 +82,33 @@
] [ sp:object _:b12 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b9 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b13
] [ sp:object _:b8 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#distDrill> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvd> ;
sp:subject _:b12
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b10
] ;
sp:variable _:b13
sp:variable _:b14
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b13 ;
sp:arg1 _:b14 ;
sp:arg2 _:b11
] ;
sp:variable _:b9
sp:variable _:b13
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 125 Transfer presTestType"^^xsd:string ;
sp:templates ([ sp:object _:b14 ;
sp:predicate iso15926:hasPart ;
sp:subject _:b15
] [ sp:object _:b16 ;
sp:predicate rdf:type ;
sp:subject _:b14
rdfs:comment "STEP 118 Transfer strengthForm"^^xsd:string ;
sp:templates ([ sp:object _:b15 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#strengthForm> ;
sp:subject _:b16
]) ;
sp:where ([ sp:object _:b17 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
......@@ -117,17 +119,14 @@
] [ sp:object _:b19 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b20 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumPresTestType> ;
] [ sp:object _:b16 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b20
] [ sp:object _:b15 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#strengthForm> ;
sp:subject _:b19
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectPressureTestType ;
sp:arg1 _:b20
] ;
sp:variable _:b16
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b17
] ;
......@@ -138,14 +137,14 @@
sp:arg1 _:b21 ;
sp:arg2 _:b18
] ;
sp:variable _:b15
sp:variable _:b20
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 124 Transfer mdPlanned"^^xsd:string ;
rdfs:comment "STEP 120 Transfer tvdStrengthForm"^^xsd:string ;
sp:templates ([ sp:object _:b22 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlanned> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdStrengthForm> ;
sp:subject _:b23
]) ;
sp:where ([ sp:object _:b24 ;
......@@ -154,592 +153,592 @@
] [ sp:object _:b25 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object
[ sp:varName "statusInfo"^^xsd:string
] ;
] [ sp:object _:b26 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b23 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b26
sp:subject _:b27
] [ sp:object _:b22 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlanned> ;
sp:subject
[ sp:varName "statusInfoddr"^^xsd:string
]
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdStrengthForm> ;
sp:subject _:b26
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b24
] ;
sp:variable _:b27
sp:variable _:b28
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b27 ;
sp:arg1 _:b28 ;
sp:arg2 _:b25
] ;
sp:variable _:b26
sp:variable _:b27
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 111 Transfer mdPlugTop"^^xsd:string ;
sp:templates ([ sp:object _:b28 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlugTop> ;
sp:subject _:b29
rdfs:comment "STEP 124 Transfer mdPlanned"^^xsd:string ;
sp:templates ([ sp:object _:b29 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlanned> ;
sp:subject _:b30
]) ;
sp:where ([ sp:object _:b30 ;
sp:where ([ sp:object _:b31 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b31 ;
] [ sp:object _:b32 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b32 ;
] [ sp:object
[ sp:varName "statusInfo"^^xsd:string
] ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b29 ;
] [ sp:object _:b30 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b33
] [ sp:object _:b28 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlugTop> ;
sp:subject _:b32
] [ sp:object _:b29 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlanned> ;
sp:subject
[ sp:varName "statusInfoddr"^^xsd:string
]
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b30
sp:arg1 _:b31
] ;
sp:variable _:b34
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b34 ;
sp:arg2 _:b31
sp:arg2 _:b32
] ;
sp:variable _:b33
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 118 Transfer strengthForm"^^xsd:string ;
rdfs:comment "STEP 125 Transfer presTestType"^^xsd:string ;
sp:templates ([ sp:object _:b35 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#strengthForm> ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
sp:subject _:b36
] [ sp:object _:b37 ;
sp:predicate rdf:type ;
sp:subject _:b35
]) ;
sp:where ([ sp:object _:b37 ;
sp:where ([ sp:object _:b38 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b38 ;
] [ sp:object _:b39 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b39 ;
] [ sp:object _:b40 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b36 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
] [ sp:object _:b41 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumPresTestType> ;
sp:subject _:b40
] [ sp:object _:b35 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#strengthForm> ;
sp:subject _:b39
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectPressureTestType ;
sp:arg1 _:b41
] ;
sp:variable _:b37
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b37
sp:arg1 _:b38
] ;
sp:variable _:b41
sp:variable _:b42
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b41 ;
sp:arg2 _:b38
sp:arg1 _:b42 ;
sp:arg2 _:b39
] ;
sp:variable _:b40
sp:variable _:b36
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 109 Transfer md"^^xsd:string ;
sp:templates ([ sp:object _:b42 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#md> ;
sp:subject _:b43
rdfs:comment "STEP 121 Transfer elevKelly"^^xsd:string ;
sp:templates ([ sp:object _:b43 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#elevKelly> ;
sp:subject _:b44
]) ;
sp:where ([ sp:object _:b44 ;
sp:where ([ sp:object _:b45 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b45 ;
] [ sp:object _:b46 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b46 ;
] [ sp:object _:b47 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b43 ;
] [ sp:object _:b44 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b48
] [ sp:object _:b43 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#elevKelly> ;
sp:subject _:b47
] [ sp:object _:b42 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#md> ;
sp:subject _:b46
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b44
sp:arg1 _:b45
] ;
sp:variable _:b48
sp:variable _:b49
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b48 ;
sp:arg2 _:b45
sp:arg1 _:b49 ;
sp:arg2 _:b46
] ;
sp:variable _:b47
sp:variable _:b48
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 110 Transfer tvd"^^xsd:string ;
sp:templates ([ sp:object _:b49 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvd> ;
sp:subject _:b50
rdfs:comment "STEP 114 Transfer mdKickoff"^^xsd:string ;
sp:templates ([ sp:object _:b50 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdKickoff> ;
sp:subject _:b51
]) ;
sp:where ([ sp:object _:b51 ;
sp:where ([ sp:object _:b52 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b52 ;
] [ sp:object _:b53 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b53 ;
] [ sp:object _:b54 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b50 ;
] [ sp:object _:b51 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b55
] [ sp:object _:b50 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdKickoff> ;
sp:subject _:b54
] [ sp:object _:b49 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvd> ;
sp:subject _:b53
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b51
sp:arg1 _:b52
] ;
sp:variable _:b55
sp:variable _:b56
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b55 ;
sp:arg2 _:b52
sp:arg1 _:b56 ;
sp:arg2 _:b53
] ;
sp:variable _:b54
sp:variable _:b55
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 122 Transfer mdDiaPilotPlan"^^xsd:string ;
sp:templates ([ sp:object _:b56 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaPilotPlan> ;
sp:subject _:b57
rdfs:comment "STEP 115 Transfer diaCsgLast"^^xsd:string ;
sp:templates ([ sp:object _:b57 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaCsgLast> ;
sp:subject _:b58
]) ;
sp:where ([ sp:object _:b58 ;
sp:where ([ sp:object _:b59 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b59 ;
] [ sp:object _:b60 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b60 ;
] [ sp:object _:b61 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b57 ;
] [ sp:object _:b58 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b62
] [ sp:object _:b57 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaCsgLast> ;
sp:subject _:b61
] [ sp:object _:b56 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaPilotPlan> ;
sp:subject _:b60
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b58
sp:arg1 _:b59
] ;
sp:variable _:b62
sp:variable _:b63
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b62 ;
sp:arg2 _:b59
sp:arg1 _:b63 ;
sp:arg2 _:b60
] ;
sp:variable _:b61
sp:variable _:b62
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 108 Transfer forecast24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b63 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b64
rdfs:comment "STEP 113 Transfer mdDiaHoleStart"^^xsd:string ;
sp:templates ([ sp:object _:b64 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaHoleStart> ;
sp:subject _:b65
]) ;
sp:where ([ sp:object _:b65 ;
sp:where ([ sp:object _:b66 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b66 ;
] [ sp:object _:b67 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b67 ;
] [ sp:object _:b68 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b63 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b67
] [ sp:object _:b65 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b69
] [ sp:object _:b64 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaHoleStart> ;
sp:subject _:b68
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b65
sp:arg1 _:b66
] ;
sp:variable _:b68
sp:variable _:b70
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b68 ;
sp:arg2 _:b66
sp:arg1 _:b70 ;
sp:arg2 _:b67
] ;
sp:variable _:b64
sp:variable _:b69
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 114 Transfer mdKickoff"^^xsd:string ;
sp:templates ([ sp:object _:b69 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdKickoff> ;
sp:subject _:b70
rdfs:comment "STEP 108 Transfer forecast24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b71 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b72
]) ;
sp:where ([ sp:object _:b71 ;
sp:where ([ sp:object _:b73 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b72 ;
] [ sp:object _:b74 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b73 ;
] [ sp:object _:b75 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b70 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b74
] [ sp:object _:b69 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdKickoff> ;
sp:subject _:b73
] [ sp:object _:b71 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b75
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b71
sp:arg1 _:b73
] ;
sp:variable _:b75
sp:variable _:b76
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b75 ;
sp:arg2 _:b72
sp:arg1 _:b76 ;
sp:arg2 _:b74
] ;
sp:variable _:b74
sp:variable _:b72
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 123 Transfer tvdDiaPilotPlan"^^xsd:string ;
sp:templates ([ sp:object _:b76 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdDiaPilotPlan> ;
sp:subject _:b77
rdfs:comment "STEP 116 Transfer mdCsgLast"^^xsd:string ;
sp:templates ([ sp:object _:b77 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdCsgLast> ;
sp:subject _:b78
]) ;
sp:where ([ sp:object _:b78 ;
sp:where ([ sp:object _:b79 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b79 ;
] [ sp:object _:b80 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object
[ sp:varName "statusInfo"^^xsd:string
] ;
] [ sp:object _:b81 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b77 ;
] [ sp:object _:b78 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b80
] [ sp:object _:b76 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdDiaPilotPlan> ;
sp:subject
[ sp:varName "statusInfoddr"^^xsd:string
]
sp:subject _:b82
] [ sp:object _:b77 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdCsgLast> ;
sp:subject _:b81
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b78
sp:arg1 _:b79
] ;
sp:variable _:b81
sp:variable _:b83
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b81 ;
sp:arg2 _:b79
sp:arg1 _:b83 ;
sp:arg2 _:b80
] ;
sp:variable _:b80
sp:variable _:b82
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 126 Transfer WellboreType"^^xsd:string ;
sp:templates ([ sp:object _:b82 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellBoreDrillingType> ;
sp:subject _:b83
rdfs:comment "STEP 122 Transfer mdDiaPilotPlan"^^xsd:string ;
sp:templates ([ sp:object _:b84 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaPilotPlan> ;
sp:subject _:b85
]) ;
sp:where ([ sp:object _:b84 ;
sp:where ([ sp:object _:b86 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b85 ;
] [ sp:object _:b87 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b86 ;
] [ sp:object _:b88 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b87 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#enumTypeWellbore> ;
sp:subject _:b86
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:selectWellBoreDrillingType ;
sp:arg1 _:b87
] ;
sp:variable _:b82
] [ sp:object _:b85 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b89
] [ sp:object _:b84 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaPilotPlan> ;
sp:subject _:b88
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b84
sp:arg1 _:b86
] ;
sp:variable _:b88
sp:variable _:b90
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b88 ;
sp:arg2 _:b85
sp:arg1 _:b90 ;
sp:arg2 _:b87
] ;
sp:variable _:b83
sp:variable _:b89
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 107 Transfer sum24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b89 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b90
rdfs:comment "STEP 105 Transfer ropCurrent"^^xsd:string ;
sp:templates ([ sp:object _:b91 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#ropCurrent> ;
sp:subject _:b92
]) ;
sp:where ([ sp:object _:b91 ;
sp:where ([ sp:object _:b93 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b92 ;
] [ sp:object _:b94 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b93 ;
] [ sp:object _:b95 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b89 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b93
] [ sp:object _:b91 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#ropCurrent> ;
sp:subject _:b95
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b91
sp:arg1 _:b93
] ;
sp:variable _:b94
sp:variable _:b96
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b94 ;
sp:arg2 _:b92
sp:arg1 _:b96 ;
sp:arg2 _:b94
] ;
sp:variable _:b90
sp:variable _:b92
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 105 Transfer ropCurrent"^^xsd:string ;
sp:templates ([ sp:object _:b95 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#ropCurrent> ;
sp:subject _:b96
rdfs:comment "STEP 109 Transfer md"^^xsd:string ;
sp:templates ([ sp:object _:b97 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#md> ;
sp:subject _:b98
]) ;
sp:where ([ sp:object _:b97 ;
sp:where ([ sp:object _:b99 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b98 ;
] [ sp:object _:b100 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b99 ;
] [ sp:object _:b101 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b95 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#ropCurrent> ;
sp:subject _:b99
] [ sp:object _:b98 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b102
] [ sp:object _:b97 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#md> ;
sp:subject _:b101
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b97
sp:arg1 _:b99
] ;
sp:variable _:b100
sp:variable _:b103
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b100 ;
sp:arg2 _:b98
sp:arg1 _:b103 ;
sp:arg2 _:b100
] ;
sp:variable _:b96
sp:variable _:b102
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 115 Transfer diaCsgLast"^^xsd:string ;
sp:templates ([ sp:object _:b101 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaCsgLast> ;
sp:subject _:b102
rdfs:comment "STEP 106 Transfer distDrill"^^xsd:string ;
sp:templates ([ sp:object _:b104 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#distDrill> ;
sp:subject _:b105
]) ;
sp:where ([ sp:object _:b103 ;
sp:where ([ sp:object _:b106 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b104 ;
] [ sp:object _:b107 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b105 ;
] [ sp:object _:b108 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b102 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b106
] [ sp:object _:b101 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaCsgLast> ;
sp:subject _:b105
] [ sp:object _:b104 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#distDrill> ;
sp:subject _:b108
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b103
sp:arg1 _:b106
] ;
sp:variable _:b107
sp:variable _:b109
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b107 ;
sp:arg2 _:b104
sp:arg1 _:b109 ;
sp:arg2 _:b107
] ;
sp:variable _:b106
sp:variable _:b105
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 112 Transfer diaHole"^^xsd:string ;
sp:templates ([ sp:object _:b108 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaHole> ;
sp:subject _:b109
rdfs:comment "STEP 107 Transfer sum24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b110 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b111
]) ;
sp:where ([ sp:object _:b110 ;
sp:where ([ sp:object _:b112 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b111 ;
] [ sp:object _:b113 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b112 ;
] [ sp:object _:b114 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b109 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b113
] [ sp:object _:b108 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaHole> ;
sp:subject _:b112
] [ sp:object _:b110 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b114
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b110
sp:arg1 _:b112
] ;
sp:variable _:b114
sp:variable _:b115
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b114 ;
sp:arg2 _:b111
sp:arg1 _:b115 ;
sp:arg2 _:b113
] ;
sp:variable _:b113
sp:variable _:b111
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 117 Transfer tvdCsgLast"^^xsd:string ;
sp:templates ([ sp:object _:b115 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdCsgLast> ;
sp:subject _:b116
rdfs:comment "STEP 119 Transfer mdStrengthForm"^^xsd:string ;
sp:templates ([ sp:object _:b116 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdStrengthForm> ;
sp:subject _:b117
]) ;
sp:where ([ sp:object _:b117 ;
sp:where ([ sp:object _:b118 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b118 ;
] [ sp:object _:b119 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b119 ;
] [ sp:object _:b120 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b116 ;
] [ sp:object _:b117 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b121
] [ sp:object _:b116 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdStrengthForm> ;
sp:subject _:b120
] [ sp:object _:b115 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdCsgLast> ;
sp:subject _:b119
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b117
sp:arg1 _:b118
] ;
sp:variable _:b121
sp:variable _:b122
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b121 ;
sp:arg2 _:b118
sp:arg1 _:b122 ;
sp:arg2 _:b119
] ;
sp:variable _:b120
sp:variable _:b121
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 113 Transfer mdDiaHoleStart"^^xsd:string ;
sp:templates ([ sp:object _:b122 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaHoleStart> ;
sp:subject _:b123
rdfs:comment "STEP 123 Transfer tvdDiaPilotPlan"^^xsd:string ;
sp:templates ([ sp:object _:b123 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdDiaPilotPlan> ;
sp:subject _:b124
]) ;
sp:where ([ sp:object _:b124 ;
sp:where ([ sp:object _:b125 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b125 ;
] [ sp:object _:b126 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b126 ;
] [ sp:object
[ sp:varName "statusInfo"^^xsd:string
] ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#statusInfo> ;
sp:subject spin:_this
] [ sp:object _:b123 ;
] [ sp:object _:b124 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b127
] [ sp:object _:b122 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdDiaHoleStart> ;
sp:subject _:b126
] [ sp:object _:b123 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdDiaPilotPlan> ;
sp:subject
[ sp:varName "statusInfoddr"^^xsd:string
]
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b124
sp:arg1 _:b125
] ;
sp:variable _:b128
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b128 ;
sp:arg2 _:b125
sp:arg2 _:b126
] ;
sp:variable _:b127
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 116 Transfer mdCsgLast"^^xsd:string ;
rdfs:comment "STEP 117 Transfer tvdCsgLast"^^xsd:string ;
sp:templates ([ sp:object _:b129 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdCsgLast> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdCsgLast> ;
sp:subject _:b130
]) ;
sp:where ([ sp:object _:b131 ;
......@@ -755,7 +754,7 @@
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b134
] [ sp:object _:b129 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdCsgLast> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdCsgLast> ;
sp:subject _:b133
] [ rdf:type sp:Bind ;
sp:expression
......@@ -774,9 +773,9 @@
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 120 Transfer tvdStrengthForm"^^xsd:string ;
rdfs:comment "STEP 111 Transfer mdPlugTop"^^xsd:string ;
sp:templates ([ sp:object _:b136 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdStrengthForm> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlugTop> ;
sp:subject _:b137
]) ;
sp:where ([ sp:object _:b138 ;
......@@ -792,7 +791,7 @@
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b141
] [ sp:object _:b136 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#tvdStrengthForm> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#mdPlugTop> ;
sp:subject _:b140
] [ rdf:type sp:Bind ;
sp:expression
......@@ -811,9 +810,9 @@
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 121 Transfer elevKelly"^^xsd:string ;
rdfs:comment "STEP 112 Transfer diaHole"^^xsd:string ;
sp:templates ([ sp:object _:b143 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#elevKelly> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaHole> ;
sp:subject _:b144
]) ;
sp:where ([ sp:object _:b145 ;
......@@ -829,7 +828,7 @@
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b148
] [ sp:object _:b143 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#elevKelly> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#diaHole> ;
sp:subject _:b147
] [ rdf:type sp:Bind ;
sp:expression
......@@ -849,440 +848,440 @@
<http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo>
rdf:type owl:Ontology ;
owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/ep/schema/report> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/iso15926/bindEP-NativeOWL> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/equipment> ;
owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/ep/schema/report> , <http://www.reportinghub.no/ep/schema/1.1/activity> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/equipment> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
_:b7 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b6 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b84
sp:varName "mdDiaPilotPlan"^^xsd:string .
_:b5 sp:varName "statusInfo"^^xsd:string .
_:b85
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b4 sp:varName "dTimStart"^^xsd:string .
_:b86
sp:varName "nameWellBore"^^xsd:string .
_:b3 sp:varName "nameWellBore"^^xsd:string .
_:b87
sp:varName "dTimStart"^^xsd:string .
_:b2 sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b88
sp:varName "statusInfo"^^xsd:string .
_:b1 sp:varName "mdStrengthForm"^^xsd:string .
_:b89
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b81
_:b90
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b80
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b116
sp:varName "mdStrengthForm"^^xsd:string .
_:b79
sp:varName "dTimStart"^^xsd:string .
_:b117
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b78
_:b118
sp:varName "nameWellBore"^^xsd:string .
_:b77
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b119
sp:varName "dTimStart"^^xsd:string .
_:b76
sp:varName "tvdDiaPilotPlan"^^xsd:string .
_:b120
sp:varName "statusInfo"^^xsd:string .
_:b68
_:b121
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b122
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b67
sp:varName "statusInfo"^^xsd:string .
_:b104
sp:varName "distDrill"^^xsd:string .
_:b66
sp:varName "dTimStart"^^xsd:string .
_:b105
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b65
_:b106
sp:varName "nameWellBore"^^xsd:string .
_:b64
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b107
sp:varName "dTimStart"^^xsd:string .
_:b63
sp:varName "forecast24Hr"^^xsd:string .
_:b108
sp:varName "statusInfo"^^xsd:string .
_:b27
_:b109
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b26
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b57
sp:varName "diaCsgLast"^^xsd:string .
_:b25
sp:varName "dTimStart"^^xsd:string .
_:b58
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b24
_:b59
sp:varName "nameWellBore"^^xsd:string .
_:b23
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b22
sp:varName "mdPlanned"^^xsd:string .
_:b60
sp:varName "dTimStart"^^xsd:string .
_:b107
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b61
sp:varName "statusInfo"^^xsd:string .
_:b106
_:b62
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b105
sp:varName "statusInfo"^^xsd:string .
_:b104
sp:varName "dTimStart"^^xsd:string .
_:b63
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b103
sp:varName "nameWellBore"^^xsd:string .
_:b136
sp:varName "mdPlugTop"^^xsd:string .
_:b102
_:b137
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b101
sp:varName "diaCsgLast"^^xsd:string .
_:b138
sp:varName "nameWellBore"^^xsd:string .
_:b149
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b139
sp:varName "dTimStart"^^xsd:string .
_:b148
_:b140
sp:varName "statusInfo"^^xsd:string .
_:b141
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b147
sp:varName "statusInfo"^^xsd:string .
_:b142
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b146
sp:varName "dTimStart"^^xsd:string .
_:b143
sp:varName "diaHole"^^xsd:string .
_:b144
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b145
sp:varName "nameWellBore"^^xsd:string .
_:b144
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b146
sp:varName "dTimStart"^^xsd:string .
_:b143
sp:varName "elevKelly"^^xsd:string .
_:b147
sp:varName "statusInfo"^^xsd:string .
_:b135
_:b148
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b149
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b134
_:b36
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b133
sp:varName "statusInfo"^^xsd:string .
_:b132
sp:varName "dTimStart"^^xsd:string .
_:b37
sp:varName "pressureTestType"^^xsd:string .
_:b131
_:b38
sp:varName "nameWellBore"^^xsd:string .
_:b130
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b39
sp:varName "dTimStart"^^xsd:string .
_:b129
sp:varName "mdCsgLast"^^xsd:string .
_:b40
sp:varName "statusInfo"^^xsd:string .
_:b75
_:b41
sp:varName "presTestType"^^xsd:string .
_:b42
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b74
_:b71
sp:varName "forecast24Hr"^^xsd:string .
_:b72
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b73
sp:varName "statusInfo"^^xsd:string .
sp:varName "nameWellBore"^^xsd:string .
_:b72
_:b74
sp:varName "dTimStart"^^xsd:string .
_:b71
sp:varName "nameWellBore"^^xsd:string .
_:b75
sp:varName "statusInfo"^^xsd:string .
_:b70
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b76
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b69
_:b50
sp:varName "mdKickoff"^^xsd:string .
_:b34
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b33
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b51
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b32
sp:varName "statusInfo"^^xsd:string .
_:b52
sp:varName "nameWellBore"^^xsd:string .
_:b31
_:b53
sp:varName "dTimStart"^^xsd:string .
_:b30
sp:varName "nameWellBore"^^xsd:string .
_:b29
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b54
sp:varName "statusInfo"^^xsd:string .
_:b28
sp:varName "mdPlugTop"^^xsd:string .
_:b55
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b88
_:b56
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b87
sp:varName "typeWellBore"^^xsd:string .
_:b8 sp:varName "tvd"^^xsd:string .
_:b86
sp:varName "statusInfo"^^xsd:string .
_:b9 sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b85
_:b10
sp:varName "nameWellBore"^^xsd:string .
_:b11
sp:varName "dTimStart"^^xsd:string .
_:b84
sp:varName "nameWellBore"^^xsd:string .
_:b12
sp:varName "statusInfo"^^xsd:string .
_:b83
_:b13
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b82
sp:varName "wellBoreDrillingType"^^xsd:string .
_:b100
_:b14
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b99
sp:varName "statusInfo"^^xsd:string .
_:b77
sp:varName "mdCsgLast"^^xsd:string .
_:b98
sp:varName "dTimStart"^^xsd:string .
_:b78
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b97
_:b79
sp:varName "nameWellBore"^^xsd:string .
_:b96
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b95
sp:varName "ropCurrentValue"^^xsd:string .
_:b80
sp:varName "dTimStart"^^xsd:string .
_:b41
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b81
sp:varName "statusInfo"^^xsd:string .
_:b40
_:b82
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b39
sp:varName "statusInfo"^^xsd:string .
_:b38
sp:varName "dTimStart"^^xsd:string .
_:b83
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b37
sp:varName "nameWellBore"^^xsd:string .
_:b22
sp:varName "tvdStrengthForm"^^xsd:string .
_:b36
_:b23
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b35
sp:varName "strengthForm"^^xsd:string .
_:b121
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b120
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b119
sp:varName "statusInfo"^^xsd:string .
_:b24
sp:varName "nameWellBore"^^xsd:string .
_:b118
_:b25
sp:varName "dTimStart"^^xsd:string .
_:b117
sp:varName "nameWellBore"^^xsd:string .
_:b116
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b26
sp:varName "statusInfo"^^xsd:string .
_:b115
sp:varName "tvdCsgLast"^^xsd:string .
_:b27
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b114
_:b28
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b113
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b112
sp:varName "statusInfo"^^xsd:string .
_:b15
sp:varName "strengthForm"^^xsd:string .
_:b111
sp:varName "dTimStart"^^xsd:string .
_:b16
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b110
_:b17
sp:varName "nameWellBore"^^xsd:string .
_:b109
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b18
sp:varName "dTimStart"^^xsd:string .
_:b108
sp:varName "diaHole"^^xsd:string .
_:b19
sp:varName "statusInfo"^^xsd:string .
_:b20
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b21
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b20
sp:varName "presTestType"^^xsd:string .
_:b19
sp:varName "statusInfo"^^xsd:string .
_:b129
sp:varName "tvdCsgLast"^^xsd:string .
_:b18
sp:varName "dTimStart"^^xsd:string .
_:b130
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b17
_:b131
sp:varName "nameWellBore"^^xsd:string .
_:b16
sp:varName "pressureTestType"^^xsd:string .
_:b132
sp:varName "dTimStart"^^xsd:string .
_:b15
_:b133
sp:varName "statusInfo"^^xsd:string .
_:b134
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b142
_:b135
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b141
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b140
sp:varName "statusInfo"^^xsd:string .
_:b123
sp:varName "tvdDiaPilotPlan"^^xsd:string .
_:b139
sp:varName "dTimStart"^^xsd:string .
_:b124
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b138
_:b125
sp:varName "nameWellBore"^^xsd:string .
_:b137
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b126
sp:varName "dTimStart"^^xsd:string .
_:b136
sp:varName "tvdStrengthForm"^^xsd:string .
_:b127
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b128
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b127
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b126
sp:varName "statusInfo"^^xsd:string .
_:b97
sp:varName "md"^^xsd:string .
_:b125
sp:varName "dTimStart"^^xsd:string .
_:b98
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b124
_:b99
sp:varName "nameWellBore"^^xsd:string .
_:b123
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b122
sp:varName "mdDiaHoleStart"^^xsd:string .
_:b100
sp:varName "dTimStart"^^xsd:string .
_:b62
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b101
sp:varName "statusInfo"^^xsd:string .
_:b61
_:b102
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b60
sp:varName "statusInfo"^^xsd:string .
_:b103
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b59
sp:varName "dTimStart"^^xsd:string .
_:b64
sp:varName "mdDiaHoleStart"^^xsd:string .
_:b58
_:b65
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b66
sp:varName "nameWellBore"^^xsd:string .
_:b57
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b67
sp:varName "dTimStart"^^xsd:string .
_:b56
sp:varName "mdDiaPilotPlan"^^xsd:string .
_:b68
sp:varName "statusInfo"^^xsd:string .
_:b13
_:b69
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b70
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b12
sp:varName "statusInfo"^^xsd:string .
_:b110
sp:varName "sum24Hr"^^xsd:string .
_:b11
sp:varName "dTimStart"^^xsd:string .
_:b111
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b10
_:b112
sp:varName "nameWellBore"^^xsd:string .
_:b9 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b113
sp:varName "dTimStart"^^xsd:string .
_:b8 sp:varName "distDrill"^^xsd:string .
_:b114
sp:varName "statusInfo"^^xsd:string .
_:b94
_:b115
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b93
sp:varName "statusInfo"^^xsd:string .
_:b1 sp:varName "wellBoreDrillingType"^^xsd:string .
_:b92
sp:varName "dTimStart"^^xsd:string .
_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b91
sp:varName "nameWellBore"^^xsd:string .
_:b3 sp:varName "nameWellBore"^^xsd:string .
_:b90
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b4 sp:varName "dTimStart"^^xsd:string .
_:b89
sp:varName "sum24Hr"^^xsd:string .
_:b5 sp:varName "statusInfo"^^xsd:string .
_:b55
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b6 sp:varName "typeWellBore"^^xsd:string .
_:b54
_:b7 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b91
sp:varName "ropCurrentValue"^^xsd:string .
_:b92
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b53
sp:varName "statusInfo"^^xsd:string .
_:b93
sp:varName "nameWellBore"^^xsd:string .
_:b52
_:b94
sp:varName "dTimStart"^^xsd:string .
_:b51
sp:varName "nameWellBore"^^xsd:string .
_:b95
sp:varName "statusInfo"^^xsd:string .
_:b50
_:b96
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b43
sp:varName "elevKelly"^^xsd:string .
_:b44
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b49
sp:varName "tvd"^^xsd:string .
_:b45
sp:varName "nameWellBore"^^xsd:string .
_:b48
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b46
sp:varName "dTimStart"^^xsd:string .
_:b47
sp:varName "statusInfo"^^xsd:string .
_:b48
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b46
sp:varName "statusInfo"^^xsd:string .
_:b49
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b45
sp:varName "dTimStart"^^xsd:string .
_:b29
sp:varName "mdPlanned"^^xsd:string .
_:b44
_:b30
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b31
sp:varName "nameWellBore"^^xsd:string .
_:b43
sp:varName "temporalPartOfAWellBore"^^xsd:string .
_:b32
sp:varName "dTimStart"^^xsd:string .
_:b42
sp:varName "md"^^xsd:string .
_:b33
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b34
sp:varName "normalizedWellBoreName"^^xsd:string .
......
# Saved by TopBraid on Mon Aug 08 14:39:30 BST 2011
# Saved by TopBraid on Tue Aug 09 14:36:52 BST 2011
# baseURI: http://www.reportinghub.no/iso15926/bindEP-NativeOWL
# imports: http://www.reportinghub.no/ep/schema/1.1.1/ddr
# imports: http://www.reportinghub.no/ep/schema/1.1/activity
......@@ -18,9 +18,6 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/well#AllOrPartOfTheLifeOfAWellBore>
rdfs:subClassOf iso15926:PossibleIndividual .
<http://www.reportinghub.no/iso15926/bindEP-NativeOWL>
rdf:type owl:Ontology ;
owl:imports <http://purl.org/dc/elements/1.1/> , <http://www.reportinghub.no/ep/schema/1.1.1/ddr> , <http://www.w3.org/2004/02/skos/core> , <http://purl.org/dc/terms/> , <http://www.reportinghub.no/ep/schema/equipment> , <http://www.reportinghub.no/ep/schema/well> , <http://www.reportinghub.no/ep/schema/report> , <http://www.reportinghub.no/iso15926/nativeOWL> , <http://www.reportinghub.no/ep/schema/1.1/activity> ;
......
# Saved by TopBraid on Fri Aug 05 15:03:26 BST 2011
# Saved by TopBraid on Tue Aug 09 15:00:49 BST 2011
# baseURI: http://www.reportinghub.no/iso15926/nativeOWL
# imports: http://purl.org/dc/elements/1.1/
# imports: http://www.w3.org/2004/02/skos/core
# imports: http://www.reportinghub.no/ep/schema/1.1/core
# imports: http://purl.org/dc/terms/
@prefix : <http://www.reportinghub.no/iso15926/nativeOWL#> .
......@@ -10,48 +11,48 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/iso15926/nativeOWL>
rdf:type owl:Ontology ;
owl:imports <http://purl.org/dc/elements/1.1/> , <http://purl.org/dc/terms/> , <http://www.w3.org/2004/02/skos/core> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
:Activity
rdf:type owl:Class ;
rdfs:label "activity"^^xsd:string ;
rdfs:subClassOf :PossibleIndividual .
:PossibleIndividual
rdf:type owl:Class ;
rdfs:comment "something that exists or could exist in the universe"^^xsd:string ;
rdfs:label "possible individual"^^xsd:string ;
rdfs:subClassOf owl:Thing .
:hasPart
<http://www.reportinghub.no/ep/schema/core#hasPart>
rdf:type owl:TransitiveProperty ;
rdfs:domain :PossibleIndividual ;
rdfs:label "has part"^^xsd:string ;
rdfs:range :PossibleIndividual ;
owl:inverseOf :partOf .
owl:inverseOf <http://www.reportinghub.no/ep/schema/core#partOf> .
:hasTemporalPart
<http://www.reportinghub.no/ep/schema/core#hasTemporalPart>
rdf:type owl:TransitiveProperty ;
rdfs:domain :PossibleIndividual ;
rdfs:label "has temporal part"^^xsd:string ;
rdfs:range :PossibleIndividual ;
rdfs:subPropertyOf :hasPart ;
owl:inverseOf :temporalPartOf .
rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> ;
owl:inverseOf <http://www.reportinghub.no/ep/schema/core#temporalPartOf> .
:partOf
<http://www.reportinghub.no/ep/schema/core#partOf>
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:domain :PossibleIndividual ;
rdfs:label "part of"^^xsd:string ;
rdfs:range :PossibleIndividual ;
owl:inverseOf :hasPart .
owl:inverseOf <http://www.reportinghub.no/ep/schema/core#hasPart> .
:temporalPartOf
<http://www.reportinghub.no/ep/schema/core#temporalPartOf>
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:domain :PossibleIndividual ;
rdfs:label "temporal part of"^^xsd:string ;
rdfs:range :PossibleIndividual ;
rdfs:subPropertyOf :partOf ;
owl:inverseOf :hasTemporalPart .
rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#partOf> ;
owl:inverseOf <http://www.reportinghub.no/ep/schema/core#hasTemporalPart> .
<http://www.reportinghub.no/iso15926/nativeOWL>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.1/core> , <http://www.w3.org/2004/02/skos/core> , <http://purl.org/dc/terms/> , <http://purl.org/dc/elements/1.1/> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
:Activity
rdf:type owl:Class ;
rdfs:label "activity"^^xsd:string ;
rdfs:subClassOf :PossibleIndividual .
:PossibleIndividual
rdf:type owl:Class ;
rdfs:comment "something that exists or could exist in the universe"^^xsd:string ;
rdfs:label "possible individual"^^xsd:string ;
rdfs:subClassOf owl:Thing .
......
# Saved by TopBraid on Thu Aug 04 09:37:09 BST 2011
# Saved by TopBraid on Tue Aug 09 14:48:52 BST 2011
# baseURI: http://www.reportinghub.no/1.1/schema/NPD-to-15926
# imports: http://topbraid.org/spin/spinmapl
# imports: http://spinrdf.org/spin
# imports: http://www.reportinghub.no/1.1/schema/npd
# imports: http://spinrdf.org/spin
# imports: http://rds.posccaesar.org/2008/06/OWL/RDL
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
......@@ -22,7 +22,7 @@
<http://www.reportinghub.no/1.1/schema/NPD-to-15926>
rdf:type owl:Ontology ;
owl:imports <http://rds.posccaesar.org/2008/06/OWL/RDL> , <http://www.reportinghub.no/1.1/schema/npd> , <http://topbraid.org/spin/spinmapl> , <http://spinrdf.org/spin> ;
owl:imports <http://spinrdf.org/spin> , <http://topbraid.org/spin/spinmapl> , <http://www.reportinghub.no/1.1/schema/npd> , <http://rds.posccaesar.org/2008/06/OWL/RDL> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
npdMap:ClassifyArrangedIndividual
......@@ -227,13 +227,7 @@ npdMap:Licence_1
rdf:type npd:Licence ;
npd:id "ABC123"^^xsd:string .
npd:NpdIndividual
spin:rule
[ rdf:type npdMap:CreateIndividualWithNPDID ;
sp:arg1 "\"Individual\""^^xsd:string
] .
npd:WellBore
<http://www.reportinghub.no/ep/schema/well#WellBore>
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """This rule creates the WellBore and Well and joins them up using a composition relationship (dm:ArrangementOfIndividual)
......@@ -296,6 +290,12 @@ Note that because it uses the same URI production rule as other functions, we do
[ rdf:type npdMap:ClassifyArrangedIndividual
] .
npd:NpdIndividual
spin:rule
[ rdf:type npdMap:CreateIndividualWithNPDID ;
sp:arg1 "\"Individual\""^^xsd:string
] .
npd:WellBore_1
npd:drilledInProductionLicence
npdMap:Licence_1 .
......@@ -303,7 +303,7 @@ npd:WellBore_1
npd:wellDiskosType
rdf:type owl:DatatypeProperty ;
rdfs:comment "Corresponds to DISKOS Type field in WellBore tables"^^xsd:string ;
rdfs:domain npd:Well ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#Well> ;
rdfs:range xsd:string .
_:b13
......
# Saved by TopBraid on Tue Aug 09 15:35:38 BST 2011
# baseURI: http://www.reportinghub.no/1.1/schema/npd
# imports: http://www.reportinghub.no/ep/schema/organization
# imports: http://www.reportinghub.no/ep/schema/facility
# imports: http://www.reportinghub.no/ep/schema/well
@prefix facility: <http://www.reportinghub.no/ep/schema/facility#> .
@prefix npd: <http://www.reportinghub.no/schema/npd#> .
@prefix organization: <http://www.reportinghub.no/ep/schema/organization#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
......@@ -12,17 +18,53 @@
<http://www.reportinghub.no/1.1/schema/npd>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/organization> , <http://www.reportinghub.no/ep/schema/facility> , <http://www.reportinghub.no/ep/schema/well> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
npd:BusinessArrangementArea
<http://www.reportinghub.no/ep/schema/core#PhysicalThing>
rdf:type owl:Class ;
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 ;
rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual , npd:Owner .
rdfs:comment "An individual (cringe) that has temporal extent. If Matthew and Chris ever found out about this, they'd string me up. - IB"^^xsd:string .
facility:Facility
rdf:type owl:Class ;
rdfs:subClassOf npd:NpdIndividual .
facility:FixedFacility
rdf:type owl:Class ;
rdfs:comment "'Permanently placed facility' is a generic term for all facilities that are placed on a field permanently. Floating production facilities, which in principle are mobile, come under this definition as they are meant to be permanently placed on the field."^^xsd:string ;
rdfs:subClassOf facility:Facility .
facility:MoveableFacility
rdf:type owl:Class ;
rdfs:comment "Mobile facilities are facilities not meant to be permanently placed on the field during the lifetime of the field, for example mobile drilling units."^^xsd:string ;
rdfs:subClassOf facility:Facility .
npd:Company
facility:SubSurfaceFixedFacility
rdf:type owl:Class ;
rdfs:subClassOf facility:FixedFacility .
facility:SurfaceFixedFacility
rdf:type owl:Class ;
rdfs:subClassOf facility:FixedFacility .
organization:Company
rdf:type owl:Class ;
rdfs:subClassOf npd:Individual .
<http://www.reportinghub.no/ep/schema/well#Well>
rdf:type owl:Class ;
rdfs:comment "Wells are referred to by name in the NPD datasheets, but there is not specific dataset for them, nor do they have NPDIDs. It is assumed that Wells may have more than one WellBore, but usually only have one. Wells belong to Fields, it would seem, but again the data is patchy."^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> .
<http://www.reportinghub.no/ep/schema/well#WellBore>
rdf:type owl:Class ;
rdfs:subClassOf npd:NpdIndividual , <http://www.reportinghub.no/ep/schema/well#AllOrPartOfTheLifeOfAWellBore> .
npd:BusinessArrangementArea
rdf:type owl:Class ;
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 ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> , npd:NpdIndividual , npd:Owner .
npd:DAS_DecidedByTheLicensees
rdf:type npd:DiscoveryActivityStatus ;
rdfs:label "decided by the licensees"@en ;
......@@ -201,10 +243,6 @@ npd:FFP_ShutDown
rdfs:label "shut down"@en ;
npd:code "SHUT DOWN"^^xsd:string .
npd:Facility
rdf:type owl:Class ;
rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual .
npd:Field
rdf:type owl:Class ;
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.
......@@ -225,11 +263,6 @@ npd:FieldPart
rdfs:comment "A part of a Field"^^xsd:string ;
rdfs:subClassOf npd:FixedFacilityParent .
npd:FixedFacility
rdf:type owl:Class ;
rdfs:comment "'Permanently placed facility' is a generic term for all facilities that are placed on a field permanently. Floating production facilities, which in principle are mobile, come under this definition as they are meant to be permanently placed on the field."^^xsd:string ;
rdfs:subClassOf npd:Facility .
npd:FixedFacilityParent
rdf:type owl:Class ;
rdfs:subClassOf npd:NpdIndividual .
......@@ -283,7 +316,7 @@ npd:LS_Inactive
npd:Licence
rdf:type owl:Class ;
rdfs:comment "Production licences are granted by the Ministry of Petroleum and Energy. Transfer of a production licence or participating interest in a production licence must be approved by the ministry."^^xsd:string ;
rdfs:subClassOf npd:Owner , npd:NpdIndividual , npd:TemporalIndividual .
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> , npd:NpdIndividual , npd:Owner .
npd:LicenseStatus
rdf:type owl:Class ;
......@@ -312,18 +345,13 @@ npd:MainNCSArea
rdfs:subClassOf npd:Enumeration ;
owl:oneOf (npd:MNA_NorthSea npd:MNA_NorwegianSea npd:MNA_BarentsSea) .
npd:MoveableFacility
rdf:type owl:Class ;
rdfs:comment "Mobile facilities are facilities not meant to be permanently placed on the field during the lifetime of the field, for example mobile drilling units."^^xsd:string ;
rdfs:subClassOf npd:Facility .
npd:NpdIndividual
rdf:type owl:Class ;
rdfs:subClassOf npd:Individual .
npd:OperatingCompany
rdf:type owl:Class ;
rdfs:subClassOf npd:NpdIndividual , npd:Company .
rdfs:subClassOf organization:Company , npd:NpdIndividual .
npd:Owner
rdf:type owl:Class ;
......@@ -336,7 +364,7 @@ npd:ParcellBAA
npd:ParentCompany
rdf:type owl:Class ;
rdfs:subClassOf npd:Company .
rdfs:subClassOf organization:Company .
npd:SeismicAreaBAA
rdf:type owl:Class ;
......@@ -345,7 +373,7 @@ npd:SeismicAreaBAA
npd:Share
rdf:type owl:Class ;
rdfs:comment "A company's share in something - e.g. a BAA or a License"^^xsd:string ;
rdfs:subClassOf npd:TemporalIndividual .
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> .
npd:ShareOfBAA
rdf:type owl:Class ;
......@@ -360,23 +388,10 @@ npd:SlidingScaleBAA
rdf:type owl:Class ;
rdfs:subClassOf npd:BusinessArrangementArea .
npd:SubSurfaceFixedFacility
rdf:type owl:Class ;
rdfs:subClassOf npd:FixedFacility .
npd:SurfaceFixedFacility
rdf:type owl:Class ;
rdfs:subClassOf npd:FixedFacility .
npd:TUF
rdf:type owl:Class ;
rdfs:comment "TUF is an abbreviation for \"Transportation and Utilization Facilities\"."^^xsd:string ;
rdfs:subClassOf npd:FixedFacilityParent .
npd:TemporalIndividual
rdf:type owl:Class ;
rdfs:comment "An individual (cringe) that has temporal extent. If Matthew and Chris ever found out about this, they'd string me up."^^xsd:string ;
rdfs:subClassOf npd:Individual .
rdfs:subClassOf facility:Facility , npd:FixedFacilityParent .
npd:TufPart
rdf:type owl:Class ;
......@@ -437,15 +452,6 @@ npd:WBC_Water-Gas
rdfs:label "water/gas"@en ;
npd:code "WATER/GAS"^^xsd:string .
npd:Well
rdf:type owl:Class ;
rdfs:comment "Wells are referred to by name in the NPD datasheets, but there is not specific dataset for them, nor do they have NPDIDs. It is assumed that Wells may have more than one WellBore, but usually only have one. Wells belong to Fields, it would seem, but again the data is patchy."^^xsd:string ;
rdfs:subClassOf npd:Individual .
npd:WellBore
rdf:type owl:Class ;
rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual .
npd:WellBoreContent
rdf:type owl:Class ;
rdfs:label "Well bore content"^^xsd:string ;
......@@ -464,7 +470,7 @@ npd:baaShared
npd:belongsTo
rdf:type owl:ObjectProperty ;
rdfs:domain npd:FixedFacility ;
rdfs:domain facility:FixedFacility ;
rdfs:range npd:FixedFacilityParent .
npd:code
......@@ -474,7 +480,7 @@ npd:code
npd:companyShortName
rdf:type owl:DatatypeProperty ;
rdfs:domain npd:Company ;
rdfs:domain organization:Company ;
rdfs:range xsd:string ;
rdfs:subPropertyOf rdfs:label .
......@@ -486,14 +492,14 @@ npd:currentActivityStatus
npd:currentOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Current Operator field in fixed facility tables"^^xsd:string ;
rdfs:domain npd:FixedFacility ;
rdfs:range npd:Company .
rdfs:domain facility:FixedFacility ;
rdfs:range organization:Company .
npd:currentlyResponsibleCompany
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Currently Reponsible Company field in moveable facility tables"^^xsd:string ;
rdfs:domain npd:MoveableFacility ;
rdfs:range npd:Company .
rdfs:domain facility:MoveableFacility ;
rdfs:range organization:Company .
npd:discoveryCurrentActivityStatus
rdf:type owl:ObjectProperty ;
......@@ -520,7 +526,7 @@ npd:discoveryOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Operator field in NPD Discovery table (overview)"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:range npd:Company .
rdfs:range organization:Company .
npd:discoveryOwner
rdf:type owl:ObjectProperty ;
......@@ -532,7 +538,7 @@ npd:discoveryWellBore
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Discovery Wellbore NPDID in the Discovery table (overview)"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:range npd:WellBore .
rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> .
npd:discoveryYear
rdf:type owl:DatatypeProperty ;
......@@ -542,43 +548,43 @@ npd:discoveryYear
npd:drilledInProductionLicence
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Drilled in Production Licence field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range npd:Licence .
npd:drillingFacility
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Drilled in Production License field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:range npd:Facility .
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range facility:Facility .
npd:drillingOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Drilling Operator field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:range npd:Company .
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range organization:Company .
npd:endDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "The date at which an individual ceases to exist"^^xsd:string ;
rdfs:domain npd:TemporalIndividual ;
rdfs:domain <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
rdfs:range xsd:date .
npd:facilityKind
rdf:type owl:DatatypeProperty ;
rdfs:comment "corresponds to Kind field in both the fixed and moveable facility tables"^^xsd:string ;
rdfs:domain npd:Facility ;
rdfs:domain facility:Facility ;
rdfs:range xsd:string .
npd:fieldDiscoveryWellBore
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Discovery Wellbore NPDID in the Field table "^^xsd:string ;
rdfs:domain npd:Field ;
rdfs:range npd:WellBore .
rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> .
npd:fieldOperator
rdf:type owl:ObjectProperty ;
rdfs:domain npd:Field ;
rdfs:range npd:Company .
rdfs:range organization:Company .
npd:fieldOwner
rdf:type owl:ObjectProperty ;
......@@ -589,7 +595,7 @@ npd:fieldOwner
npd:fixedFacilityPhase
rdf:type owl:ObjectProperty ;
rdfs:comment "corresponds to Phase field in fixed facility tables"^^xsd:string ;
rdfs:domain npd:FixedFacility ;
rdfs:domain facility:FixedFacility ;
rdfs:range npd:FixedFacilityPhase .
npd:id
......@@ -643,8 +649,8 @@ npd:partOfTuf
npd:partOfWell
rdf:type owl:ObjectProperty ;
rdfs:domain npd:WellBore ;
rdfs:range npd:Well .
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#Well> .
npd:percentageOfShare
rdf:type owl:DatatypeProperty ;
......@@ -654,60 +660,60 @@ npd:percentageOfShare
npd:productionFacility
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Production Facility field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:range npd:Facility .
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range facility:Facility .
npd:shareHolder
rdf:type owl:ObjectProperty ;
rdfs:comment "Equivalent to AwardedTo field in License table"^^xsd:string ;
rdfs:domain npd:Share ;
rdfs:range npd:Company .
rdfs:range organization:Company .
npd:startDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "The date at which an individual comes into existance"^^xsd:string ;
rdfs:domain npd:TemporalIndividual ;
rdfs:domain <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
rdfs:range xsd:date .
npd:wellBoreCompletionDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "Corresponds to Completion Date field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range xsd:date ;
rdfs:subPropertyOf npd:endDate .
npd:wellBoreContent
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Content field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range npd:WellBoreContent .
npd:wellBoreDrillPermit
rdf:type owl:DatatypeProperty ;
rdfs:comment "Corresponds to Drill Permit field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range xsd:string .
npd:wellBorePurpose
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Purpose field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range npd:WellBorePurpose .
npd:wellBoreType
rdf:type owl:DatatypeProperty ;
rdfs:comment "Corresponds to Type field in WellBore tables"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range xsd:string .
npd:wellPartOfField
rdf:type owl:ObjectProperty ;
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 ;
rdfs:domain npd:Well ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#Well> ;
rdfs:range npd:Field .
npd:wellboreOwner
rdf:type owl:ObjectProperty ;
rdfs:comment "Corresponds to Owner field in WellBore tables - see also Owner Kind"^^xsd:string ;
rdfs:domain npd:WellBore ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:range npd:Owner .
......
# Saved by TopBraid on Tue Aug 09 15:37:11 BST 2011
# baseURI: http://www.reportinghub.no/spin/rh
# imports: http://spinrdf.org/spin
# imports: http://topbraid.org/spin/spinmapl
# imports: http://www.reportinghub.no/1.1/schema/npd
# imports: http://spinrdf.org/spin
@prefix fn: <http://www.w3.org/2005/xpath-functions#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
......@@ -76,7 +77,7 @@ rhspin:GetWellBoresOfWell
[ rdf:type spl:Argument ;
rdfs:comment "The Well to get the bores of."^^xsd:string ;
spl:predicate <http://spinrdf.org/arg#well> ;
spl:valueType <http://www.reportinghub.no/schema/npd#Well>
spl:valueType <http://www.reportinghub.no/ep/schema/well#Well>
] .
rhspin:baaById
......@@ -181,9 +182,9 @@ rhspin:companyHasLicenceForWellBore
[ rdf:type spl:Argument ;
rdfs:comment "The Company to match."^^xsd:string ;
spl:predicate sp:arg1 ;
spl:valueType <http://www.reportinghub.no/schema/npd#Company>
spl:valueType <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spin:returnType <http://www.reportinghub.no/schema/npd#WellBore> .
spin:returnType <http://www.reportinghub.no/ep/schema/well#WellBore> .
rhspin:discoveryById
rdf:type spin:Function ;
......@@ -385,7 +386,7 @@ rhspin:parentCompanyByName
spl:predicate <http://spinrdf.org/arg#name> ;
spl:valueType xsd:string
] ;
spin:returnType <http://www.reportinghub.no/schema/npd#WellBore> .
spin:returnType <http://www.reportinghub.no/ep/schema/well#WellBore> .
rhspin:tufById
rdf:type spin:Function ;
......@@ -440,7 +441,7 @@ rhspin:wellBoreByName
spl:predicate <http://spinrdf.org/arg#wellBoreName> ;
spl:valueType xsd:string
] ;
spin:returnType <http://www.reportinghub.no/schema/npd#WellBore> .
spin:returnType <http://www.reportinghub.no/ep/schema/well#WellBore> .
rhspin:wellByName
rdf:type spin:Function ;
......@@ -466,46 +467,46 @@ rhspin:wellByName
spl:predicate <http://spinrdf.org/arg#wellName> ;
spl:valueType xsd:string
] ;
spin:returnType <http://www.reportinghub.no/schema/npd#Well> .
spin:returnType <http://www.reportinghub.no/ep/schema/well#Well> .
_:b3 sp:varName "wellBore"^^xsd:string .
_:b1 sp:varName "wellBoreName"^^xsd:string .
_:b8 sp:varName "endDate"^^xsd:string .
_:b2 sp:varName "wellBore"^^xsd:string .
_:b7 sp:varName "startDate"^^xsd:string .
_:b3 sp:varName "wellBore"^^xsd:string .
_:b6 sp:varName "licence"^^xsd:string .
_:b4 sp:varName "nowDate"^^xsd:string .
_:b5 sp:varName "share"^^xsd:string .
_:b4 sp:varName "nowDate"^^xsd:string .
_:b6 sp:varName "licence"^^xsd:string .
_:b17
sp:varName "t4"^^xsd:string .
_:b7 sp:varName "startDate"^^xsd:string .
_:b16
sp:varName "t3"^^xsd:string .
_:b8 sp:varName "endDate"^^xsd:string .
_:b15
sp:varName "t2"^^xsd:string .
_:b9 sp:varName "normalizedStr"^^xsd:string .
_:b14
sp:varName "t1"^^xsd:string .
_:b10
sp:varName "s1"^^xsd:string .
_:b13
sp:varName "t0b"^^xsd:string .
_:b11
sp:varName "s2"^^xsd:string .
_:b12
sp:varName "t0a"^^xsd:string .
_:b11
sp:varName "s2"^^xsd:string .
_:b13
sp:varName "t0b"^^xsd:string .
_:b10
sp:varName "s1"^^xsd:string .
_:b14
sp:varName "t1"^^xsd:string .
_:b9 sp:varName "normalizedStr"^^xsd:string .
_:b15
sp:varName "t2"^^xsd:string .
_:b2 sp:varName "wellBore"^^xsd:string .
_:b16
sp:varName "t3"^^xsd:string .
_:b1 sp:varName "wellBoreName"^^xsd:string .
_:b17
sp:varName "t4"^^xsd:string .
......
# Saved by TopBraid on Tue Aug 09 15:37:11 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
# Saved by TopBraid on Tue Aug 09 15:36:54 BST 2011
# baseURI: http://www.reportinghub.no/transform/spreadsheets2npd
# imports: http://topbraid.org/spin/spinmapl
# imports: file:///www.reportinghub.no/transform/npd/company
......@@ -55,22 +56,22 @@
spinmap:context :BAA-BusinessArrangementArea ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baa#baaName> ;
<file:///www.reportinghub.no/transform/npd/baa#baaNpdidBsnsArrArea> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :BAA-BusinessArrangementArea ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate :baaKind
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baa#baaDateValidTo> ;
<file:///www.reportinghub.no/transform/npd/baa#baaKind> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#endDate>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -89,37 +90,32 @@
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :BAA-BusinessArrangementArea ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate :baaKind
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baa#baaKind> ;
<file:///www.reportinghub.no/transform/npd/baa#baaDateValidTo> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#endDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :BAA-BusinessArrangementArea ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baa#baaNpdidBsnsArrArea> ;
<file:///www.reportinghub.no/transform/npd/baa#baaName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] .
<file:///www.reportinghub.no/transform/npd/baalicensee#BAALicensee>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :BAALicensee-ShareOfBAA ;
spinmap:expression
[ rdf:type xsd:float ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeInterest> ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfBAA> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#percentageOfShare>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -128,12 +124,12 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
spinmapl:type <http://www.reportinghub.no/schema/npd#BusinessArrangementArea>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#cmpLongName> ;
<file:///www.reportinghub.no/transform/npd/baalicensee#baaName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#shareHolder>
<http://www.reportinghub.no/schema/npd#baaShared>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -144,9 +140,9 @@
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidTo> ;
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidFrom> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#endDate>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -157,9 +153,9 @@
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidFrom> ;
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidTo> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
<http://www.reportinghub.no/schema/npd#endDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -168,56 +164,58 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#BusinessArrangementArea>
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#baaName> ;
<file:///www.reportinghub.no/transform/npd/baalicensee#cmpLongName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#baaShared>
<http://www.reportinghub.no/schema/npd#shareHolder>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :BAALicensee-ShareOfBAA ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfBAA> ;
spinmap:expression
[ rdf:type xsd:float ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeInterest> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#percentageOfShare>
] .
<file:///www.reportinghub.no/transform/npd/company#Company>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-ParentCompany ;
spinmap:context :Company-Company ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
<file:///www.reportinghub.no/transform/npd/company#cmpNpdidCompany> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-ParentCompany ;
spinmap:context :Company-Company ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
<file:///www.reportinghub.no/transform/npd/company#cmpShortName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#companyShortName>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-Company ;
spinmap:expression
[ rdf:type rhspin:parentCompanyByName ;
arg:name spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
<file:///www.reportinghub.no/transform/npd/company#cmpLongName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#parentCompany>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Company-ParentCompany ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ParentCompany> ;
spinmap:context :Company-Company ;
spinmap:expression <http://www.reportinghub.no/schema/npd#OperatingCompany> ;
spinmap:targetPredicate1
rdf:type
] ;
......@@ -232,55 +230,44 @@
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Company-Company ;
spinmap:expression <http://www.reportinghub.no/schema/npd#OperatingCompany> ;
spinmap:context :Company-ParentCompany ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ParentCompany> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-Company ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type rhspin:parentCompanyByName ;
arg:name spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpLongName> ;
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#parentCompany>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-Company ;
spinmap:context :Company-ParentCompany ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpShortName> ;
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#companyShortName>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Company-Company ;
spinmap:context :Company-ParentCompany ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/company#cmpNpdidCompany> ;
<file:///www.reportinghub.no/transform/npd/company#cmpGroup> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] .
<file:///www.reportinghub.no/transform/npd/discovery#Discovery>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Owner>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscOwnerName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryOwner>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Discovery> ;
......@@ -308,36 +295,38 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
spinmapl:type <http://www.reportinghub.no/schema/npd#Owner>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#cmpLongName2> ;
<file:///www.reportinghub.no/transform/npd/discovery#dscOwnerName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryOperator>
<http://www.reportinghub.no/schema/npd#discoveryOwner>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression
[ rdf:type rhspin:fieldById ;
arg:id spin:_arg1
[ rdf:type xsd:integer ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#fldNpdidField> ;
<file:///www.reportinghub.no/transform/npd/discovery#dscDiscoveryYear> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryField>
<http://www.reportinghub.no/schema/npd#discoveryYear>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression
[ rdf:type xsd:integer ;
sp:arg1 spin:_arg1
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscDiscoveryYear> ;
<file:///www.reportinghub.no/transform/npd/discovery#cmpLongName2> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryYear>
<http://www.reportinghub.no/schema/npd#discoveryOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -355,15 +344,22 @@
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#DiscoveryActivityStatus>
[ rdf:type rhspin:fieldById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscCurrentActivityStatus> ;
<file:///www.reportinghub.no/transform/npd/discovery#fldNpdidField> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryCurrentActivityStatus>
<http://www.reportinghub.no/schema/npd#discoveryField>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscNpdidDiscovery> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -372,74 +368,77 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#HCType>
spinmapl:type <http://www.reportinghub.no/schema/npd#DiscoveryActivityStatus>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscHcType> ;
<file:///www.reportinghub.no/transform/npd/discovery#dscCurrentActivityStatus> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#discoveryHCType>
<http://www.reportinghub.no/schema/npd#discoveryCurrentActivityStatus>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscNpdidDiscovery> ;
<file:///www.reportinghub.no/transform/npd/discovery#dscName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Discovery-Discovery ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#HCType>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/discovery#dscName> ;
<file:///www.reportinghub.no/transform/npd/discovery#dscHcType> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#discoveryHCType>
] .
<file:///www.reportinghub.no/transform/npd/facilityfixed#FacilityFixed>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityPhase>
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclPhase> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclKind> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#fixedFacilityPhase>
<http://www.reportinghub.no/schema/npd#facilityKind>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityParent>
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclBelongsToS> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclStartupDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#belongsTo>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclCurrentOperatorName> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclNpdidFacility> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#currentOperator>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -450,8 +449,8 @@
sp:arg1 spin:_arg1 ;
sp:arg2 "N"
] ;
sp:arg2 <http://www.reportinghub.no/schema/npd#SubSurfaceFixedFacility> ;
sp:arg3 <http://www.reportinghub.no/schema/npd#SurfaceFixedFacility>
sp:arg2 <http://www.reportinghub.no/ep/schema/facility#SubSurfaceFixedFacility> ;
sp:arg3 <http://www.reportinghub.no/ep/schema/facility#SurfaceFixedFacility>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclSurface> ;
......@@ -461,67 +460,62 @@
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclNpdidFacility> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclCurrentOperatorName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#currentOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityParent>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclName> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclBelongsToS> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#belongsTo>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclStartupDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityPhase>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityFixed-FixedFacility ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclKind> ;
<file:///www.reportinghub.no/transform/npd/facilityfixed#fclPhase> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#facilityKind>
<http://www.reportinghub.no/schema/npd#fixedFacilityPhase>
] .
<file:///www.reportinghub.no/transform/npd/facilitymoveable#FacilityMoveable>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :FacilityMoveable-MoveableFacility ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclCurrentRespCompanyName> ;
spinmap:expression <http://www.reportinghub.no/ep/schema/facility#MoveableFacility> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#currentlyResponsibleCompany>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityMoveable-MoveableFacility ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclName> ;
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclNpdidFacility> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -537,58 +531,53 @@
spinmap:context :FacilityMoveable-MoveableFacility ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclNpdidFacility> ;
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :FacilityMoveable-MoveableFacility ;
spinmap:expression <http://www.reportinghub.no/schema/npd#MoveableFacility> ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/facilitymoveable#fclCurrentRespCompanyName> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#currentlyResponsibleCompany>
] .
<file:///www.reportinghub.no/transform/npd/field#Field>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Field-Field ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FieldActivityStatus>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Field> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#currentActivityStatus>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Field-Field ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Owner>
[ rdf:type rhspin:companyById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#fldNpdidOwner> ;
<file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#fieldOwner>
<http://www.reportinghub.no/schema/npd#fieldOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Field-Field ;
spinmap:expression
[ rdf:type rhspin:wellBoreByName ;
arg:wellBoreName spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#wlbName> ;
<file:///www.reportinghub.no/transform/npd/field#fldNpdidField> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#fieldDiscoveryWellBore>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -602,57 +591,84 @@
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Field-Field ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type rhspin:wellBoreByName ;
arg:wellBoreName spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#fldNpdidField> ;
<file:///www.reportinghub.no/transform/npd/field#wlbName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#fieldDiscoveryWellBore>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Field-Field ;
spinmap:expression
[ rdf:type rhspin:companyById ;
arg:id spin:_arg1
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Owner>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ;
<file:///www.reportinghub.no/transform/npd/field#fldNpdidOwner> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#fieldOperator>
<http://www.reportinghub.no/schema/npd#fieldOwner>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Field-Field ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Field> ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#FieldActivityStatus>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#currentActivityStatus>
] .
<file:///www.reportinghub.no/transform/npd/licence#Licence>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :License-License ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#LicenseStatus>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlLicensingActivityName> ;
<file:///www.reportinghub.no/transform/npd/licence#prlStatus> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#licensingActivity>
<http://www.reportinghub.no/schema/npd#licenseStatus>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :License-License ;
spinmap:expression spin:_arg1 ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlName> ;
<file:///www.reportinghub.no/transform/npd/licence#prlDateGranted> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :License-License ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Licence> ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlDateValidTo> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#endDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -664,78 +680,55 @@
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :License-License ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlDateValidTo> ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Licence> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#endDate>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :License-License ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlDateGranted> ;
<file:///www.reportinghub.no/transform/npd/licence#prlName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :License-License ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#LicenseStatus>
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licence#prlStatus> ;
<file:///www.reportinghub.no/transform/npd/licence#prlLicensingActivityName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#licenseStatus>
<http://www.reportinghub.no/schema/npd#licensingActivity>
] .
<file:///www.reportinghub.no/transform/npd/licensee#Licensee>
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfLicence> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeDateValidFrom> ;
<file:///www.reportinghub.no/transform/npd/licensee#prlNpdidLicence> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
<http://www.reportinghub.no/schema/npd#licenceShared>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression
[ rdf:type rhspin:companyById ;
arg:id spin:_arg1
[ rdf:type xsd:float ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licensee#cmpNpdidCompany> ;
<file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeInterest> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#shareHolder>
<http://www.reportinghub.no/schema/npd#percentageOfShare>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -754,36 +747,42 @@
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression
[ rdf:type xsd:float ;
sp:arg1 spin:_arg1
[ rdf:type rhspin:companyById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeInterest> ;
<file:///www.reportinghub.no/transform/npd/licensee#cmpNpdidCompany> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#percentageOfShare>
<http://www.reportinghub.no/schema/npd#shareHolder>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy" ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/licensee#prlNpdidLicence> ;
<file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeDateValidFrom> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#licenceShared>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :Licensee-ShareOfLicence ;
spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfLicence> ;
spinmap:targetPredicate1
rdf:type
] .
<file:///www.reportinghub.no/transform/npd/tufoperator#TUFOperator>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :TUFOperator-TUF ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/tufoperator#tufName> ;
spinmap:expression <http://www.reportinghub.no/schema/npd#TUF> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -795,59 +794,54 @@
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :TUFOperator-TUF ;
spinmap:expression <http://www.reportinghub.no/schema/npd#TUF> ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/tufoperator#tufName> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#name>
] .
<file:///www.reportinghub.no/transform/npd/wbdev#WBDev>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type rhspin:facilityById ;
arg:id spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#productionFacility>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drilledInProductionLicence>
<http://www.reportinghub.no/schema/npd#partOfWell>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbCompletionDate> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreCompletionDate>
<http://www.reportinghub.no/schema/npd#wellBoreType>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -855,54 +849,23 @@
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#DevelopmentWellBorePurpose>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbPurpose> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drillingOperator>
<http://www.reportinghub.no/schema/npd#wellBorePurpose>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBDev-Well ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-Well ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-Well ;
spinmap:expression
[ rdf:type rhspin:fieldById ;
......@@ -917,24 +880,37 @@
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type rhspin:facilityById ;
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityDrilling> ;
<file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drillingFacility>
<http://www.reportinghub.no/schema/npd#drilledInProductionLicence>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillPermit> ;
......@@ -943,6 +919,15 @@
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-Well ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
......@@ -961,66 +946,91 @@
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#DevelopmentWellBorePurpose>
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbPurpose> ;
<file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBorePurpose>
<http://www.reportinghub.no/schema/npd#drillingOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbCompletionDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreCompletionDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type rhspin:facilityById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityDrilling> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drillingFacility>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:expression
[ rdf:type rhspin:facilityById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#productionFacility>
] .
<file:///www.reportinghub.no/transform/npd/wbexp#WBExp>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:context :WBExp-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWellType> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreType>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBDev-WellBore ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#partOfWell>
] .
<file:///www.reportinghub.no/transform/npd/wbexp#WBExp>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#WellBoreContent>
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbContent> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreContent>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBExp-Well ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillPermit> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#wellBoreDrillPermit>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillPermit> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbNpdidWellbore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreDrillPermit>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1038,26 +1048,32 @@
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWell> ;
<file:///www.reportinghub.no/transform/npd/wbexp#prlNpdidProductionLicence> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#partOfWell>
<http://www.reportinghub.no/schema/npd#drilledInProductionLicence>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBExp-Well ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:context :WBExp-Well ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
[ rdf:type rhspin:fieldById ;
arg:id spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbCompletionDate> ;
<file:///www.reportinghub.no/transform/npd/wbexp#fldNpdidField> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreCompletionDate>
<http://www.reportinghub.no/schema/npd#wellPartOfField>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1066,12 +1082,19 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#ExplorationWellBorePurpose>
spinmapl:type <http://www.reportinghub.no/schema/npd#WellBoreContent>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbPurpose> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbContent> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBorePurpose>
<http://www.reportinghub.no/schema/npd#wellBoreContent>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1084,49 +1107,52 @@
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-Well ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type rhspin:fieldById ;
arg:id spin:_arg1
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#fldNpdidField> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbCompletionDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellPartOfField>
<http://www.reportinghub.no/schema/npd#wellBoreCompletionDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type rhspin:licenceById ;
arg:id spin:_arg1
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#prlNpdidProductionLicence> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbEntryDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drilledInProductionLicence>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#ExplorationWellBorePurpose>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbEntryDate> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbPurpose> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
<http://www.reportinghub.no/schema/npd#wellBorePurpose>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbNpdidWellbore> ;
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWellboreName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1135,60 +1161,46 @@
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbDrillingOperator> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drillingOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWellboreName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
] ;
] .
<file:///www.reportinghub.no/transform/npd/wbid#WBId>
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ;
spinmap:context :WBId-Well ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBExp-WellBore ;
spinmap:context :WBId-Well ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbexp#wlbWellType> ;
<file:///www.reportinghub.no/transform/npd/wbid#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreType>
] .
<file:///www.reportinghub.no/transform/npd/wbid#WBId>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBId-WellBore ;
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbid#wlbWell> ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#partOfWell>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBId-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbid#wlbWellboreName> ;
<file:///www.reportinghub.no/transform/npd/wbid#wlbNpdidWellbore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1204,46 +1216,46 @@
spinmap:context :WBId-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbid#wlbNpdidWellbore> ;
<file:///www.reportinghub.no/transform/npd/wbid#wlbWellboreName> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBId-WellBore ;
spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ;
spinmap:targetPredicate1
rdf:type
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbid#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#partOfWell>
] .
<file:///www.reportinghub.no/transform/npd/wbsha#WBSha>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBId-Well ;
spinmap:context :WBSha-Well ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbid#wlbWell> ;
<file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBId-Well ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ;
spinmap:targetPredicate1
rdf:type
] .
<file:///www.reportinghub.no/transform/npd/wbsha#WBSha>
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/ep/schema/organization#Company>
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
<file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillingOperator> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#partOfWell>
<http://www.reportinghub.no/schema/npd#drillingOperator>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1255,25 +1267,13 @@
<http://www.reportinghub.no/schema/npd#name>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ;
spinmap:targetPredicate1
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression
[ rdf:type spinmapl:resourceWithValue ;
sp:arg1 spin:_arg1 ;
spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ;
spinmapl:type <http://www.reportinghub.no/schema/npd#Company>
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillingOperator> ;
<file:///www.reportinghub.no/transform/npd/wbsha#wlbNpdidWellbore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#drillingOperator>
<http://www.reportinghub.no/schema/npd#id>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1291,28 +1291,28 @@
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBSha-Well ;
spinmap:expression spin:_arg1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
<file:///www.reportinghub.no/transform/npd/wbsha#wlbEntryDate> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#name>
<http://www.reportinghub.no/schema/npd#startDate>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillPermit> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#wellBoreDrillPermit>
spinmap:expression
[ rdf:type rhspin:wellByName ;
arg:wellName spin:_arg1
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBSha-Well ;
spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbWell> ;
spinmap:targetPredicate1
rdf:type
<http://www.reportinghub.no/schema/npd#partOfWell>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
......@@ -1330,24 +1330,25 @@
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression
[ rdf:type spif:parseDate ;
arg:pattern "dd.MM.yyyy"^^xsd:string ;
sp:arg1 spin:_arg1
] ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbEntryDate> ;
<file:///www.reportinghub.no/transform/npd/wbsha#wlbDrillPermit> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#startDate>
<http://www.reportinghub.no/schema/npd#wellBoreDrillPermit>
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-1-1 ;
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBSha-WellBore ;
spinmap:expression spin:_arg1 ;
spinmap:sourcePredicate1
<file:///www.reportinghub.no/transform/npd/wbsha#wlbNpdidWellbore> ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#WellBore> ;
spinmap:targetPredicate1
<http://www.reportinghub.no/schema/npd#id>
rdf:type
] ;
spinmap:rule
[ rdf:type spinmap:Mapping-0-1 ;
spinmap:context :WBSha-Well ;
spinmap:expression <http://www.reportinghub.no/ep/schema/well#Well> ;
spinmap:targetPredicate1
rdf:type
] .
arg:well
......@@ -1432,7 +1433,7 @@ arg:wellName
sp:arg1 <file:///www.reportinghub.no/transform/npd/facilityfixed#fclNpdidFacility> ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#FixedFacility> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/facility#FixedFacility> .
:FacilityMoveable-MoveableFacility
rdf:type spinmap:Context ;
......@@ -1442,7 +1443,7 @@ arg:wellName
sp:arg1 <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclNpdidFacility> ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#MoveableFacility> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/facility#MoveableFacility> .
:Field-Field
rdf:type spinmap:Context ;
......@@ -1489,7 +1490,7 @@ arg:wellName
[ rdf:type :buildDevWellURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#Well> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#Well> .
:WBDev-WellBore
rdf:type spinmap:Context ;
......@@ -1498,7 +1499,7 @@ arg:wellName
[ rdf:type :buildDevWellBoreURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#WellBore> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#WellBore> .
:WBExp-Well
rdf:type spinmap:Context ;
......@@ -1507,7 +1508,7 @@ arg:wellName
[ rdf:type :buildExpWellURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#Well> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#Well> .
:WBExp-WellBore
rdf:type spinmap:Context ;
......@@ -1516,7 +1517,7 @@ arg:wellName
[ rdf:type :buildExpWellBoreURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#WellBore> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#WellBore> .
:WBId-Well
rdf:type spinmap:Context ;
......@@ -1527,7 +1528,7 @@ arg:wellName
[ sp:varName "source"^^xsd:string
]
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#Well> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#Well> .
:WBId-WellBore
rdf:type spinmap:Context ;
......@@ -1536,7 +1537,7 @@ arg:wellName
[ rdf:type :buildIdWellBoreURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#WellBore> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#WellBore> .
:WBSha-Well
rdf:type spinmap:Context ;
......@@ -1545,7 +1546,7 @@ arg:wellName
[ rdf:type :buildShaWellURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#Well> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#Well> .
:WBSha-WellBore
rdf:type spinmap:Context ;
......@@ -1554,7 +1555,7 @@ arg:wellName
[ rdf:type :buildShaWellBoreURI ;
spinmap:source spinmap:_source
] ;
spinmap:targetClass <http://www.reportinghub.no/schema/npd#WellBore> .
spinmap:targetClass <http://www.reportinghub.no/ep/schema/well#WellBore> .
:baaKind
rdf:type rdf:Property ;
......
# Saved by TopBraid on Tue Aug 09 15:36:54 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......@@ -12,11 +13,11 @@
[] rdf:type inference:Configuration ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
composite:index "1"^^xsd:int
composite:index "0"^^xsd:int
] ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
composite:index "0"^^xsd:int
composite:index "1"^^xsd:int
] ;
inference:completeMode
"true"^^xsd:boolean ;
......