Added density measures and function to map them
…this is a slow and painful process given the number of units in DPR. Will take a look a building a little app to generate these
Showing
5 changed files
with
131 additions
and
15 deletions
| 1 | -# Saved by TopBraid on Tue Oct 25 15:10:35 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 28 15:17:22 BST 2011 |
| 2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-core | 2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-core |
| 3 | # imports: http://www.reportinghub.no/ep/schema/1.0/core | 3 | # imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 4 | 4 | ||
| ... | @@ -14,64 +14,180 @@ | ... | @@ -14,64 +14,180 @@ |
| 14 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 14 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 15 | 15 | ||
| 16 | ep-core:MeasureOfFlowOfMaterial | 16 | ep-core:MeasureOfFlowOfMaterial |
| 17 | - rdf:type rdfs:Class , ep-core:PropertySpace ; | 17 | + rdf:type ep-core:PropertySpace , rdfs:Class ; |
| 18 | rdfs:label "measure of flow of material"^^xsd:string ; | 18 | rdfs:label "measure of flow of material"^^xsd:string ; |
| 19 | rdfs:subClassOf owl:Class . | 19 | rdfs:subClassOf owl:Class . |
| 20 | 20 | ||
| 21 | ep-core:VolumeFlowRateAt15degC1atm | 21 | ep-core:VolumeFlowRateAt15degC1atm |
| 22 | - rdf:type ep-core:PropertySpace , rdfs:Class ; | 22 | + rdf:type rdfs:Class , ep-core:PropertySpace ; |
| 23 | rdfs:label "volume flow rate at 15 degrees C 1 atmosphere"^^xsd:string ; | 23 | rdfs:label "volume flow rate at 15 degrees C 1 atmosphere"^^xsd:string ; |
| 24 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . | 24 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . |
| 25 | 25 | ||
| 26 | ep-core:VolumeFlowRateAt1degC1atm | 26 | ep-core:VolumeFlowRateAt1degC1atm |
| 27 | - rdf:type ep-core:PropertySpace , rdfs:Class ; | 27 | + rdf:type rdfs:Class , ep-core:PropertySpace ; |
| 28 | rdfs:label "volume flow rate at 1 degrees C 1 atmosphere"^^xsd:string ; | 28 | rdfs:label "volume flow rate at 1 degrees C 1 atmosphere"^^xsd:string ; |
| 29 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . | 29 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . |
| 30 | 30 | ||
| 31 | ep-core:VolumeFlowRateAt60degF1atm | 31 | ep-core:VolumeFlowRateAt60degF1atm |
| 32 | - rdf:type ep-core:PropertySpace , rdfs:Class ; | 32 | + rdf:type rdfs:Class , ep-core:PropertySpace ; |
| 33 | rdfs:label "volume flow rate at 60 degrees F 1 atmosphere"^^xsd:string ; | 33 | rdfs:label "volume flow rate at 60 degrees F 1 atmosphere"^^xsd:string ; |
| 34 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . | 34 | rdfs:subClassOf ep-core:MeasureOfFlowOfMaterial . |
| 35 | 35 | ||
| 36 | -ep-core:atmosphere | 36 | +ep-core:apiDensity |
| 37 | rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | 37 | rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; |
| 38 | + rdfs:label "API Density"^^xsd:string . | ||
| 39 | + | ||
| 40 | +ep-core:atmosphere | ||
| 41 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | ||
| 38 | rdfs:domain ep-core:Pressure ; | 42 | rdfs:domain ep-core:Pressure ; |
| 39 | rdfs:label "atmosphere"^^xsd:string . | 43 | rdfs:label "atmosphere"^^xsd:string . |
| 40 | 44 | ||
| 41 | ep-core:barrel_day-1 | 45 | ep-core:barrel_day-1 |
| 42 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | 46 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; |
| 43 | rdfs:domain ep-core:VolumetricFlowRate ; | 47 | rdfs:domain ep-core:VolumetricFlowRate ; |
| 44 | rdfs:label "barrel day-1"^^xsd:string . | 48 | rdfs:label "barrel day-1"^^xsd:string . |
| 45 | 49 | ||
| 46 | ep-core:centimetre | 50 | ep-core:centimetre |
| 47 | - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; | 51 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; |
| 48 | rdfs:domain ep-core:Length ; | 52 | rdfs:domain ep-core:Length ; |
| 49 | rdfs:label "centimetre"^^xsd:string . | 53 | rdfs:label "centimetre"^^xsd:string . |
| 50 | 54 | ||
| 51 | ep-core:count | 55 | ep-core:count |
| 52 | - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; | 56 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; |
| 53 | rdfs:label "count"^^xsd:string . | 57 | rdfs:label "count"^^xsd:string . |
| 54 | 58 | ||
| 55 | ep-core:fahrenheit | 59 | ep-core:fahrenheit |
| 56 | - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | 60 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; |
| 57 | rdfs:domain ep-core:Temperature ; | 61 | rdfs:domain ep-core:Temperature ; |
| 58 | rdfs:label "fahrenheit"^^xsd:string . | 62 | rdfs:label "fahrenheit"^^xsd:string . |
| 59 | 63 | ||
| 64 | +ep-core:grain_100ft-3 | ||
| 65 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 66 | + rdfs:label "grain per 100ft3"^^xsd:string . | ||
| 67 | + | ||
| 68 | +ep-core:grain_ft-3_1 | ||
| 69 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 70 | + rdfs:label "grain per ft3"^^xsd:string . | ||
| 71 | + | ||
| 72 | +ep-core:grain_usGallon-1 | ||
| 73 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 74 | + rdfs:label "grain per US Gallon"^^xsd:string . | ||
| 75 | + | ||
| 76 | +ep-core:gram_dm-3 | ||
| 77 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 78 | + rdfs:label "gram dm-3"^^xsd:string . | ||
| 79 | + | ||
| 80 | +ep-core:gram_l-1 | ||
| 81 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 82 | + rdfs:label "grams per litre"^^xsd:string . | ||
| 83 | + | ||
| 84 | +ep-core:gram_m-3 | ||
| 85 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; | ||
| 86 | + rdfs:label "gram m-3"^^xsd:string . | ||
| 87 | + | ||
| 88 | +ep-core:gram_ukGallon-1 | ||
| 89 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 90 | + rdfs:label "grams per UK Gallon"^^xsd:string . | ||
| 91 | + | ||
| 92 | +ep-core:gram_usGallon-1 | ||
| 93 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; | ||
| 94 | + rdfs:label "grams per US Gallon"^^xsd:string . | ||
| 95 | + | ||
| 60 | ep-core:hasSetOfAllPartsOfType | 96 | ep-core:hasSetOfAllPartsOfType |
| 61 | rdf:type owl:ObjectProperty ; | 97 | rdf:type owl:ObjectProperty ; |
| 62 | rdfs:domain ep-core:PhysicalThing ; | 98 | rdfs:domain ep-core:PhysicalThing ; |
| 63 | rdfs:label "basis for"^^xsd:string . | 99 | rdfs:label "basis for"^^xsd:string . |
| 64 | 100 | ||
| 65 | ep-core:inch_64 | 101 | ep-core:inch_64 |
| 66 | - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; | 102 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; |
| 67 | rdfs:domain ep-core:Length ; | 103 | rdfs:domain ep-core:Length ; |
| 68 | rdfs:label "inch/64"^^xsd:string . | 104 | rdfs:label "inch/64"^^xsd:string . |
| 69 | 105 | ||
| 70 | -ep-core:metre3_hour-1 | 106 | +ep-core:kilogram_dm-3 |
| 107 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 108 | + rdfs:label "kilogram dm-3"^^xsd:string . | ||
| 109 | + | ||
| 110 | +ep-core:kilogram_l-1 | ||
| 111 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 112 | + rdfs:label "kilogram per litre"^^xsd:string . | ||
| 113 | + | ||
| 114 | +ep-core:kilogram_m-3 | ||
| 115 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 116 | + rdfs:label "kilogram m-3"^^xsd:string . | ||
| 117 | + | ||
| 118 | +ep-core:lbm_1000bbl-1 | ||
| 119 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 120 | + rdfs:label "pounds (mass) per 1000 barrels"^^xsd:string . | ||
| 121 | + | ||
| 122 | +ep-core:lbm_1000ukGallon-1 | ||
| 71 | rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | 123 | rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; |
| 124 | + rdfs:label "pounds(mass) per 1000 UK Gallons"^^xsd:string . | ||
| 125 | + | ||
| 126 | +ep-core:lbm_1000usGallon-1 | ||
| 127 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | ||
| 128 | + rdfs:label "pounds(mass) per 1000 US Gallons"^^xsd:string . | ||
| 129 | + | ||
| 130 | +ep-core:lbm_10bbl-1 | ||
| 131 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 132 | + rdfs:label "pounds (mass) per 10 barrels"^^xsd:string . | ||
| 133 | + | ||
| 134 | +ep-core:lbm_bbl-1 | ||
| 135 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 136 | + rdfs:label "pounds (mass) per barrel"^^xsd:string . | ||
| 137 | + | ||
| 138 | +ep-core:lbm_ft-3 | ||
| 139 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 140 | + rdfs:label "pounds (mass) per cubic foot"^^xsd:string . | ||
| 141 | + | ||
| 142 | +ep-core:lbm_in-3 | ||
| 143 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 144 | + rdfs:label "pounds (mass) per cubic inch"^^xsd:string . | ||
| 145 | + | ||
| 146 | +ep-core:lbm_millibarrel-1 | ||
| 147 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 148 | + rdfs:label "pounds (mass) per milli-barrel"^^xsd:string . | ||
| 149 | + | ||
| 150 | +ep-core:lbm_ukGallon-1 | ||
| 151 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | ||
| 152 | + rdfs:label "pounds(mass) per UK Gallon"^^xsd:string . | ||
| 153 | + | ||
| 154 | +ep-core:lbm_usGallon-1 | ||
| 155 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 156 | + rdfs:label "pounds (mass) per US Gallon"^^xsd:string . | ||
| 157 | + | ||
| 158 | +ep-core:megagram_m-3 | ||
| 159 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 160 | + rdfs:label "Megagram m-3"^^xsd:string . | ||
| 161 | + | ||
| 162 | +ep-core:metre3_hour-1 | ||
| 163 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 72 | rdfs:domain ep-core:VolumetricFlowRate ; | 164 | rdfs:domain ep-core:VolumetricFlowRate ; |
| 73 | rdfs:label "metre3 hour-1"^^xsd:string . | 165 | rdfs:label "metre3 hour-1"^^xsd:string . |
| 74 | 166 | ||
| 75 | -ep-core:thousand_barrel | 167 | +ep-core:microgram_cm-3 |
| 168 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 169 | + rdfs:label "microgram cm-3"^^xsd:string . | ||
| 170 | + | ||
| 171 | +ep-core:milligram_dm-3 | ||
| 172 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 173 | + rdfs:label "milligram dm-3"^^xsd:string . | ||
| 174 | + | ||
| 175 | +ep-core:milligram_l-1 | ||
| 176 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | ||
| 177 | + rdfs:label "milligrams per litre"^^xsd:string . | ||
| 178 | + | ||
| 179 | +ep-core:milligram_m-3 | ||
| 76 | rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; | 180 | rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; |
| 181 | + rdfs:label "milligram m-3"^^xsd:string . | ||
| 182 | + | ||
| 183 | +ep-core:milligram_usGallon-1 | ||
| 184 | + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 185 | + rdfs:label "milligrams per US Gallon"^^xsd:string . | ||
| 186 | + | ||
| 187 | +ep-core:ten_megagram_m-3 | ||
| 188 | + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; | ||
| 189 | + rdfs:label "10 Megagram m-3"^^xsd:string . | ||
| 190 | + | ||
| 191 | +ep-core:thousand_barrel | ||
| 192 | + rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; | ||
| 77 | rdfs:label "thousand barrel"^^xsd:string . | 193 | rdfs:label "thousand barrel"^^xsd:string . | ... | ... |
This diff is collapsed. Click to expand it.
| 1 | -# Saved by TopBraid on Tue Oct 25 15:34:42 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 28 15:14:15 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#> . | ... | ... |
This diff is collapsed. Click to expand it.
| 1 | -# Saved by TopBraid on Tue Oct 25 15:30:47 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 28 14:12:33 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#> . | ... | ... |
-
Please register or login to post a comment