David Leal

Merge branch 'CompleteDDRToEPMapping'

1 +# Saved by TopBraid on Sat Sep 24 11:51:40 BST 2011
2 +# baseURI: null
3 +
4 +@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
5 +@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
6 +@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
7 +@prefix owl: <http://www.w3.org/2002/07/owl#> .
8 +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
9 +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
10 +@prefix visual: <http://topbraid.org/visual#> .
11 +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
12 +
13 +owl:DatatypeProperty
14 + forms:keyProperties (rdfs:label rdfs:comment <http://www.reportinghub.no/ep/schema/activity#descriptionOfActivitiesForecastForTheNextDailyReportingPeriod>) .
1 -# Saved by TopBraid on Tue Sep 20 20:26:46 BST 2011 1 +# Saved by TopBraid on Sat Sep 24 10:29:25 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment
3 +# imports: http://www.reportinghub.no/ep/schema/1.0/organization
3 # imports: http://www.reportinghub.no/ep/schema/1.0/well 4 # imports: http://www.reportinghub.no/ep/schema/1.0/well
4 # imports: http://www.reportinghub.no/ep/schema/1.0/core 5 # imports: http://www.reportinghub.no/ep/schema/1.0/core
5 6
...@@ -12,7 +13,7 @@ ...@@ -12,7 +13,7 @@
12 13
13 <http://www.reportinghub.no/ep/schema/1.0/equipment> 14 <http://www.reportinghub.no/ep/schema/1.0/equipment>
14 rdf:type owl:Ontology ; 15 rdf:type owl:Ontology ;
15 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/well> ; 16 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/organization> ;
16 owl:versionInfo "0.1.0"^^xsd:string . 17 owl:versionInfo "0.1.0"^^xsd:string .
17 18
18 ep-core:PhysicalThing 19 ep-core:PhysicalThing
...@@ -63,11 +64,26 @@ ep-eqt:ChokeValve ...@@ -63,11 +64,26 @@ ep-eqt:ChokeValve
63 rdfs:label "choke valve"^^xsd:string ; 64 rdfs:label "choke valve"^^xsd:string ;
64 rdfs:subClassOf ep-eqt:Equipment . 65 rdfs:subClassOf ep-eqt:Equipment .
65 66
67 +ep-eqt:ClassOfSupplyDefinedByAManufacturer
68 + rdf:type rdfs:Class ;
69 + rdfs:label "manufacturer model"^^xsd:string ;
70 + rdfs:subClassOf owl:Class .
71 +
66 ep-eqt:DrillBit 72 ep-eqt:DrillBit
67 rdf:type owl:Class ; 73 rdf:type owl:Class ;
68 rdfs:label "drill bit"^^xsd:string ; 74 rdfs:label "drill bit"^^xsd:string ;
69 rdfs:subClassOf ep-eqt:Equipment . 75 rdfs:subClassOf ep-eqt:Equipment .
70 76
77 +ep-eqt:DrillBitForWellBore
78 + rdf:type owl:Class ;
79 + rdfs:label "drill bit for wellbore"^^xsd:string ;
80 + rdfs:subClassOf ep-eqt:DrillBit .
81 +
82 +ep-eqt:DullGrade
83 + rdf:type rdfs:Class ;
84 + rdfs:label "dull grade"^^xsd:string ;
85 + rdfs:subClassOf owl:Class .
86 +
71 ep-eqt:Equipment 87 ep-eqt:Equipment
72 rdf:type owl:Class ; 88 rdf:type owl:Class ;
73 rdfs:label "Equipment"^^xsd:string ; 89 rdfs:label "Equipment"^^xsd:string ;
...@@ -146,6 +162,11 @@ ep-eqt:WellBoreLoggingTool ...@@ -146,6 +162,11 @@ ep-eqt:WellBoreLoggingTool
146 rdfs:label "well bore logging tool"^^xsd:string ; 162 rdfs:label "well bore logging tool"^^xsd:string ;
147 rdfs:subClassOf ep-eqt:Equipment . 163 rdfs:subClassOf ep-eqt:Equipment .
148 164
165 +ep-eqt:codeAssignedByAManufacturer
166 + rdf:type owl:DatatypeProperty ;
167 + rdfs:domain ep-eqt:ClassOfSupplyDefinedByAManufacturer ;
168 + rdfs:label "code assigned by manufacturer"^^xsd:string .
169 +
149 ep-eqt:diameterOfACasing 170 ep-eqt:diameterOfACasing
150 rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 171 rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
151 rdfs:domain ep-eqt:Casing ; 172 rdfs:domain ep-eqt:Casing ;
...@@ -182,6 +203,12 @@ ep-eqt:lengthOfInnerBarrel ...@@ -182,6 +203,12 @@ ep-eqt:lengthOfInnerBarrel
182 rdfs:label "length of inner barrel"^^xsd:string ; 203 rdfs:label "length of inner barrel"^^xsd:string ;
183 rdfs:range ep-core:Length . 204 rdfs:range ep-core:Length .
184 205
206 +ep-eqt:manufacturedBy
207 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
208 + rdfs:domain ep-eqt:Equipment ;
209 + rdfs:label "manaufactured by"^^xsd:string ;
210 + rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
211 +
185 ep-eqt:maximumPressureForBlowOutPreventer 212 ep-eqt:maximumPressureForBlowOutPreventer
186 rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 213 rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
187 rdfs:domain ep-eqt:BlowOutPreventer ; 214 rdfs:domain ep-eqt:BlowOutPreventer ;
......
1 -# Saved by TopBraid on Wed Sep 21 22:02:11 BST 2011 1 +# Saved by TopBraid on Fri Sep 23 19:55:56 BST 2011
2 # baseURI: null 2 # baseURI: null
3 3
4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . 4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
1 -# Saved by TopBraid on Tue Sep 20 22:08:02 BST 2011 1 +# Saved by TopBraid on Fri Sep 23 20:49:37 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/collector 2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/collector
3 # imports: http://www.reportinghub.no/ep/transform/1.1/wellboreInfo 3 # imports: http://www.reportinghub.no/ep/transform/1.1/wellboreInfo
4 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/equipFailureInfo 4 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/equipFailureInfo
...@@ -19,11 +19,13 @@ ...@@ -19,11 +19,13 @@
19 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo 19 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo
20 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/porePressure 20 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/porePressure
21 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo 21 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo
22 +# imports: http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord
22 # imports: http://spinrdf.org/spin 23 # imports: http://spinrdf.org/spin
23 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/fluid 24 # imports: http://www.reportinghub.no/ep/transform/1.1/ddr/fluid
24 25
25 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/collector#> . 26 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/collector#> .
26 @prefix activity: <http://www.reportinghub.no/ep/transform/1.1/ddr/activity#> . 27 @prefix activity: <http://www.reportinghub.no/ep/transform/1.1/ddr/activity#> .
28 +@prefix bitRecord: <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord#> .
27 @prefix casingLinerTubingRun: <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> . 29 @prefix casingLinerTubingRun: <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> .
28 @prefix cementStage: <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage#> . 30 @prefix cementStage: <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage#> .
29 @prefix check: <http://www.reportinghub.no/ep/transform/check#> . 31 @prefix check: <http://www.reportinghub.no/ep/transform/check#> .
...@@ -52,5 +54,5 @@ ...@@ -52,5 +54,5 @@
52 54
53 <http://www.reportinghub.no/ep/transform/1.1/ddr/collector> 55 <http://www.reportinghub.no/ep/transform/1.1/ddr/collector>
54 rdf:type owl:Ontology ; 56 rdf:type owl:Ontology ;
55 - owl:imports <http://www.reportinghub.no/ep/transform/check> , <http://www.reportinghub.no/ep/transform/1.1/ddr/formTestInfo> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr/stratInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid> , <http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport> , <http://www.reportinghub.no/ep/transform/1.1/ddr/porePressure> , <http://www.reportinghub.no/ep/transform/1.1/ddr/logInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/activity> , <http://www.reportinghub.no/ep/transform/1.1/wellboreInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/surveyStation> , <http://www.reportinghub.no/ep/transform/1.1/ddr/equipFailureInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/perfInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/lithShowInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage> , <http://www.reportinghub.no/ep/transform/1.1/wellAndWellBoreAlias> , <http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun> , <http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo> ; 57 + owl:imports <http://www.reportinghub.no/ep/transform/check> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr/formTestInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/stratInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid> , <http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport> , <http://www.reportinghub.no/ep/transform/1.1/ddr/porePressure> , <http://www.reportinghub.no/ep/transform/1.1/ddr/logInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/activity> , <http://www.reportinghub.no/ep/transform/1.1/wellboreInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/surveyStation> , <http://www.reportinghub.no/ep/transform/1.1/ddr/equipFailureInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/perfInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/lithShowInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/bitRecord> , <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage> , <http://www.reportinghub.no/ep/transform/1.1/wellAndWellBoreAlias> , <http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo> , <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun> , <http://www.reportinghub.no/ep/transform/1.1/ddr/statusInfo> ;
56 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 58 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
......
1 -# Saved by TopBraid on Tue Sep 20 22:08:02 BST 2011 1 +# Saved by TopBraid on Fri Sep 23 20:49:37 BST 2011
2 # baseURI: null 2 # baseURI: null
3 3
4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . 4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
1 +# Saved by TopBraid on Sat Sep 24 11:52:58 BST 2011
2 +# baseURI: null
3 +
4 +@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
5 +@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
6 +@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
7 +@prefix owl: <http://www.w3.org/2002/07/owl#> .
8 +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
9 +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
10 +@prefix visual: <http://topbraid.org/visual#> .
11 +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
12 +
13 +[] rdf:type inference:Configuration ;
14 + composite:child
15 + [ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
16 + composite:index "0"^^xsd:int
17 + ] .
1 -<witsml:drillReports version="1.4.0.0" xmlns:witsml="http://www.witsml.org/schemas/1series" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.witsml.org/schemas/1series file:///www.reportinghub.no/input/ddr/xsd/1.2/WITSML_drillReport_profiled_schema_2011_05_07.xsd"> 1 +<witsml:drillReports version="1.4.0.0" xmlns:witsml="http://www.witsml.org/schemas/1series" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.witsml.org/schemas/1series http://www.npd.no/schema/DDRS/1series/WITSML_drillReport_profiled_schema_phase2.xsd">
2 <witsml:drillReport> 2 <witsml:drillReport>
3 <witsml:nameWell>25/8-C-23</witsml:nameWell> 3 <witsml:nameWell>25/8-C-23</witsml:nameWell>
4 <witsml:nameWellbore>25/08-C-23 B</witsml:nameWellbore> 4 <witsml:nameWellbore>25/08-C-23 B</witsml:nameWellbore>
...@@ -65,6 +65,25 @@ ...@@ -65,6 +65,25 @@
65 <witsml:avgTempBH uom="degC">20</witsml:avgTempBH> 65 <witsml:avgTempBH uom="degC">20</witsml:avgTempBH>
66 <witsml:fixedRig>true</witsml:fixedRig> 66 <witsml:fixedRig>true</witsml:fixedRig>
67 </witsml:statusInfo> 67 </witsml:statusInfo>
68 +<witsml:bitRecord>
69 +<witsml:numBit>3</witsml:numBit>
70 +<witsml:diaBit uom="in">24</witsml:diaBit>
71 +<witsml:manufacturer>FredBloggs</witsml:manufacturer>
72 +<witsml:codeMfg>FB_1234</witsml:codeMfg>
73 +<witsml:dullGrade>myDullGrade</witsml:dullGrade>
74 +<witsml:bitRun>
75 +<witsml:eTimOpBit uom="h">2</witsml:eTimOpBit>
76 +<witsml:mdHoleStart uom="m">1000</witsml:mdHoleStart>
77 +<witsml:mdHoleStop uom="m">1010</witsml:mdHoleStop>
78 +<witsml:ropAv uom="m/h">5</witsml:ropAv>
79 +<witsml:mdHoleMadeRun uom="m">20</witsml:mdHoleMadeRun>
80 +<witsml:hrsDrilled uom="h">3</witsml:hrsDrilled>
81 +<witsml:hrsDrilledRun uom="h">4</witsml:hrsDrilledRun>
82 +<witsml:mdTotHoleMade uom="m">25</witsml:mdTotHoleMade>
83 +<witsml:totHrsDrilled uom="h">5</witsml:totHrsDrilled>
84 +<witsml:totRop uom="m/h">6</witsml:totRop>
85 +</witsml:bitRun>
86 +</witsml:bitRecord>
68 <witsml:casing_liner_tubing> 87 <witsml:casing_liner_tubing>
69 <witsml:type>c</witsml:type> 88 <witsml:type>c</witsml:type>
70 <witsml:id uom="in">13</witsml:id> 89 <witsml:id uom="in">13</witsml:id>
...@@ -321,8 +340,6 @@ Sand Zones: ...@@ -321,8 +340,6 @@ Sand Zones:
321 <witsml:coreNumber>1</witsml:coreNumber> 340 <witsml:coreNumber>1</witsml:coreNumber>
322 <witsml:mdTop uom="m">1234</witsml:mdTop> 341 <witsml:mdTop uom="m">1234</witsml:mdTop>
323 <witsml:mdBottom uom="m">1234</witsml:mdBottom> 342 <witsml:mdBottom uom="m">1234</witsml:mdBottom>
324 -<witsml:tvdTop uom="m">1200</witsml:tvdTop>
325 -<witsml:tvdBottom uom="m">1200</witsml:tvdBottom>
326 <witsml:lenRecovered uom="m">123</witsml:lenRecovered> 343 <witsml:lenRecovered uom="m">123</witsml:lenRecovered>
327 <witsml:recoverPc uom="%">89.9</witsml:recoverPc> 344 <witsml:recoverPc uom="%">89.9</witsml:recoverPc>
328 <witsml:lenBarrel uom="m">33.3</witsml:lenBarrel> 345 <witsml:lenBarrel uom="m">33.3</witsml:lenBarrel>
...@@ -358,14 +375,13 @@ Sand Zones: ...@@ -358,14 +375,13 @@ Sand Zones:
358 <witsml:formTestInfo> 375 <witsml:formTestInfo>
359 <witsml:dTim>2011-08-22T02:00:00.000Z</witsml:dTim> 376 <witsml:dTim>2011-08-22T02:00:00.000Z</witsml:dTim>
360 <witsml:md uom="m">1234.5</witsml:md> 377 <witsml:md uom="m">1234.5</witsml:md>
361 -<witsml:tvd uom="m">1200.5</witsml:tvd>
362 <witsml:presPore uom="MPa">66.5</witsml:presPore> 378 <witsml:presPore uom="MPa">66.5</witsml:presPore>
363 <witsml:goodSeal>true</witsml:goodSeal> 379 <witsml:goodSeal>true</witsml:goodSeal>
364 <witsml:mdSample uom="m">1224.3</witsml:mdSample> 380 <witsml:mdSample uom="m">1224.3</witsml:mdSample>
365 <witsml:dominateComponent>oil</witsml:dominateComponent> 381 <witsml:dominateComponent>oil</witsml:dominateComponent>
366 <witsml:densityHC uom="g/cm3">0.33</witsml:densityHC> 382 <witsml:densityHC uom="g/cm3">0.33</witsml:densityHC>
367 <witsml:volumeSample uom="dm3">11</witsml:volumeSample> 383 <witsml:volumeSample uom="dm3">11</witsml:volumeSample>
368 -<witsml:description>Formation test description ....</witsml:description> 384 +<witsml:description>Bla bla bla bla bla</witsml:description>
369 </witsml:formTestInfo> 385 </witsml:formTestInfo>
370 <witsml:lithShowInfo> 386 <witsml:lithShowInfo>
371 <witsml:dTim>2010-01-25T00:00:00.000Z</witsml:dTim> 387 <witsml:dTim>2010-01-25T00:00:00.000Z</witsml:dTim>
...@@ -373,13 +389,11 @@ Sand Zones: ...@@ -373,13 +389,11 @@ Sand Zones:
373 <witsml:mdBottom uom="m">3750</witsml:mdBottom> 389 <witsml:mdBottom uom="m">3750</witsml:mdBottom>
374 <witsml:tvdTop uom="m">1822.67</witsml:tvdTop> 390 <witsml:tvdTop uom="m">1822.67</witsml:tvdTop>
375 <witsml:tvdBottom uom="m">1827.57</witsml:tvdBottom> 391 <witsml:tvdBottom uom="m">1827.57</witsml:tvdBottom>
376 -<witsml:show>A show description ....</witsml:show>
377 <witsml:lithology>Sandstone with minor claystone (Heimdal Fm)</witsml:lithology> 392 <witsml:lithology>Sandstone with minor claystone (Heimdal Fm)</witsml:lithology>
378 </witsml:lithShowInfo> 393 </witsml:lithShowInfo>
379 <witsml:equipFailureInfo> 394 <witsml:equipFailureInfo>
380 <witsml:dTim>2009-12-31T00:00:00.000Z</witsml:dTim> 395 <witsml:dTim>2009-12-31T00:00:00.000Z</witsml:dTim>
381 - <witsml:md uom="m">2823</witsml:md> 396 + <witsml:md uom="m">2823</witsml:md>
382 - <witsml:tvd uom="m">2800</witsml:tvd>
383 <witsml:equipClass>pipe handling equ syst -- vertical pipe handling equ syst</witsml:equipClass> 397 <witsml:equipClass>pipe handling equ syst -- vertical pipe handling equ syst</witsml:equipClass>
384 <witsml:eTimMissProduction uom="min">180</witsml:eTimMissProduction> 398 <witsml:eTimMissProduction uom="min">180</witsml:eTimMissProduction>
385 <witsml:dTimRepair>2009-12-30T11:30:00.000Z</witsml:dTimRepair> 399 <witsml:dTimRepair>2009-12-30T11:30:00.000Z</witsml:dTimRepair>
...@@ -433,11 +447,11 @@ Sand Zones: ...@@ -433,11 +447,11 @@ Sand Zones:
433 <witsml:gasHigh uom="%">77.7</witsml:gasHigh> 447 <witsml:gasHigh uom="%">77.7</witsml:gasHigh>
434 <witsml:gasLow uom="%">44.4</witsml:gasLow> 448 <witsml:gasLow uom="%">44.4</witsml:gasLow>
435 <witsml:meth uom="ppm">55</witsml:meth> 449 <witsml:meth uom="ppm">55</witsml:meth>
436 -<witsml:eth uom="ppm">56</witsml:eth> 450 +<witsml:eth uom="ppm">55</witsml:eth>
437 -<witsml:prop uom="ppm">57</witsml:prop> 451 +<witsml:prop uom="ppm">55</witsml:prop>
438 -<witsml:ibut uom="ppm">58</witsml:ibut> 452 +<witsml:ibut uom="ppm">55</witsml:ibut>
439 -<witsml:nbut uom="ppm">59</witsml:nbut> 453 +<witsml:nbut uom="ppm">55</witsml:nbut>
440 -<witsml:ipent uom="ppm">60</witsml:ipent> 454 +<witsml:ipent uom="ppm">55</witsml:ipent>
441 </witsml:gasReadingInfo> 455 </witsml:gasReadingInfo>
442 </witsml:drillReport> 456 </witsml:drillReport>
443 </witsml:drillReports> 457 </witsml:drillReports>
...\ No newline at end of file ...\ No newline at end of file
......