Holger Knublauch

Restored files deleted by commit

2776305b
<ui:group>
<div>&nbsp;</div>
<div class="logoContainer"><a href="http://www.epim.no" target="_new"><img src="lib/rh/images/logoEpim.gif" width="201" height="106" align="right" title="EPIM" /></a>
<div style="padding: 10px">
<h1>ReportingHub</h1>
<div>You are logged in as: <b>{= rhspin:userName() }</b></div>
</div>
</div>
</ui:group>
\ No newline at end of file
# Saved by TopBraid on Thu Jul 21 13:16:56 EST 2011
# baseURI: http://www.reportinghub.no/swp/rh
# imports: http://uispin.org/tui
# imports: http://www.reportinghub.no/spin/rh
@prefix let: <http://uispin.org/let#> .
@prefix letrs: <http://uispin.org/letrs#> .
@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#> .
@prefix rhswp: <http://www.reportinghub.no/swp/rh#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix ui: <http://uispin.org/ui#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/swp/rh>
rdf:type owl:Ontology ;
rdfs:comment "SWP components and definitions for ReportingHub."^^xsd:string ;
owl:imports <http://uispin.org/tui> , <http://www.reportinghub.no/spin/rh> ;
owl:versionInfo "0.1.0"^^xsd:string .
rhswp:Elements
rdf:type ui:NodeClass ;
rdfs:label "Elements"^^xsd:string ;
rdfs:subClassOf ui:Element ;
ui:abstract "true"^^xsd:boolean .
rhswp:Header
rdf:type ui:NodeClass ;
rdfs:label "Header"^^xsd:string ;
rdfs:subClassOf rhswp:Elements ;
ui:prototype <http://www.reportinghub.no/swp/header.uispin.html> .
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
/**
* Updates the options inside of a given HTML select tag from a SPARQL
* result set delivered by a SPIN template call.
* The template call must return the value as first column, and the
* display label as second column.
* @param id the ID of the select element, e.g. "#mySelect")
* @param template the URI of the template to call
* @param args an object with the argument to the template call
*/
function updateSelect(id, template, args) {
args['_template'] = template;
args['ajax'] = true;
$.getJSON("template", args, function(j) {
var vars = j['head'].vars;
var valueVar = vars[0];
var labelVar = vars[1];
var bindings = j['results'].bindings;
var options = '';
for (var i = 0; i < bindings.length; i++) {
var binding = bindings[i];
options += '<option value="' + binding[valueVar].value + '">' + binding[labelVar].value + '</option>';
}
$(id).html(options);
});
}
@CHARSET "UTF-8";
body {
font-family: sans-serif;
margin:0 0px 0 0;
font-family:Tahoma,arial,Helvetica;
font-size:12px;
background-color:#FEFEFC;
background-image:url(images/bg.png);
background-position:top center;
background-repeat:repeat-x;
color:#333;
}
#content {
position:relative;
margin-top:0px;
display:block;
padding:15px 30px 30px 30px;
background-color:#fefefc;
}
#wrapper{
position:relative;
width:950px;
margin:0 auto;
display:block;
background-repeat:no-repeat;
}
a,a:link,a:visited {
color:#375f82;
}
.logoContainer {
background: url(images/headerBg.png);
width: 950px;
height: 106px;
}
.formHeader {
font-weight: bold;
}
\ No newline at end of file
This diff is collapsed. Click to expand it.
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
@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#> .
@prefix visual: <http://topbraid.org/visual#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[] rdf:type inference:Configuration ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
composite:index "1"^^xsd:int
] ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
composite:index "0"^^xsd:int
] ;
inference:completeMode
"true"^^xsd:boolean ;
inference:inferredMode
"true"^^xsd:boolean .
# baseURI: file:///www.reportinghub.no/transform/npd/baa
# imports: http://topbraid.org/tables
@prefix baa: <file:///www.reportinghub.no/transform/npd/baa#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/baa>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
baa:BAA
rdf:type owl:Class ;
rdfs:label "BAA"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
baa:baaDateApproved
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaDateApproved" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
baa:baaDateValidFrom
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaDateValidFrom" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
baa:baaDateValidTo
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaDateValidTo" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
baa:baaFactMapUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaFactMapUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
baa:baaFactPageUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaFactPageUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
baa:baaKind
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaKind" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
baa:baaName
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
baa:baaNpdidBsnsArrArea
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "baaNpdidBsnsArrArea" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
baa:dateSyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain baa:BAA ;
rdfs:label "dateSyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/baalicensee
# imports: http://topbraid.org/tables
@prefix baalicensee: <file:///www.reportinghub.no/transform/npd/baalicensee#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/baalicensee>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
baalicensee:BAALicensee
rdf:type owl:Class ;
rdfs:label "BAA Licensee"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
baalicensee:baaLicenseeDateValidFrom
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "baaLicenseeDateValidFrom" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
baalicensee:baaLicenseeDateValidTo
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "baaLicenseeDateValidTo" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
baalicensee:baaLicenseeInterest
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "baaLicenseeInterest" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
baalicensee:baaLicenseeSdfi
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "baaLicenseeSdfi" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
baalicensee:baaName
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "baaName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
baalicensee:cmpLongName
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "cmpLongName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
baalicensee:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain baalicensee:BAALicensee ;
rdfs:label "DatesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/company
# imports: http://topbraid.org/tables
@prefix company: <file:///www.reportinghub.no/transform/npd/company#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/company>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
company:Company
rdf:type owl:Class ;
rdfs:label "Company"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
company:cmpGroup
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpGroup" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
company:cmpLicenceLicenseeCurrent
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpLicenceLicenseeCurrent" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
company:cmpLicenceLicenseeFormer
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpLicenceLicenseeFormer" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
company:cmpLicenceOperCurrent
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpLicenceOperCurrent" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
company:cmpLicenceOperFormer
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpLicenceOperFormer" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
company:cmpLongName
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpLongName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
company:cmpNpdidCompany
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpNpdidCompany" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
company:cmpOrgNumberBrReg
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpOrgNumberBrReg" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
company:cmpShortName
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "cmpShortName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
company:dateSyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain company:Company ;
rdfs:label "dateSyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "9"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/discovery
# imports: http://topbraid.org/tables
@prefix discovery: <file:///www.reportinghub.no/transform/npd/discovery#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/discovery>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
discovery:Discovery
rdf:type owl:Class ;
rdfs:label "discovery"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
discovery:cmpLongName2
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "cmpLongName2" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
discovery:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "DatesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "17"^^xsd:int .
discovery:dscCurrentActivityStatus
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscCurrentActivityStatus" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
discovery:dscDateFromInclInField
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscDateFromInclInField" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
discovery:dscDiscoveryYear
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscDiscoveryYear" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
discovery:dscFactMapUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscFactMapUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "16"^^xsd:int .
discovery:dscFactPageUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscFactPageUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "15"^^xsd:int .
discovery:dscHcType
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscHcType" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
discovery:dscName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
discovery:dscNpdidDiscovery
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscNpdidDiscovery" ;
rdfs:range xsd:string ;
tables:columnIndex "12"^^xsd:int .
discovery:dscOwnerKind
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscOwnerKind" ;
rdfs:range xsd:string ;
tables:columnIndex "10"^^xsd:int .
discovery:dscOwnerName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscOwnerName" ;
rdfs:range xsd:string ;
tables:columnIndex "11"^^xsd:int .
discovery:dscResInclInDiscoveryName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "dscResInclInDiscoveryName" ;
rdfs:range xsd:string ;
tables:columnIndex "9"^^xsd:int .
discovery:fldName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "fldName" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
discovery:fldNpdidField
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "fldNpdidField" ;
rdfs:range xsd:string ;
tables:columnIndex "13"^^xsd:int .
discovery:nmaName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "nmaName" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
discovery:wlbName
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "wlbName" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
discovery:wlbNpdidWellbore
rdf:type owl:DatatypeProperty ;
rdfs:domain discovery:Discovery ;
rdfs:label "wlbNpdidWellbore" ;
rdfs:range xsd:string ;
tables:columnIndex "14"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/facilityfixed
# imports: http://topbraid.org/tables
@prefix facilityfixed: <file:///www.reportinghub.no/transform/npd/facilityfixed#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/facilityfixed>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
facilityfixed:FacilityFixed
rdf:type owl:Class ;
rdfs:label "FacilityFixed"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
facilityfixed:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "datesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "24"^^xsd:int .
facilityfixed:fclBelongsToKind
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclBelongsToKind" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
facilityfixed:fclBelongsToName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclBelongsToName" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
facilityfixed:fclBelongsToS
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclBelongsToS" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
facilityfixed:fclCurrentOperatorName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclCurrentOperatorName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
facilityfixed:fclDesignLifetime
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclDesignLifetime" ;
rdfs:range xsd:string ;
tables:columnIndex "20"^^xsd:int .
facilityfixed:fclEwCode
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclEwCode" ;
rdfs:range xsd:string ;
tables:columnIndex "17"^^xsd:int .
facilityfixed:fclEwDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclEwDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "14"^^xsd:int .
facilityfixed:fclEwMin
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclEwMin" ;
rdfs:range xsd:string ;
tables:columnIndex "15"^^xsd:int .
facilityfixed:fclEwSec
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclEwSec" ;
rdfs:range xsd:string ;
tables:columnIndex "16"^^xsd:int .
facilityfixed:fclFactMapUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclFactMapUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "22"^^xsd:int .
facilityfixed:fclFactPageUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclFactPageUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "21"^^xsd:int .
facilityfixed:fclFunctions
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclFunctions" ;
rdfs:range xsd:string ;
tables:columnIndex "19"^^xsd:int .
facilityfixed:fclGeodeticDatum
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclGeodeticDatum" ;
rdfs:range xsd:string ;
tables:columnIndex "9"^^xsd:int .
facilityfixed:fclKind
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclKind" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
facilityfixed:fclName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
facilityfixed:fclNpdidFacility
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclNpdidFacility" ;
rdfs:range xsd:string ;
tables:columnIndex "23"^^xsd:int .
facilityfixed:fclNsCode
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclNsCode" ;
rdfs:range xsd:string ;
tables:columnIndex "13"^^xsd:int .
facilityfixed:fclNsDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclNsDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "10"^^xsd:int .
facilityfixed:fclNsMin
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclNsMin" ;
rdfs:range xsd:string ;
tables:columnIndex "11"^^xsd:int .
facilityfixed:fclNsSec
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclNsSec" ;
rdfs:range xsd:string ;
tables:columnIndex "12"^^xsd:int .
facilityfixed:fclPhase
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclPhase" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
facilityfixed:fclStartupDate
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclStartupDate" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
facilityfixed:fclSurface
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclSurface" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
facilityfixed:fclWaterDepth
rdf:type owl:DatatypeProperty ;
rdfs:domain facilityfixed:FacilityFixed ;
rdfs:label "fclWaterDepth" ;
rdfs:range xsd:string ;
tables:columnIndex "18"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/facilitymoveable
# imports: http://topbraid.org/tables
@prefix facilitymoveable: <file:///www.reportinghub.no/transform/npd/facilitymoveable#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/facilitymoveable>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
facilitymoveable:FacilityMoveable
rdf:type owl:Class ;
rdfs:label "FacilityMoveable"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
facilitymoveable:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "datesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
facilitymoveable:fclCurrentRespCompanyName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclCurrentRespCompanyName" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
facilitymoveable:fclFactPageUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclFactPageUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
facilitymoveable:fclKind
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclKind" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
facilitymoveable:fclName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
facilitymoveable:fclNationName
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclNationName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
facilitymoveable:fclNpdidCurrentRespCompany
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclNpdidCurrentRespCompany" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
facilitymoveable:fclNpdidFacility
rdf:type owl:DatatypeProperty ;
rdfs:domain facilitymoveable:FacilityMoveable ;
rdfs:label "fclNpdidFacility" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/field
# imports: http://topbraid.org/tables
@prefix field: <file:///www.reportinghub.no/transform/npd/field#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/field>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
field:Field
rdf:type owl:Class ;
rdfs:label "Field"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
field:cmpLongName
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "cmpLongName" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
field:cmpNpdidCompany
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "cmpNpdidCompany" ;
rdfs:range xsd:string ;
tables:columnIndex "10"^^xsd:int .
field:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "DatesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "13"^^xsd:int .
field:fldCurrentActivitySatus
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldCurrentActivitySatus" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
field:fldFactMapUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldFactMapUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "12"^^xsd:int .
field:fldFactPageUrl
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldFactPageUrl" ;
rdfs:range xsd:string ;
tables:columnIndex "11"^^xsd:int .
field:fldName
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
field:fldNpdidField
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldNpdidField" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
field:fldNpdidOwner
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldNpdidOwner" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
field:fldOwnerKind
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldOwnerKind" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
field:fldOwnerName
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "fldOwnerName" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
field:wlbCompletionDate
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "wlbCompletionDate" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
field:wlbName
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "wlbName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
field:wlbNpdidWellbore
rdf:type owl:DatatypeProperty ;
rdfs:domain field:Field ;
rdfs:label "wlbNpdidWellbore" ;
rdfs:range xsd:string ;
tables:columnIndex "9"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/licence
# imports: http://topbraid.org/tables
@prefix licence: <file:///www.reportinghub.no/transform/npd/licence#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/licence>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
licence:Licence
rdf:type owl:Class ;
rdfs:label "Licence"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
licence:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "DatesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
licence:prlCurrentArea
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlCurrentArea" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
licence:prlDateGranted
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlDateGranted" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
licence:prlDateValidTo
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlDateValidTo" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
licence:prlLicensingActivityName
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlLicensingActivityName" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
licence:prlName
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "ÔªøprlName" ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
licence:prlNpdidLicence
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlNpdidLicence" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
licence:prlOriginalArea
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlOriginalArea" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
licence:prlStatus
rdf:type owl:DatatypeProperty ;
rdfs:domain licence:Licence ;
rdfs:label "prlStatus" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/licensee
# imports: http://topbraid.org/tables
@prefix licensee: <file:///www.reportinghub.no/transform/npd/licensee#> .
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/licensee>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
licensee:Licensee
rdf:type owl:Class ;
rdfs:label "licensee-2011-07-30" ;
tables:sheetIndex "0"^^xsd:int .
licensee:cmpLongName
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "cmpLongName" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
licensee:cmpNpdidCompany
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "cmpNpdidCompany" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
licensee:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "DatesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
licensee:prlLicenseeDateValidFrom
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "prlLicenseeDateValidFrom" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
licensee:prlLicenseeDateValidTo
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "prlLicenseeDateValidTo" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
licensee:prlLicenseeInterest
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "prlLicenseeInterest" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
licensee:prlLicenseeSdfi
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "prlLicenseeSdfi" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
licensee:prlName
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "ÔªøprlName" ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
licensee:prlNpdidLicence
rdf:type owl:DatatypeProperty ;
rdfs:domain licensee:Licensee ;
rdfs:label "prlNpdidLicence" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
# baseURI: file:///www.reportinghub.no/transform/npd/tufoperator
# imports: http://topbraid.org/tables
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix tufoperator: <file:///www.reportinghub.no/transform/npd/tufoperator#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/tufoperator>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
tufoperator:TUFOperator
rdf:type owl:Class ;
rdfs:label "tufoperator"^^xsd:string ;
tables:sheetIndex "0"^^xsd:int .
tufoperator:cmpLongName
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "cmpLongName" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
tufoperator:cmpNpdidCompany
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "cmpNpdidCompany" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
tufoperator:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "datesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
tufoperator:tufName
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "tufName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .
tufoperator:tufNpdidTuf
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "tufNpdidTuf" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
tufoperator:tufOperDateValidFrom
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "tufOperDateValidFrom" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
tufoperator:tufOperDateValidTo
rdf:type owl:DatatypeProperty ;
rdfs:domain tufoperator:TUFOperator ;
rdfs:label "tufOperDateValidTo" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
# baseURI: file:///www.reportinghub.no/transform/npd/wbsha
# imports: http://topbraid.org/tables
@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#> .
@prefix tables: <http://topbraid.org/tables#> .
@prefix wbsha: <file:///www.reportinghub.no/transform/npd/wbsha#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///www.reportinghub.no/transform/npd/wbsha>
rdf:type owl:Ontology ;
owl:imports <http://topbraid.org/tables> .
wbsha:WBSha
rdf:type owl:Class ;
rdfs:label "wbsha-2011-07-30" ;
tables:sheetIndex "0"^^xsd:int .
wbsha:datesyncNPD
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "datesyncNPD" ;
rdfs:range xsd:string ;
tables:columnIndex "34"^^xsd:int .
wbsha:wlbCompletionDate
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbCompletionDate" ;
rdfs:range xsd:string ;
tables:columnIndex "6"^^xsd:int .
wbsha:wlbCompletionYear
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbCompletionYear" ;
rdfs:range xsd:string ;
tables:columnIndex "12"^^xsd:int .
wbsha:wlbDrillPermit
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbDrillPermit" ;
rdfs:range xsd:string ;
tables:columnIndex "7"^^xsd:int .
wbsha:wlbDrillingOperator
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbDrillingOperator" ;
rdfs:range xsd:string ;
tables:columnIndex "3"^^xsd:int .
wbsha:wlbEntryDate
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEntryDate" ;
rdfs:range xsd:string ;
tables:columnIndex "5"^^xsd:int .
wbsha:wlbEntryYear
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEntryYear" ;
rdfs:range xsd:string ;
tables:columnIndex "11"^^xsd:int .
wbsha:wlbEwCode
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwCode" ;
rdfs:range xsd:string ;
tables:columnIndex "22"^^xsd:int .
wbsha:wlbEwDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "19"^^xsd:int .
wbsha:wlbEwDesDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwDesDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "24"^^xsd:int .
wbsha:wlbEwMin
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwMin" ;
rdfs:range xsd:string ;
tables:columnIndex "20"^^xsd:int .
wbsha:wlbEwSec
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwSec" ;
rdfs:range xsd:string ;
tables:columnIndex "21"^^xsd:int .
wbsha:wlbEwUtm
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbEwUtm" ;
rdfs:range xsd:string ;
tables:columnIndex "26"^^xsd:int .
wbsha:wlbGeodeticDatum
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbGeodeticDatum" ;
rdfs:range xsd:string ;
tables:columnIndex "14"^^xsd:int .
wbsha:wlbMainArea
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbMainArea" ;
rdfs:range xsd:string ;
tables:columnIndex "10"^^xsd:int .
wbsha:wlbNamePart1
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart1" ;
rdfs:range xsd:string ;
tables:columnIndex "28"^^xsd:int .
wbsha:wlbNamePart2
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart2" ;
rdfs:range xsd:string ;
tables:columnIndex "29"^^xsd:int .
wbsha:wlbNamePart3
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart3" ;
rdfs:range xsd:string ;
tables:columnIndex "30"^^xsd:int .
wbsha:wlbNamePart4
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart4" ;
rdfs:range xsd:string ;
tables:columnIndex "31"^^xsd:int .
wbsha:wlbNamePart5
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart5" ;
rdfs:range xsd:string ;
tables:columnIndex "32"^^xsd:int .
wbsha:wlbNamePart6
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNamePart6" ;
rdfs:range xsd:string ;
tables:columnIndex "33"^^xsd:int .
wbsha:wlbNpdidWellbore
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNpdidWellbore" ;
rdfs:range xsd:string ;
tables:columnIndex "1"^^xsd:int .
wbsha:wlbNsCode
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsCode" ;
rdfs:range xsd:string ;
tables:columnIndex "18"^^xsd:int .
wbsha:wlbNsDecDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsDecDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "23"^^xsd:int .
wbsha:wlbNsDeg
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsDeg" ;
rdfs:range xsd:string ;
tables:columnIndex "15"^^xsd:int .
wbsha:wlbNsMin
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsMin" ;
rdfs:range xsd:string ;
tables:columnIndex "16"^^xsd:int .
wbsha:wlbNsSec
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsSec" ;
rdfs:range xsd:string ;
tables:columnIndex "17"^^xsd:int .
wbsha:wlbNsUtm
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbNsUtm" ;
rdfs:range xsd:string ;
tables:columnIndex "25"^^xsd:int .
wbsha:wlbProductionLicence
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbProductionLicence" ;
rdfs:range xsd:string ;
tables:columnIndex "4"^^xsd:int .
wbsha:wlbSeismicLocation
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbSeismicLocation" ;
rdfs:range xsd:string ;
tables:columnIndex "13"^^xsd:int .
wbsha:wlbTotalDepth
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbTotalDepth" ;
rdfs:range xsd:string ;
tables:columnIndex "8"^^xsd:int .
wbsha:wlbUtmZone
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbUtmZone" ;
rdfs:range xsd:string ;
tables:columnIndex "27"^^xsd:int .
wbsha:wlbWaterDepth
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbWaterDepth" ;
rdfs:range xsd:string ;
tables:columnIndex "9"^^xsd:int .
wbsha:wlbWell
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbWell" ;
rdfs:range xsd:string ;
tables:columnIndex "2"^^xsd:int .
wbsha:wlbWellboreName
rdf:type owl:DatatypeProperty ;
rdfs:domain wbsha:WBSha ;
rdfs:label "wlbWellboreName"^^xsd:string ;
rdfs:range xsd:string ;
tables:columnIndex "0"^^xsd:int .