Trinh H. Nguyen

updated

Showing 69 changed files with 1455 additions and 527 deletions
+ execute the following command in Windows Prompt Command
java -jar erh.jar
It will take a while, please be patient!
No preview for this file type
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-gas-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-gas-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"companies": [
{
"name": "statoil",
"username":"tu128",
"password":"ERHpw028",
"DPR2": {
"reportType": "DPR2",
"fieldId": "1854729",
"fromDate": "2011-12-25",
"toDate": "2012-03-01"
},
"MPRG": {
"fieldId": "43765",
"fromDate": "2011-12-01",
"toDate": "2012-02-01"
}
},
{
"name": "dong",
"username":"tu145",
"password":"ERHpw045",
"DPR2": {
"fieldId": "18081500",
"fromDate": "2012-02-01",
"toDate": "2012-03-01"
},
"MPRG": {
"fieldId": "18081500",
"fromDate": "2012-01-01",
"toDate": "2012-03-01"
}
}
]
}
\ No newline at end of file
No preview for this file type
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
SELECT ?fieldName ?productKind ?startDate ?endDate ?density ?densityUnit ?mass ?massUnit ?volume ?volumenUnit
WHERE {
?field a erhi:Field;
erhi:npdid "18081500";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:hasProductKind .?productKind.
?flowProduct erhi:productStartAt ?startDate.
?flowProduct erhi:productEndAt ?endDate.
OPTIONAL {
?flowProduct erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?masUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
VALUES ?productKind {"oil net" "water" "gas"}
}
\ No newline at end of file
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind ?startAt ?endAt
((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startDate.
?flowProduct erhi:productEndAt ?endDate.
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
VALUES ?productKind {"oil net" "water" "gas"}
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate > "2012-02-01"^^xsd:date && ?endProductDate < "2012-03-25"^^xsd:date)
}
group by ?fieldName ?productKind ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate > "2012-02-01"^^xsd:date && ?endProductDate < "2012-03-25"^^xsd:date)
}
group by ?fieldName ?productKind ?volumeUnit
\ No newline at end of file
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate > "2012-02-01"^^xsd:date && ?endProductDate < "2012-03-25"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate > "2012-02-01"^^xsd:date && ?endProductDate < "2012-03-25"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate > "2012-02-01"^^xsd:date && ?endProductDate < "2012-03-25"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?productKind ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-06-30"^^xsd:date)
}
group by ?fieldName ?productKind ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?startProductDate < "2012-06-30"^^xsd:date)
}
group by ?fieldName ?productKind ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?productKind (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind ?productKind.
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate < "2012-04-30"^^xsd:date)
}
group by ?fieldName ?productKind ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "43765".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate < "2012-06-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
\ No newline at end of file
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-06-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName (sum(?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName;
erhi:npdid "43765".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate < "2012-06-30"^^xsd:date)
}
group by ?fieldName ?volumeUnit
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ((?volume*?percentageOfShare/100) as ?my_Total_Volume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate < "2012-03-30"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?volume ?volumeUnit
WHERE {
?field a erhi:Field;
erhi:npdid "18081500";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?startProductDate <= "2012-02-01"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?volume ?volumeUnit
WHERE {
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?startProductDate <= "2012-02-01"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?volume ?volumeUnit
WHERE {
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?startProductDate <= "2012-02-01"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?fieldName ?volume ?volumeUnit
WHERE {
?field a erhi:Field;
erhi:npdid "43765";
erhi:npdname ?fieldName.
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?startProductDate <= "2012-02-01"^^xsd:date)
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct
erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct
erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct
erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct
erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate <= "2012-05-31"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "43765".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct
erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct
erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct
erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct
erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER (?startProductDate >= "2011-12-01"^^xsd:date && ?endProductDate <= "2012-05-31"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "18081500".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct
erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct
erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct
erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct
erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate <= "2012-05-31"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licenceShare ?field ?licenceNpdID ?flow ?percentageOfShare ?startProductDate ?endProductDate ?density ?densityUnit ?mass ((?mass*?percentageOfShare/100) as ?myMass) ?massUnit ?volume ((?volume*?percentageOfShare/100) as ?myVolume) ?volumeUnit
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licence erhi:npdname ?licenceName .
?licence erhi:npdid ?licenceNpdID .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "17237817".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field a erhi:Field;
erhi:npdid "43765".
?flow erhi:flowIntoOrOutOf ?field;
a erhi:AllocatedFlow, erhi:ProductionExploitation.
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Monthly".
?flowProduct
erhi:hasProductKind "oil net".
OPTIONAL {
?flowProduct
erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct
erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct
erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
FILTER NOT EXISTS {?licenceShare erhi:npdEndDate ?endDate}.
FILTER (?startProductDate >= "2012-01-01"^^xsd:date && ?endProductDate <= "2012-05-31"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licence ?fieldName ?wellboreName ?flow ?startProductDate ?endProductDate ?density ?densityUnit ?mass ?massUnit ?volume ?volumeUnit ?bhp_value ?bhp_unit ?bht_value ?bht_unit ?whp_value ?whp_unit ?wht_value ?wht_unit ?wellboreStatus
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field
erhi:npdname ?fieldName;
erhi:hasWellbore ?wellbore.
?wellbore erhi:npdname ?wellboreName.
?flow erhi:flowIntoOrOutOf ?wellbore.
?flow a erhi:InjectionFlow, erhi:AllocatedFlow .
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
OPTIONAL {
?flow erhi:wellboreBottomholePressureValue ?bhp_value.
?flow erhi:wellboreBottomholePressureUnit ?bhp_unit.
}
OPTIONAL {
?flow erhi:wellboreBottomholeTemperatureValue ?bht_value.
?flow erhi:wellboreBottomholeTemperatureUnit ?bht_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadPressureValue ?whp_value.
?flow erhi:wellboreWellheadPressureUnit ?whp_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadTemperatureValue ?wht_value.
?flow erhi:wellboreWellheadTemperatureUnit ?wht_unit.
}
OPTIONAL {
?flow erhi:wellboreChockeSizeValue ?chokeSize_value.
?flow erhi:wellboreChockeSizeUnit ?chokeSize_unit.
}
OPTIONAL {
?flow erhi:wellboreStatus ?wellboreStatus.
}
FILTER (?startProductDate > "2012-02-25"^^xsd:date)
FILTER (?endProductDate < "2012-03-10"^^xsd:date)
}
limit 5
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?licence ?wellboreName ?flow ?startProductDate ?endProductDate ?density ?densityUnit ?mass ?massUnit ?volume ?volumeUnit ?bhp_value ?bhp_unit ?bht_value ?bht_unit ?whp_value ?whp_unit ?wht_value ?wht_unit ?wellboreStatus
WHERE {
?licence rdf:type erhi:LicenceOrBaa .
?licenceShare erhi:licenceOrBaaShared ?licence.
?licenceShare erhi:licenceOrBaaShareHolder ?licenceOwner.
?licenceOwner erhi:npdid "4070011".
?licenceShare erhi:percentageOfShare ?percentageOfShare.
?licence erhi:ownsField ?field .
?field
erhi:npdid "18081500";
erhi:hasWellbore ?wellbore.
?wellbore erhi:npdname ?wellboreName.
?flow erhi:flowIntoOrOutOf ?wellbore.
?flow a erhi:InjectionFlow, erhi:AllocatedFlow .
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
OPTIONAL {
?flow erhi:wellboreBottomholePressureValue ?bhp_value.
?flow erhi:wellboreBottomholePressureUnit ?bhp_unit.
}
OPTIONAL {
?flow erhi:wellboreBottomholeTemperatureValue ?bht_value.
?flow erhi:wellboreBottomholeTemperatureUnit ?bht_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadPressureValue ?whp_value.
?flow erhi:wellboreWellheadPressureUnit ?whp_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadTemperatureValue ?wht_value.
?flow erhi:wellboreWellheadTemperatureUnit ?wht_unit.
}
OPTIONAL {
?flow erhi:wellboreChockeSizeValue ?chokeSize_value.
?flow erhi:wellboreChockeSizeUnit ?chokeSize_unit.
}
OPTIONAL {
?flow erhi:wellboreStatus ?wellboreStatus.
}
FILTER (?startProductDate > "2012-02-25"^^xsd:date)
FILTER (?endProductDate < "2012-03-10"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?wellboreName ?flow ?startProductDate ?endProductDate ?density ?densityUnit ?mass ?massUnit ?volume ?volumeUnit ?bhp_value ?bhp_unit ?bht_value ?bht_unit ?whp_value ?whp_unit ?wht_value ?wht_unit ?wellboreStatus
WHERE {
?wellbore a erhi:Wellbore ;
erhi:npdname ?wellboreName ;
erhi:npdid "6469".
?flow erhi:flowIntoOrOutOf ?wellbore.
?flow a erhi:InjectionFlow, erhi:AllocatedFlow .
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
OPTIONAL {
?flow erhi:wellboreBottomholePressureValue ?bhp_value.
?flow erhi:wellboreBottomholePressureUnit ?bhp_unit.
}
OPTIONAL {
?flow erhi:wellboreBottomholeTemperatureValue ?bht_value.
?flow erhi:wellboreBottomholeTemperatureUnit ?bht_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadPressureValue ?whp_value.
?flow erhi:wellboreWellheadPressureUnit ?whp_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadTemperatureValue ?wht_value.
?flow erhi:wellboreWellheadTemperatureUnit ?wht_unit.
}
OPTIONAL {
?flow erhi:wellboreChockeSizeValue ?chokeSize_value.
?flow erhi:wellboreChockeSizeUnit ?chokeSize_unit.
}
OPTIONAL {
?flow erhi:wellboreStatus ?wellboreStatus.
}
FILTER (?startProductDate > "2012-02-25"^^xsd:date)
FILTER (?endProductDate < "2012-03-10"^^xsd:date)
}
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX erhi: <http://www.reportinghub.no/erhi/schema/1.0/interface-model#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?wellboreName ?flow ?startProductDate ?endProductDate ?density ?densityUnit ?mass ?massUnit ?volume ?volumeUnit ?bhp_value ?bhp_unit ?bht_value ?bht_unit ?whp_value ?whp_unit ?wht_value ?wht_unit ?wellboreStatus
WHERE {
?wellbore a erhi:Wellbore ;
erhi:npdname ?wellboreName ;
erhi:npdid "6469".
?flow erhi:flowIntoOrOutOf ?wellbore.
?flow a erhi:ProductionFlow, erhi:AllocatedFlow .
?flow erhi:hasProduct ?flowProduct.
?flowProduct erhi:productStartAt ?startProductDate.
?flowProduct erhi:productEndAt ?endProductDate.
?flowProduct erhi:hasTimePeriod "Daily".
?flowProduct
erhi:hasProductKind "gas".
OPTIONAL {
?flowProduct erhi:hasDensity ?density;
erhi:hasDensityUnit ?densityUnit.
}
OPTIONAL {
?flowProduct erhi:hasMass ?mass;
erhi:hasMassUnit ?massUnit.
}
OPTIONAL {
?flowProduct erhi:hasVolume ?volume;
erhi:hasVolumeUnit ?volumeUnit.
}
OPTIONAL {
?flow erhi:wellboreBottomholePressureValue ?bhp_value.
?flow erhi:wellboreBottomholePressureUnit ?bhp_unit.
}
OPTIONAL {
?flow erhi:wellboreBottomholeTemperatureValue ?bht_value.
?flow erhi:wellboreBottomholeTemperatureUnit ?bht_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadPressureValue ?whp_value.
?flow erhi:wellboreWellheadPressureUnit ?whp_unit.
}
OPTIONAL {
?flow erhi:wellboreWellheadTemperatureValue ?wht_value.
?flow erhi:wellboreWellheadTemperatureUnit ?wht_unit.
}
OPTIONAL {
?flow erhi:wellboreChockeSizeValue ?chokeSize_value.
?flow erhi:wellboreChockeSizeUnit ?chokeSize_unit.
}
OPTIONAL {
?flow erhi:wellboreStatus ?wellboreStatus.
}
FILTER (?startProductDate > "2012-02-25"^^xsd:date)
FILTER (?endProductDate < "2012-03-10"^^xsd:date)
}
\ No newline at end of file
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/10b.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/10b.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/10c.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/10c.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/2d.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/2d.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/4b.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/4b.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/4c.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/4c.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5a.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5a.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5b.qr.SPARQL11-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5b.qr.SPARQL11-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5c-allProduct-allField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5c-allProduct-allField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5c-allProduct-givenField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5c-allProduct-givenField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5c-oilnet-allField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5c-oilnet-allField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5c-oilnet-givenField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5c-oilnet-givenField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5d-allProduct-givenField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5d-allProduct-givenField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5d-oilnet-givenField-D.statoil-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5d-oilnet-givenField-D.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2011-12-25"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-allProduct-givenField-M-asgard.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-allProduct-givenField-M-asgard.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-gas-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-gas-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-oilnet-allField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-oilnet-allField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-oilnet-allField-activeLicence-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-oilnet-allField-activeLicence-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-oilnet-givenField-M-asgard.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-oilnet-givenField-M-asgard.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/5g-oilnet-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/5g-oilnet-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/6b-gas-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/6b-gas-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/6b-oilnet-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/6b-oilnet-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/6b-oilnet-givenField-activeLicence-M.modified.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/6b-oilnet-givenField-activeLicence-M.modified.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/6b-oilnet-givenField-activeLicence-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/6b-oilnet-givenField-activeLicence-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/7b-oilnet-givenField-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/7b-oilnet-givenField-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu128",
"password":"ERHpw028",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/7b-oilnet-givenField-activeLicence-M.statoil-MPRG.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/7b-oilnet-givenField-activeLicence-M.statoil",
"params":
[
{"name":"NPDId","value":"1854729"},
{"name":"reportType","value":"MPRG"},
{"name":"fromDate","value":"2011-12-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-06-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu145",
"password":"ERHpw045",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/8a-gas-allWellbore-allField-injectionAllocated-D.dong-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/8a-gas-allWellbore-allField-injectionAllocated-D.dong",
"params":
[
{"name":"NPDId","value":"18081500"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2012-02-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu145",
"password":"ERHpw045",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/8a-gas-allWellbore-givenField-injectionAllocated-D.dong-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/8a-gas-allWellbore-givenField-injectionAllocated-D.dong",
"params":
[
{"name":"NPDId","value":"18081500"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2012-02-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu145",
"password":"ERHpw045",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/8a-gas-givenWellbore-injectionAllocated-D.dong-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/8a-gas-givenWellbore-injectionAllocated-D.dong",
"params":
[
{"name":"NPDId","value":"18081500"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2012-02-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu145",
"password":"ERHpw045",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/8b-gas-givenWellbore-productionAllocated-D.dong-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/8b-gas-givenWellbore-productionAllocated-D.dong",
"params":
[
{"name":"NPDId","value":"18081500"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2012-02-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}
{
"serverUrl":"https://ws-test.reportinghub.no/resources/parameterized-query",
"user":"tu145",
"password":"ERHpw045",
"outputFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/output/8c.qr.SPARQL11-D.dong-DPR2.txt",
"sparqlQueryFile":"/Volumes/DATA/gitlab/ERHTest/test/queries/8c.qr.SPARQL11-D.dong",
"params":
[
{"name":"NPDId","value":"18081500"},
{"name":"reportType","value":"DPR2"},
{"name":"fromDate","value":"2012-02-01"},
{"name":"NPDType","value":"FIELD"},
{"name":"endDate","value":"2012-03-01"}
]
}