Ralph Hodgson

Cleanup of deprecated properties

Showing 30 changed files with 1 additions and 1391 deletions
This diff could not be displayed because it is too large.
1 -# Saved by TopBraid on Fri Aug 05 18:01:44 PDT 2011 1 +# Saved by TopBraid on Sat Aug 06 12:24:30 PDT 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 -<ui:group>
2 - <div>&nbsp;</div>
3 - <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>
4 - <div style="padding: 10px">
5 - <h1>ReportingHub</h1>
6 - <div>You are logged in as: <b>{= rhspin:userName() }</b></div>
7 - </div>
8 - </div>
9 -</ui:group>
...\ No newline at end of file ...\ No newline at end of file
1 -# Saved by TopBraid on Thu Jul 21 13:16:56 EST 2011
2 -# baseURI: http://www.reportinghub.no/swp/rh
3 -# imports: http://uispin.org/tui
4 -# imports: http://www.reportinghub.no/spin/rh
5 -
6 -@prefix let: <http://uispin.org/let#> .
7 -@prefix letrs: <http://uispin.org/letrs#> .
8 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
9 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
10 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
11 -@prefix rhswp: <http://www.reportinghub.no/swp/rh#> .
12 -@prefix sp: <http://spinrdf.org/sp#> .
13 -@prefix spin: <http://spinrdf.org/spin#> .
14 -@prefix spl: <http://spinrdf.org/spl#> .
15 -@prefix ui: <http://uispin.org/ui#> .
16 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
17 -
18 -<http://www.reportinghub.no/swp/rh>
19 - rdf:type owl:Ontology ;
20 - rdfs:comment "SWP components and definitions for ReportingHub."^^xsd:string ;
21 - owl:imports <http://uispin.org/tui> , <http://www.reportinghub.no/spin/rh> ;
22 - owl:versionInfo "0.1.0"^^xsd:string .
23 -
24 -rhswp:Elements
25 - rdf:type ui:NodeClass ;
26 - rdfs:label "Elements"^^xsd:string ;
27 - rdfs:subClassOf ui:Element ;
28 - ui:abstract "true"^^xsd:boolean .
29 -
30 -rhswp:Header
31 - rdf:type ui:NodeClass ;
32 - rdfs:label "Header"^^xsd:string ;
33 - rdfs:subClassOf rhswp:Elements ;
34 - 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.
1 -/**
2 - * Updates the options inside of a given HTML select tag from a SPARQL
3 - * result set delivered by a SPIN template call.
4 - * The template call must return the value as first column, and the
5 - * display label as second column.
6 - * @param id the ID of the select element, e.g. "#mySelect")
7 - * @param template the URI of the template to call
8 - * @param args an object with the argument to the template call
9 - */
10 -function updateSelect(id, template, args) {
11 - args['_template'] = template;
12 - args['ajax'] = true;
13 - $.getJSON("template", args, function(j) {
14 - var vars = j['head'].vars;
15 - var valueVar = vars[0];
16 - var labelVar = vars[1];
17 - var bindings = j['results'].bindings;
18 - var options = '';
19 - for (var i = 0; i < bindings.length; i++) {
20 - var binding = bindings[i];
21 - options += '<option value="' + binding[valueVar].value + '">' + binding[labelVar].value + '</option>';
22 - }
23 - $(id).html(options);
24 - });
25 -}
1 -@CHARSET "UTF-8";
2 -
3 -body {
4 - font-family: sans-serif;
5 - margin:0 0px 0 0;
6 - font-family:Tahoma,arial,Helvetica;
7 - font-size:12px;
8 - background-color:#FEFEFC;
9 - background-image:url(images/bg.png);
10 - background-position:top center;
11 - background-repeat:repeat-x;
12 - color:#333;
13 -}
14 -
15 -#content {
16 - position:relative;
17 - margin-top:0px;
18 - display:block;
19 - padding:15px 30px 30px 30px;
20 - background-color:#fefefc;
21 -}
22 -
23 -#wrapper{
24 - position:relative;
25 - width:950px;
26 - margin:0 auto;
27 - display:block;
28 - background-repeat:no-repeat;
29 -}
30 -
31 -a,a:link,a:visited {
32 - color:#375f82;
33 -}
34 -
35 -.logoContainer {
36 - background: url(images/headerBg.png);
37 - width: 950px;
38 - height: 106px;
39 -}
40 -
41 -.formHeader {
42 - font-weight: bold;
43 -}
...\ No newline at end of file ...\ No newline at end of file
1 -# baseURI: null
2 -
3 -@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
4 -@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
5 -@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
6 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
7 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
9 -@prefix visual: <http://topbraid.org/visual#> .
10 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
11 -
12 -[] rdf:type inference:Configuration ;
13 - composite:child
14 - [ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
15 - composite:index "1"^^xsd:int
16 - ] ;
17 - composite:child
18 - [ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
19 - composite:index "0"^^xsd:int
20 - ] ;
21 - inference:completeMode
22 - "true"^^xsd:boolean ;
23 - inference:inferredMode
24 - "true"^^xsd:boolean .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/baa
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix baa: <file:///www.reportinghub.no/transform/npd/baa#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/baa>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -baa:BAA
16 - rdf:type owl:Class ;
17 - rdfs:label "BAA"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -baa:baaDateApproved
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain baa:BAA ;
23 - rdfs:label "baaDateApproved" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "2"^^xsd:int .
26 -
27 -baa:baaDateValidFrom
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain baa:BAA ;
30 - rdfs:label "baaDateValidFrom" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "3"^^xsd:int .
33 -
34 -baa:baaDateValidTo
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain baa:BAA ;
37 - rdfs:label "baaDateValidTo" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "4"^^xsd:int .
40 -
41 -baa:baaFactMapUrl
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain baa:BAA ;
44 - rdfs:label "baaFactMapUrl" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "6"^^xsd:int .
47 -
48 -baa:baaFactPageUrl
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain baa:BAA ;
51 - rdfs:label "baaFactPageUrl" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "5"^^xsd:int .
54 -
55 -baa:baaKind
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain baa:BAA ;
58 - rdfs:label "baaKind" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "1"^^xsd:int .
61 -
62 -baa:baaName
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain baa:BAA ;
65 - rdfs:label "baaName"^^xsd:string ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "0"^^xsd:int .
68 -
69 -baa:baaNpdidBsnsArrArea
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain baa:BAA ;
72 - rdfs:label "baaNpdidBsnsArrArea" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "7"^^xsd:int .
75 -
76 -baa:dateSyncNPD
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain baa:BAA ;
79 - rdfs:label "dateSyncNPD" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "8"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/baalicensee
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix baalicensee: <file:///www.reportinghub.no/transform/npd/baalicensee#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/baalicensee>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -baalicensee:BAALicensee
16 - rdf:type owl:Class ;
17 - rdfs:label "BAA Licensee"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -baalicensee:baaLicenseeDateValidFrom
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain baalicensee:BAALicensee ;
23 - rdfs:label "baaLicenseeDateValidFrom" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "1"^^xsd:int .
26 -
27 -baalicensee:baaLicenseeDateValidTo
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain baalicensee:BAALicensee ;
30 - rdfs:label "baaLicenseeDateValidTo" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "2"^^xsd:int .
33 -
34 -baalicensee:baaLicenseeInterest
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain baalicensee:BAALicensee ;
37 - rdfs:label "baaLicenseeInterest" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "4"^^xsd:int .
40 -
41 -baalicensee:baaLicenseeSdfi
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain baalicensee:BAALicensee ;
44 - rdfs:label "baaLicenseeSdfi" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "5"^^xsd:int .
47 -
48 -baalicensee:baaName
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain baalicensee:BAALicensee ;
51 - rdfs:label "baaName"^^xsd:string ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "0"^^xsd:int .
54 -
55 -baalicensee:cmpLongName
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain baalicensee:BAALicensee ;
58 - rdfs:label "cmpLongName" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "3"^^xsd:int .
61 -
62 -baalicensee:datesyncNPD
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain baalicensee:BAALicensee ;
65 - rdfs:label "DatesyncNPD" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "6"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/company
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix company: <file:///www.reportinghub.no/transform/npd/company#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/company>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -company:Company
16 - rdf:type owl:Class ;
17 - rdfs:label "Company"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -company:cmpGroup
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain company:Company ;
23 - rdfs:label "cmpGroup" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "2"^^xsd:int .
26 -
27 -company:cmpLicenceLicenseeCurrent
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain company:Company ;
30 - rdfs:label "cmpLicenceLicenseeCurrent" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "7"^^xsd:int .
33 -
34 -company:cmpLicenceLicenseeFormer
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain company:Company ;
37 - rdfs:label "cmpLicenceLicenseeFormer" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "8"^^xsd:int .
40 -
41 -company:cmpLicenceOperCurrent
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain company:Company ;
44 - rdfs:label "cmpLicenceOperCurrent" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "5"^^xsd:int .
47 -
48 -company:cmpLicenceOperFormer
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain company:Company ;
51 - rdfs:label "cmpLicenceOperFormer" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "6"^^xsd:int .
54 -
55 -company:cmpLongName
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain company:Company ;
58 - rdfs:label "cmpLongName"^^xsd:string ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "0"^^xsd:int .
61 -
62 -company:cmpNpdidCompany
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain company:Company ;
65 - rdfs:label "cmpNpdidCompany" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "4"^^xsd:int .
68 -
69 -company:cmpOrgNumberBrReg
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain company:Company ;
72 - rdfs:label "cmpOrgNumberBrReg" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "1"^^xsd:int .
75 -
76 -company:cmpShortName
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain company:Company ;
79 - rdfs:label "cmpShortName" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "3"^^xsd:int .
82 -
83 -company:dateSyncNPD
84 - rdf:type owl:DatatypeProperty ;
85 - rdfs:domain company:Company ;
86 - rdfs:label "dateSyncNPD" ;
87 - rdfs:range xsd:string ;
88 - tables:columnIndex "9"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/discovery
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix discovery: <file:///www.reportinghub.no/transform/npd/discovery#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/discovery>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -discovery:Discovery
16 - rdf:type owl:Class ;
17 - rdfs:label "discovery"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -discovery:cmpLongName2
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain discovery:Discovery ;
23 - rdfs:label "cmpLongName2" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "1"^^xsd:int .
26 -
27 -discovery:datesyncNPD
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain discovery:Discovery ;
30 - rdfs:label "DatesyncNPD" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "17"^^xsd:int .
33 -
34 -discovery:dscCurrentActivityStatus
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain discovery:Discovery ;
37 - rdfs:label "dscCurrentActivityStatus" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "2"^^xsd:int .
40 -
41 -discovery:dscDateFromInclInField
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain discovery:Discovery ;
44 - rdfs:label "dscDateFromInclInField" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "7"^^xsd:int .
47 -
48 -discovery:dscDiscoveryYear
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain discovery:Discovery ;
51 - rdfs:label "dscDiscoveryYear" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "8"^^xsd:int .
54 -
55 -discovery:dscFactMapUrl
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain discovery:Discovery ;
58 - rdfs:label "dscFactMapUrl" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "16"^^xsd:int .
61 -
62 -discovery:dscFactPageUrl
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain discovery:Discovery ;
65 - rdfs:label "dscFactPageUrl" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "15"^^xsd:int .
68 -
69 -discovery:dscHcType
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain discovery:Discovery ;
72 - rdfs:label "dscHcType" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "3"^^xsd:int .
75 -
76 -discovery:dscName
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain discovery:Discovery ;
79 - rdfs:label "dscName"^^xsd:string ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "0"^^xsd:int .
82 -
83 -discovery:dscNpdidDiscovery
84 - rdf:type owl:DatatypeProperty ;
85 - rdfs:domain discovery:Discovery ;
86 - rdfs:label "dscNpdidDiscovery" ;
87 - rdfs:range xsd:string ;
88 - tables:columnIndex "12"^^xsd:int .
89 -
90 -discovery:dscOwnerKind
91 - rdf:type owl:DatatypeProperty ;
92 - rdfs:domain discovery:Discovery ;
93 - rdfs:label "dscOwnerKind" ;
94 - rdfs:range xsd:string ;
95 - tables:columnIndex "10"^^xsd:int .
96 -
97 -discovery:dscOwnerName
98 - rdf:type owl:DatatypeProperty ;
99 - rdfs:domain discovery:Discovery ;
100 - rdfs:label "dscOwnerName" ;
101 - rdfs:range xsd:string ;
102 - tables:columnIndex "11"^^xsd:int .
103 -
104 -discovery:dscResInclInDiscoveryName
105 - rdf:type owl:DatatypeProperty ;
106 - rdfs:domain discovery:Discovery ;
107 - rdfs:label "dscResInclInDiscoveryName" ;
108 - rdfs:range xsd:string ;
109 - tables:columnIndex "9"^^xsd:int .
110 -
111 -discovery:fldName
112 - rdf:type owl:DatatypeProperty ;
113 - rdfs:domain discovery:Discovery ;
114 - rdfs:label "fldName" ;
115 - rdfs:range xsd:string ;
116 - tables:columnIndex "6"^^xsd:int .
117 -
118 -discovery:fldNpdidField
119 - rdf:type owl:DatatypeProperty ;
120 - rdfs:domain discovery:Discovery ;
121 - rdfs:label "fldNpdidField" ;
122 - rdfs:range xsd:string ;
123 - tables:columnIndex "13"^^xsd:int .
124 -
125 -discovery:nmaName
126 - rdf:type owl:DatatypeProperty ;
127 - rdfs:domain discovery:Discovery ;
128 - rdfs:label "nmaName" ;
129 - rdfs:range xsd:string ;
130 - tables:columnIndex "5"^^xsd:int .
131 -
132 -discovery:wlbName
133 - rdf:type owl:DatatypeProperty ;
134 - rdfs:domain discovery:Discovery ;
135 - rdfs:label "wlbName" ;
136 - rdfs:range xsd:string ;
137 - tables:columnIndex "4"^^xsd:int .
138 -
139 -discovery:wlbNpdidWellbore
140 - rdf:type owl:DatatypeProperty ;
141 - rdfs:domain discovery:Discovery ;
142 - rdfs:label "wlbNpdidWellbore" ;
143 - rdfs:range xsd:string ;
144 - tables:columnIndex "14"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/facilityfixed
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix facilityfixed: <file:///www.reportinghub.no/transform/npd/facilityfixed#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/facilityfixed>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -facilityfixed:FacilityFixed
16 - rdf:type owl:Class ;
17 - rdfs:label "FacilityFixed"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -facilityfixed:datesyncNPD
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain facilityfixed:FacilityFixed ;
23 - rdfs:label "datesyncNPD" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "24"^^xsd:int .
26 -
27 -facilityfixed:fclBelongsToKind
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain facilityfixed:FacilityFixed ;
30 - rdfs:label "fclBelongsToKind" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "6"^^xsd:int .
33 -
34 -facilityfixed:fclBelongsToName
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain facilityfixed:FacilityFixed ;
37 - rdfs:label "fclBelongsToName" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "5"^^xsd:int .
40 -
41 -facilityfixed:fclBelongsToS
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain facilityfixed:FacilityFixed ;
44 - rdfs:label "fclBelongsToS" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "7"^^xsd:int .
47 -
48 -facilityfixed:fclCurrentOperatorName
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain facilityfixed:FacilityFixed ;
51 - rdfs:label "fclCurrentOperatorName" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "3"^^xsd:int .
54 -
55 -facilityfixed:fclDesignLifetime
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain facilityfixed:FacilityFixed ;
58 - rdfs:label "fclDesignLifetime" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "20"^^xsd:int .
61 -
62 -facilityfixed:fclEwCode
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain facilityfixed:FacilityFixed ;
65 - rdfs:label "fclEwCode" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "17"^^xsd:int .
68 -
69 -facilityfixed:fclEwDeg
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain facilityfixed:FacilityFixed ;
72 - rdfs:label "fclEwDeg" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "14"^^xsd:int .
75 -
76 -facilityfixed:fclEwMin
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain facilityfixed:FacilityFixed ;
79 - rdfs:label "fclEwMin" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "15"^^xsd:int .
82 -
83 -facilityfixed:fclEwSec
84 - rdf:type owl:DatatypeProperty ;
85 - rdfs:domain facilityfixed:FacilityFixed ;
86 - rdfs:label "fclEwSec" ;
87 - rdfs:range xsd:string ;
88 - tables:columnIndex "16"^^xsd:int .
89 -
90 -facilityfixed:fclFactMapUrl
91 - rdf:type owl:DatatypeProperty ;
92 - rdfs:domain facilityfixed:FacilityFixed ;
93 - rdfs:label "fclFactMapUrl" ;
94 - rdfs:range xsd:string ;
95 - tables:columnIndex "22"^^xsd:int .
96 -
97 -facilityfixed:fclFactPageUrl
98 - rdf:type owl:DatatypeProperty ;
99 - rdfs:domain facilityfixed:FacilityFixed ;
100 - rdfs:label "fclFactPageUrl" ;
101 - rdfs:range xsd:string ;
102 - tables:columnIndex "21"^^xsd:int .
103 -
104 -facilityfixed:fclFunctions
105 - rdf:type owl:DatatypeProperty ;
106 - rdfs:domain facilityfixed:FacilityFixed ;
107 - rdfs:label "fclFunctions" ;
108 - rdfs:range xsd:string ;
109 - tables:columnIndex "19"^^xsd:int .
110 -
111 -facilityfixed:fclGeodeticDatum
112 - rdf:type owl:DatatypeProperty ;
113 - rdfs:domain facilityfixed:FacilityFixed ;
114 - rdfs:label "fclGeodeticDatum" ;
115 - rdfs:range xsd:string ;
116 - tables:columnIndex "9"^^xsd:int .
117 -
118 -facilityfixed:fclKind
119 - rdf:type owl:DatatypeProperty ;
120 - rdfs:domain facilityfixed:FacilityFixed ;
121 - rdfs:label "fclKind" ;
122 - rdfs:range xsd:string ;
123 - tables:columnIndex "4"^^xsd:int .
124 -
125 -facilityfixed:fclName
126 - rdf:type owl:DatatypeProperty ;
127 - rdfs:domain facilityfixed:FacilityFixed ;
128 - rdfs:label "fclName"^^xsd:string ;
129 - rdfs:range xsd:string ;
130 - tables:columnIndex "0"^^xsd:int .
131 -
132 -facilityfixed:fclNpdidFacility
133 - rdf:type owl:DatatypeProperty ;
134 - rdfs:domain facilityfixed:FacilityFixed ;
135 - rdfs:label "fclNpdidFacility" ;
136 - rdfs:range xsd:string ;
137 - tables:columnIndex "23"^^xsd:int .
138 -
139 -facilityfixed:fclNsCode
140 - rdf:type owl:DatatypeProperty ;
141 - rdfs:domain facilityfixed:FacilityFixed ;
142 - rdfs:label "fclNsCode" ;
143 - rdfs:range xsd:string ;
144 - tables:columnIndex "13"^^xsd:int .
145 -
146 -facilityfixed:fclNsDeg
147 - rdf:type owl:DatatypeProperty ;
148 - rdfs:domain facilityfixed:FacilityFixed ;
149 - rdfs:label "fclNsDeg" ;
150 - rdfs:range xsd:string ;
151 - tables:columnIndex "10"^^xsd:int .
152 -
153 -facilityfixed:fclNsMin
154 - rdf:type owl:DatatypeProperty ;
155 - rdfs:domain facilityfixed:FacilityFixed ;
156 - rdfs:label "fclNsMin" ;
157 - rdfs:range xsd:string ;
158 - tables:columnIndex "11"^^xsd:int .
159 -
160 -facilityfixed:fclNsSec
161 - rdf:type owl:DatatypeProperty ;
162 - rdfs:domain facilityfixed:FacilityFixed ;
163 - rdfs:label "fclNsSec" ;
164 - rdfs:range xsd:string ;
165 - tables:columnIndex "12"^^xsd:int .
166 -
167 -facilityfixed:fclPhase
168 - rdf:type owl:DatatypeProperty ;
169 - rdfs:domain facilityfixed:FacilityFixed ;
170 - rdfs:label "fclPhase" ;
171 - rdfs:range xsd:string ;
172 - tables:columnIndex "1"^^xsd:int .
173 -
174 -facilityfixed:fclStartupDate
175 - rdf:type owl:DatatypeProperty ;
176 - rdfs:domain facilityfixed:FacilityFixed ;
177 - rdfs:label "fclStartupDate" ;
178 - rdfs:range xsd:string ;
179 - tables:columnIndex "8"^^xsd:int .
180 -
181 -facilityfixed:fclSurface
182 - rdf:type owl:DatatypeProperty ;
183 - rdfs:domain facilityfixed:FacilityFixed ;
184 - rdfs:label "fclSurface" ;
185 - rdfs:range xsd:string ;
186 - tables:columnIndex "2"^^xsd:int .
187 -
188 -facilityfixed:fclWaterDepth
189 - rdf:type owl:DatatypeProperty ;
190 - rdfs:domain facilityfixed:FacilityFixed ;
191 - rdfs:label "fclWaterDepth" ;
192 - rdfs:range xsd:string ;
193 - tables:columnIndex "18"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/facilitymoveable
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix facilitymoveable: <file:///www.reportinghub.no/transform/npd/facilitymoveable#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/facilitymoveable>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -facilitymoveable:FacilityMoveable
16 - rdf:type owl:Class ;
17 - rdfs:label "FacilityMoveable"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -facilitymoveable:datesyncNPD
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain facilitymoveable:FacilityMoveable ;
23 - rdfs:label "datesyncNPD" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "7"^^xsd:int .
26 -
27 -facilitymoveable:fclCurrentRespCompanyName
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain facilitymoveable:FacilityMoveable ;
30 - rdfs:label "fclCurrentRespCompanyName" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "1"^^xsd:int .
33 -
34 -facilitymoveable:fclFactPageUrl
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain facilitymoveable:FacilityMoveable ;
37 - rdfs:label "fclFactPageUrl" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "4"^^xsd:int .
40 -
41 -facilitymoveable:fclKind
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain facilitymoveable:FacilityMoveable ;
44 - rdfs:label "fclKind" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "2"^^xsd:int .
47 -
48 -facilitymoveable:fclName
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain facilitymoveable:FacilityMoveable ;
51 - rdfs:label "fclName"^^xsd:string ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "0"^^xsd:int .
54 -
55 -facilitymoveable:fclNationName
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain facilitymoveable:FacilityMoveable ;
58 - rdfs:label "fclNationName" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "3"^^xsd:int .
61 -
62 -facilitymoveable:fclNpdidCurrentRespCompany
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain facilitymoveable:FacilityMoveable ;
65 - rdfs:label "fclNpdidCurrentRespCompany" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "6"^^xsd:int .
68 -
69 -facilitymoveable:fclNpdidFacility
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain facilitymoveable:FacilityMoveable ;
72 - rdfs:label "fclNpdidFacility" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "5"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/field
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix field: <file:///www.reportinghub.no/transform/npd/field#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/field>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -field:Field
16 - rdf:type owl:Class ;
17 - rdfs:label "Field"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -field:cmpLongName
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain field:Field ;
23 - rdfs:label "cmpLongName" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "1"^^xsd:int .
26 -
27 -field:cmpNpdidCompany
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain field:Field ;
30 - rdfs:label "cmpNpdidCompany" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "10"^^xsd:int .
33 -
34 -field:datesyncNPD
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain field:Field ;
37 - rdfs:label "DatesyncNPD" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "13"^^xsd:int .
40 -
41 -field:fldCurrentActivitySatus
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain field:Field ;
44 - rdfs:label "fldCurrentActivitySatus" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "2"^^xsd:int .
47 -
48 -field:fldFactMapUrl
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain field:Field ;
51 - rdfs:label "fldFactMapUrl" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "12"^^xsd:int .
54 -
55 -field:fldFactPageUrl
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain field:Field ;
58 - rdfs:label "fldFactPageUrl" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "11"^^xsd:int .
61 -
62 -field:fldName
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain field:Field ;
65 - rdfs:label "fldName"^^xsd:string ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "0"^^xsd:int .
68 -
69 -field:fldNpdidField
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain field:Field ;
72 - rdfs:label "fldNpdidField" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "8"^^xsd:int .
75 -
76 -field:fldNpdidOwner
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain field:Field ;
79 - rdfs:label "fldNpdidOwner" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "7"^^xsd:int .
82 -
83 -field:fldOwnerKind
84 - rdf:type owl:DatatypeProperty ;
85 - rdfs:domain field:Field ;
86 - rdfs:label "fldOwnerKind" ;
87 - rdfs:range xsd:string ;
88 - tables:columnIndex "5"^^xsd:int .
89 -
90 -field:fldOwnerName
91 - rdf:type owl:DatatypeProperty ;
92 - rdfs:domain field:Field ;
93 - rdfs:label "fldOwnerName" ;
94 - rdfs:range xsd:string ;
95 - tables:columnIndex "6"^^xsd:int .
96 -
97 -field:wlbCompletionDate
98 - rdf:type owl:DatatypeProperty ;
99 - rdfs:domain field:Field ;
100 - rdfs:label "wlbCompletionDate" ;
101 - rdfs:range xsd:string ;
102 - tables:columnIndex "4"^^xsd:int .
103 -
104 -field:wlbName
105 - rdf:type owl:DatatypeProperty ;
106 - rdfs:domain field:Field ;
107 - rdfs:label "wlbName" ;
108 - rdfs:range xsd:string ;
109 - tables:columnIndex "3"^^xsd:int .
110 -
111 -field:wlbNpdidWellbore
112 - rdf:type owl:DatatypeProperty ;
113 - rdfs:domain field:Field ;
114 - rdfs:label "wlbNpdidWellbore" ;
115 - rdfs:range xsd:string ;
116 - tables:columnIndex "9"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/licence
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix licence: <file:///www.reportinghub.no/transform/npd/licence#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/licence>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -licence:Licence
16 - rdf:type owl:Class ;
17 - rdfs:label "Licence"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -licence:datesyncNPD
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain licence:Licence ;
23 - rdfs:label "DatesyncNPD" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "8"^^xsd:int .
26 -
27 -licence:prlCurrentArea
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain licence:Licence ;
30 - rdfs:label "prlCurrentArea" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "6"^^xsd:int .
33 -
34 -licence:prlDateGranted
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain licence:Licence ;
37 - rdfs:label "prlDateGranted" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "3"^^xsd:int .
40 -
41 -licence:prlDateValidTo
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain licence:Licence ;
44 - rdfs:label "prlDateValidTo" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "4"^^xsd:int .
47 -
48 -licence:prlLicensingActivityName
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain licence:Licence ;
51 - rdfs:label "prlLicensingActivityName" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "1"^^xsd:int .
54 -
55 -licence:prlName
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain licence:Licence ;
58 - rdfs:label "ÔªøprlName" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "0"^^xsd:int .
61 -
62 -licence:prlNpdidLicence
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain licence:Licence ;
65 - rdfs:label "prlNpdidLicence" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "7"^^xsd:int .
68 -
69 -licence:prlOriginalArea
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain licence:Licence ;
72 - rdfs:label "prlOriginalArea" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "5"^^xsd:int .
75 -
76 -licence:prlStatus
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain licence:Licence ;
79 - rdfs:label "prlStatus" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "2"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/licensee
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix licensee: <file:///www.reportinghub.no/transform/npd/licensee#> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix tables: <http://topbraid.org/tables#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/licensee>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -licensee:Licensee
16 - rdf:type owl:Class ;
17 - rdfs:label "licensee-2011-07-30" ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -licensee:cmpLongName
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain licensee:Licensee ;
23 - rdfs:label "cmpLongName" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "3"^^xsd:int .
26 -
27 -licensee:cmpNpdidCompany
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain licensee:Licensee ;
30 - rdfs:label "cmpNpdidCompany" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "7"^^xsd:int .
33 -
34 -licensee:datesyncNPD
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain licensee:Licensee ;
37 - rdfs:label "DatesyncNPD" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "8"^^xsd:int .
40 -
41 -licensee:prlLicenseeDateValidFrom
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain licensee:Licensee ;
44 - rdfs:label "prlLicenseeDateValidFrom" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "1"^^xsd:int .
47 -
48 -licensee:prlLicenseeDateValidTo
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain licensee:Licensee ;
51 - rdfs:label "prlLicenseeDateValidTo" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "2"^^xsd:int .
54 -
55 -licensee:prlLicenseeInterest
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain licensee:Licensee ;
58 - rdfs:label "prlLicenseeInterest" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "4"^^xsd:int .
61 -
62 -licensee:prlLicenseeSdfi
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain licensee:Licensee ;
65 - rdfs:label "prlLicenseeSdfi" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "5"^^xsd:int .
68 -
69 -licensee:prlName
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain licensee:Licensee ;
72 - rdfs:label "ÔªøprlName" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "0"^^xsd:int .
75 -
76 -licensee:prlNpdidLicence
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain licensee:Licensee ;
79 - rdfs:label "prlNpdidLicence" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "6"^^xsd:int .
1 -# baseURI: file:///www.reportinghub.no/transform/npd/tufoperator
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix tables: <http://topbraid.org/tables#> .
8 -@prefix tufoperator: <file:///www.reportinghub.no/transform/npd/tufoperator#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/tufoperator>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -tufoperator:TUFOperator
16 - rdf:type owl:Class ;
17 - rdfs:label "tufoperator"^^xsd:string ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -tufoperator:cmpLongName
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain tufoperator:TUFOperator ;
23 - rdfs:label "cmpLongName" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "1"^^xsd:int .
26 -
27 -tufoperator:cmpNpdidCompany
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain tufoperator:TUFOperator ;
30 - rdfs:label "cmpNpdidCompany" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "5"^^xsd:int .
33 -
34 -tufoperator:datesyncNPD
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain tufoperator:TUFOperator ;
37 - rdfs:label "datesyncNPD" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "6"^^xsd:int .
40 -
41 -tufoperator:tufName
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain tufoperator:TUFOperator ;
44 - rdfs:label "tufName"^^xsd:string ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "0"^^xsd:int .
47 -
48 -tufoperator:tufNpdidTuf
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain tufoperator:TUFOperator ;
51 - rdfs:label "tufNpdidTuf" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "4"^^xsd:int .
54 -
55 -tufoperator:tufOperDateValidFrom
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain tufoperator:TUFOperator ;
58 - rdfs:label "tufOperDateValidFrom" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "2"^^xsd:int .
61 -
62 -tufoperator:tufOperDateValidTo
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain tufoperator:TUFOperator ;
65 - rdfs:label "tufOperDateValidTo" ;
66 - rdfs:range xsd:string ;
67 - 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.
1 -# baseURI: file:///www.reportinghub.no/transform/npd/wbsha
2 -# imports: http://topbraid.org/tables
3 -
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix tables: <http://topbraid.org/tables#> .
8 -@prefix wbsha: <file:///www.reportinghub.no/transform/npd/wbsha#> .
9 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10 -
11 -<file:///www.reportinghub.no/transform/npd/wbsha>
12 - rdf:type owl:Ontology ;
13 - owl:imports <http://topbraid.org/tables> .
14 -
15 -wbsha:WBSha
16 - rdf:type owl:Class ;
17 - rdfs:label "wbsha-2011-07-30" ;
18 - tables:sheetIndex "0"^^xsd:int .
19 -
20 -wbsha:datesyncNPD
21 - rdf:type owl:DatatypeProperty ;
22 - rdfs:domain wbsha:WBSha ;
23 - rdfs:label "datesyncNPD" ;
24 - rdfs:range xsd:string ;
25 - tables:columnIndex "34"^^xsd:int .
26 -
27 -wbsha:wlbCompletionDate
28 - rdf:type owl:DatatypeProperty ;
29 - rdfs:domain wbsha:WBSha ;
30 - rdfs:label "wlbCompletionDate" ;
31 - rdfs:range xsd:string ;
32 - tables:columnIndex "6"^^xsd:int .
33 -
34 -wbsha:wlbCompletionYear
35 - rdf:type owl:DatatypeProperty ;
36 - rdfs:domain wbsha:WBSha ;
37 - rdfs:label "wlbCompletionYear" ;
38 - rdfs:range xsd:string ;
39 - tables:columnIndex "12"^^xsd:int .
40 -
41 -wbsha:wlbDrillPermit
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain wbsha:WBSha ;
44 - rdfs:label "wlbDrillPermit" ;
45 - rdfs:range xsd:string ;
46 - tables:columnIndex "7"^^xsd:int .
47 -
48 -wbsha:wlbDrillingOperator
49 - rdf:type owl:DatatypeProperty ;
50 - rdfs:domain wbsha:WBSha ;
51 - rdfs:label "wlbDrillingOperator" ;
52 - rdfs:range xsd:string ;
53 - tables:columnIndex "3"^^xsd:int .
54 -
55 -wbsha:wlbEntryDate
56 - rdf:type owl:DatatypeProperty ;
57 - rdfs:domain wbsha:WBSha ;
58 - rdfs:label "wlbEntryDate" ;
59 - rdfs:range xsd:string ;
60 - tables:columnIndex "5"^^xsd:int .
61 -
62 -wbsha:wlbEntryYear
63 - rdf:type owl:DatatypeProperty ;
64 - rdfs:domain wbsha:WBSha ;
65 - rdfs:label "wlbEntryYear" ;
66 - rdfs:range xsd:string ;
67 - tables:columnIndex "11"^^xsd:int .
68 -
69 -wbsha:wlbEwCode
70 - rdf:type owl:DatatypeProperty ;
71 - rdfs:domain wbsha:WBSha ;
72 - rdfs:label "wlbEwCode" ;
73 - rdfs:range xsd:string ;
74 - tables:columnIndex "22"^^xsd:int .
75 -
76 -wbsha:wlbEwDeg
77 - rdf:type owl:DatatypeProperty ;
78 - rdfs:domain wbsha:WBSha ;
79 - rdfs:label "wlbEwDeg" ;
80 - rdfs:range xsd:string ;
81 - tables:columnIndex "19"^^xsd:int .
82 -
83 -wbsha:wlbEwDesDeg
84 - rdf:type owl:DatatypeProperty ;
85 - rdfs:domain wbsha:WBSha ;
86 - rdfs:label "wlbEwDesDeg" ;
87 - rdfs:range xsd:string ;
88 - tables:columnIndex "24"^^xsd:int .
89 -
90 -wbsha:wlbEwMin
91 - rdf:type owl:DatatypeProperty ;
92 - rdfs:domain wbsha:WBSha ;
93 - rdfs:label "wlbEwMin" ;
94 - rdfs:range xsd:string ;
95 - tables:columnIndex "20"^^xsd:int .
96 -
97 -wbsha:wlbEwSec
98 - rdf:type owl:DatatypeProperty ;
99 - rdfs:domain wbsha:WBSha ;
100 - rdfs:label "wlbEwSec" ;
101 - rdfs:range xsd:string ;
102 - tables:columnIndex "21"^^xsd:int .
103 -
104 -wbsha:wlbEwUtm
105 - rdf:type owl:DatatypeProperty ;
106 - rdfs:domain wbsha:WBSha ;
107 - rdfs:label "wlbEwUtm" ;
108 - rdfs:range xsd:string ;
109 - tables:columnIndex "26"^^xsd:int .
110 -
111 -wbsha:wlbGeodeticDatum
112 - rdf:type owl:DatatypeProperty ;
113 - rdfs:domain wbsha:WBSha ;
114 - rdfs:label "wlbGeodeticDatum" ;
115 - rdfs:range xsd:string ;
116 - tables:columnIndex "14"^^xsd:int .
117 -
118 -wbsha:wlbMainArea
119 - rdf:type owl:DatatypeProperty ;
120 - rdfs:domain wbsha:WBSha ;
121 - rdfs:label "wlbMainArea" ;
122 - rdfs:range xsd:string ;
123 - tables:columnIndex "10"^^xsd:int .
124 -
125 -wbsha:wlbNamePart1
126 - rdf:type owl:DatatypeProperty ;
127 - rdfs:domain wbsha:WBSha ;
128 - rdfs:label "wlbNamePart1" ;
129 - rdfs:range xsd:string ;
130 - tables:columnIndex "28"^^xsd:int .
131 -
132 -wbsha:wlbNamePart2
133 - rdf:type owl:DatatypeProperty ;
134 - rdfs:domain wbsha:WBSha ;
135 - rdfs:label "wlbNamePart2" ;
136 - rdfs:range xsd:string ;
137 - tables:columnIndex "29"^^xsd:int .
138 -
139 -wbsha:wlbNamePart3
140 - rdf:type owl:DatatypeProperty ;
141 - rdfs:domain wbsha:WBSha ;
142 - rdfs:label "wlbNamePart3" ;
143 - rdfs:range xsd:string ;
144 - tables:columnIndex "30"^^xsd:int .
145 -
146 -wbsha:wlbNamePart4
147 - rdf:type owl:DatatypeProperty ;
148 - rdfs:domain wbsha:WBSha ;
149 - rdfs:label "wlbNamePart4" ;
150 - rdfs:range xsd:string ;
151 - tables:columnIndex "31"^^xsd:int .
152 -
153 -wbsha:wlbNamePart5
154 - rdf:type owl:DatatypeProperty ;
155 - rdfs:domain wbsha:WBSha ;
156 - rdfs:label "wlbNamePart5" ;
157 - rdfs:range xsd:string ;
158 - tables:columnIndex "32"^^xsd:int .
159 -
160 -wbsha:wlbNamePart6
161 - rdf:type owl:DatatypeProperty ;
162 - rdfs:domain wbsha:WBSha ;
163 - rdfs:label "wlbNamePart6" ;
164 - rdfs:range xsd:string ;
165 - tables:columnIndex "33"^^xsd:int .
166 -
167 -wbsha:wlbNpdidWellbore
168 - rdf:type owl:DatatypeProperty ;
169 - rdfs:domain wbsha:WBSha ;
170 - rdfs:label "wlbNpdidWellbore" ;
171 - rdfs:range xsd:string ;
172 - tables:columnIndex "1"^^xsd:int .
173 -
174 -wbsha:wlbNsCode
175 - rdf:type owl:DatatypeProperty ;
176 - rdfs:domain wbsha:WBSha ;
177 - rdfs:label "wlbNsCode" ;
178 - rdfs:range xsd:string ;
179 - tables:columnIndex "18"^^xsd:int .
180 -
181 -wbsha:wlbNsDecDeg
182 - rdf:type owl:DatatypeProperty ;
183 - rdfs:domain wbsha:WBSha ;
184 - rdfs:label "wlbNsDecDeg" ;
185 - rdfs:range xsd:string ;
186 - tables:columnIndex "23"^^xsd:int .
187 -
188 -wbsha:wlbNsDeg
189 - rdf:type owl:DatatypeProperty ;
190 - rdfs:domain wbsha:WBSha ;
191 - rdfs:label "wlbNsDeg" ;
192 - rdfs:range xsd:string ;
193 - tables:columnIndex "15"^^xsd:int .
194 -
195 -wbsha:wlbNsMin
196 - rdf:type owl:DatatypeProperty ;
197 - rdfs:domain wbsha:WBSha ;
198 - rdfs:label "wlbNsMin" ;
199 - rdfs:range xsd:string ;
200 - tables:columnIndex "16"^^xsd:int .
201 -
202 -wbsha:wlbNsSec
203 - rdf:type owl:DatatypeProperty ;
204 - rdfs:domain wbsha:WBSha ;
205 - rdfs:label "wlbNsSec" ;
206 - rdfs:range xsd:string ;
207 - tables:columnIndex "17"^^xsd:int .
208 -
209 -wbsha:wlbNsUtm
210 - rdf:type owl:DatatypeProperty ;
211 - rdfs:domain wbsha:WBSha ;
212 - rdfs:label "wlbNsUtm" ;
213 - rdfs:range xsd:string ;
214 - tables:columnIndex "25"^^xsd:int .
215 -
216 -wbsha:wlbProductionLicence
217 - rdf:type owl:DatatypeProperty ;
218 - rdfs:domain wbsha:WBSha ;
219 - rdfs:label "wlbProductionLicence" ;
220 - rdfs:range xsd:string ;
221 - tables:columnIndex "4"^^xsd:int .
222 -
223 -wbsha:wlbSeismicLocation
224 - rdf:type owl:DatatypeProperty ;
225 - rdfs:domain wbsha:WBSha ;
226 - rdfs:label "wlbSeismicLocation" ;
227 - rdfs:range xsd:string ;
228 - tables:columnIndex "13"^^xsd:int .
229 -
230 -wbsha:wlbTotalDepth
231 - rdf:type owl:DatatypeProperty ;
232 - rdfs:domain wbsha:WBSha ;
233 - rdfs:label "wlbTotalDepth" ;
234 - rdfs:range xsd:string ;
235 - tables:columnIndex "8"^^xsd:int .
236 -
237 -wbsha:wlbUtmZone
238 - rdf:type owl:DatatypeProperty ;
239 - rdfs:domain wbsha:WBSha ;
240 - rdfs:label "wlbUtmZone" ;
241 - rdfs:range xsd:string ;
242 - tables:columnIndex "27"^^xsd:int .
243 -
244 -wbsha:wlbWaterDepth
245 - rdf:type owl:DatatypeProperty ;
246 - rdfs:domain wbsha:WBSha ;
247 - rdfs:label "wlbWaterDepth" ;
248 - rdfs:range xsd:string ;
249 - tables:columnIndex "9"^^xsd:int .
250 -
251 -wbsha:wlbWell
252 - rdf:type owl:DatatypeProperty ;
253 - rdfs:domain wbsha:WBSha ;
254 - rdfs:label "wlbWell" ;
255 - rdfs:range xsd:string ;
256 - tables:columnIndex "2"^^xsd:int .
257 -
258 -wbsha:wlbWellboreName
259 - rdf:type owl:DatatypeProperty ;
260 - rdfs:domain wbsha:WBSha ;
261 - rdfs:label "wlbWellboreName"^^xsd:string ;
262 - rdfs:range xsd:string ;
263 - tables:columnIndex "0"^^xsd:int .