mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5372 Implement getting reservoir bounding box from Python
This commit is contained in:
@@ -14,6 +14,7 @@ service Case
|
||||
rpc GetDaysSinceStart(CaseRequest) returns (DaysSinceStart) {}
|
||||
rpc GetCaseInfo(CaseRequest) returns (CaseInfo) {}
|
||||
rpc GetPdmObject(CaseRequest) returns (PdmObject) {}
|
||||
rpc GetReservoirBoundingBox(CaseRequest) returns (BoundingBox) {}
|
||||
}
|
||||
|
||||
message CaseRequest {
|
||||
@@ -33,6 +34,16 @@ message CaseInfoArray
|
||||
repeated CaseInfo data = 1;
|
||||
}
|
||||
|
||||
message BoundingBox
|
||||
{
|
||||
double min_x = 1;
|
||||
double max_x = 2;
|
||||
double min_y = 3;
|
||||
double max_y = 4;
|
||||
double min_z = 5;
|
||||
double max_z = 6;
|
||||
}
|
||||
|
||||
message CaseGroup
|
||||
{
|
||||
int32 id = 1;
|
||||
|
||||
Reference in New Issue
Block a user