Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
|
|
|
//
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RiaStdInclude.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "cafAppEnum.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "RimWellPath.h"
|
|
|
|
#include "RimWellPathCollection.h"
|
|
|
|
#include "RimProject.h"
|
|
|
|
#include "RimCase.h"
|
|
|
|
#include "RivWellPathPartMgr.h"
|
|
|
|
#include "RifJsonEncodeDecode.h"
|
|
|
|
#include "RimIdenticalGridCaseGroup.h"
|
|
|
|
#include "RimScriptCollection.h"
|
|
|
|
#include "RimReservoirView.h"
|
|
|
|
#include "RimReservoirCellResultsCacher.h"
|
|
|
|
#include "RimCaseCollection.h"
|
|
|
|
#include "RimResultSlot.h"
|
|
|
|
#include "RimCellEdgeResultSlot.h"
|
|
|
|
#include "RimCellRangeFilterCollection.h"
|
|
|
|
#include "RimCellPropertyFilterCollection.h"
|
|
|
|
#include "RimWellCollection.h"
|
|
|
|
#include "Rim3dOverlayInfoConfig.h"
|
2013-06-06 08:02:35 -05:00
|
|
|
#include "RimOilField.h"
|
|
|
|
#include "RimAnalysisModels.h"
|
2013-06-18 04:56:51 -05:00
|
|
|
#include <fstream>
|
2013-06-21 08:59:04 -05:00
|
|
|
#include <limits>
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimWellPath, "WellPath");
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimWellPath::RimWellPath()
|
|
|
|
{
|
|
|
|
CAF_PDM_InitObject("WellPath", ":/Well.png", "", "");
|
|
|
|
|
|
|
|
CAF_PDM_InitFieldNoDefault(&name, "WellPathName", "Name", "", "", "");
|
|
|
|
name.setUiReadOnly(true);
|
|
|
|
name.setIOWritable(false);
|
|
|
|
name.setIOReadable(false);
|
|
|
|
name.setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&id, "WellPathId", "Id", "", "", "");
|
|
|
|
id.setUiReadOnly(true);
|
|
|
|
id.setIOWritable(false);
|
|
|
|
id.setIOReadable(false);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&sourceSystem, "SourceSystem", "Source System", "", "", "");
|
|
|
|
sourceSystem.setUiReadOnly(true);
|
|
|
|
sourceSystem.setIOWritable(false);
|
|
|
|
sourceSystem.setIOReadable(false);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&utmZone, "UTMZone", "UTM Zone", "", "", "");
|
|
|
|
utmZone.setUiReadOnly(true);
|
|
|
|
utmZone.setIOWritable(false);
|
|
|
|
utmZone.setIOReadable(false);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&updateDate, "WellPathUpdateDate", "Update Date", "", "", "");
|
|
|
|
updateDate.setUiReadOnly(true);
|
|
|
|
updateDate.setIOWritable(false);
|
|
|
|
updateDate.setIOReadable(false);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&updateUser, "WellPathUpdateUser", "Update User", "", "", "");
|
|
|
|
updateUser.setUiReadOnly(true);
|
|
|
|
updateUser.setIOWritable(false);
|
|
|
|
updateUser.setIOReadable(false);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_surveyType, "WellPathSurveyType", "Survey Type", "", "", "");
|
|
|
|
m_surveyType.setUiReadOnly(true);
|
|
|
|
m_surveyType.setIOWritable(false);
|
|
|
|
m_surveyType.setIOReadable(false);
|
|
|
|
|
|
|
|
CAF_PDM_InitField(&filepath, "WellPathFilepath", QString(""), "Filepath", "", "", "");
|
|
|
|
filepath.setUiReadOnly(true);
|
2013-06-24 15:04:52 -05:00
|
|
|
CAF_PDM_InitField(&wellPathIndexInFile, "WellPathNumberInFile", -1, "Well Number in file", "", "", "");
|
|
|
|
wellPathIndexInFile.setUiReadOnly(true);
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
|
|
|
|
CAF_PDM_InitField(&showWellPathLabel, "ShowWellPathLabel", true, "Show well path label", "", "", "");
|
|
|
|
|
|
|
|
CAF_PDM_InitField(&showWellPath, "ShowWellPath", true, "Show well path", "", "", "");
|
|
|
|
showWellPath.setUiHidden(true);
|
|
|
|
|
|
|
|
CAF_PDM_InitField(&wellPathRadiusScaleFactor, "WellPathRadiusScale", 1.0, "Well path radius scale", "", "", "");
|
|
|
|
CAF_PDM_InitField(&wellPathColor, "WellPathColor", cvf::Color3f(0.999f, 0.333f, 0.999f), "Well path color", "", "", "");
|
|
|
|
|
|
|
|
m_wellPath = NULL;
|
|
|
|
m_project = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimWellPath::~RimWellPath()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
caf::PdmFieldHandle* RimWellPath::userDescriptionField()
|
|
|
|
{
|
|
|
|
return &name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimWellPath::setSurveyType(QString surveyType)
|
|
|
|
{
|
|
|
|
m_surveyType = surveyType;
|
|
|
|
if (m_surveyType == "PLAN")
|
|
|
|
wellPathColor = cvf::Color3f(0.999f, 0.333f, 0.0f);
|
|
|
|
else if (m_surveyType == "PROTOTYPE")
|
|
|
|
wellPathColor = cvf::Color3f(0.0f, 0.333f, 0.999f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RivWellPathPartMgr* RimWellPath::partMgr()
|
|
|
|
{
|
|
|
|
if (m_wellPathPartMgr.isNull())
|
|
|
|
{
|
|
|
|
m_wellPathPartMgr = new RivWellPathPartMgr(m_wellPathCollection, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_wellPathPartMgr.p();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimWellPath::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
|
|
|
{
|
|
|
|
partMgr()->scheduleGeometryRegen();
|
|
|
|
if (m_project) m_project->createDisplayModelAndRedrawAllViews();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
caf::PdmFieldHandle* RimWellPath::objectToggleField()
|
|
|
|
{
|
|
|
|
return &showWellPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
/// Read JSON file containing well path data
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimWellPath::readWellPathFile()
|
2013-06-18 04:56:51 -05:00
|
|
|
{
|
2013-06-26 05:01:53 -05:00
|
|
|
QFileInfo fi(filepath());
|
|
|
|
|
|
|
|
if (fi.suffix().compare("json") == 0)
|
2013-06-18 04:56:51 -05:00
|
|
|
{
|
|
|
|
this->readJsonWellPathFile();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->readAsciiWellPathFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
/// Read JSON file containing well path data
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimWellPath::readJsonWellPathFile()
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
{
|
|
|
|
RigWellPath* wellPathGeom = new RigWellPath();
|
|
|
|
JsonReader jsonReader;
|
|
|
|
QMap<QString, QVariant> jsonMap = jsonReader.decodeFile(filepath);
|
|
|
|
|
|
|
|
// General well info
|
2013-06-18 04:56:51 -05:00
|
|
|
|
|
|
|
name = jsonMap["name"].toString();
|
|
|
|
id = jsonMap["id"].toString();
|
|
|
|
sourceSystem = jsonMap["sourceSystem"].toString();
|
|
|
|
utmZone = jsonMap["utmZone"].toString();
|
|
|
|
updateUser = jsonMap["updateUser"].toString();
|
|
|
|
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
setSurveyType(jsonMap["surveyType"].toString());
|
|
|
|
|
|
|
|
// Convert updateDate from the following format:
|
2013-06-18 04:56:51 -05:00
|
|
|
// "Number of milliseconds elapsed since midnight Coordinated Universal Time (UTC)
|
|
|
|
// of January 1, 1970, not counting leap seconds"
|
|
|
|
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
QString updateDateStr = jsonMap["updateDate"].toString().trimmed();
|
|
|
|
uint updateDateUint = updateDateStr.toULongLong() / 1000; // should be within 32 bit, maximum number is 4294967295 which corresponds to year 2106
|
|
|
|
QDateTime updateDateTime;
|
|
|
|
updateDateTime.setTime_t(updateDateUint);
|
2013-06-18 04:56:51 -05:00
|
|
|
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
updateDate = updateDateTime.toString("d MMMM yyyy");
|
|
|
|
|
2013-06-18 04:56:51 -05:00
|
|
|
// Well path points
|
Added visualization of Well Paths in reservoir views.
Added PDM objects for a list of well paths (RimWellPathCollection) and for individual well paths (RimWellPath).
RimWellPathCollection uses RivWellPathCollectionPartMgr to generate visualization parts for each well path in the collection.
RimWellPath handles geometry defined in RigWellPath, and RivWellPathPartMgr is used to generate visualization parts. The well path visualization parts are generated by reusing RivPipeGeometryGenerator (also used for well pipes).
Added features:
- Select Open Well Paths in File menu to open one or more well path files, file format supported is Statoil JSON format.
- Each well path has a label showing the name, and the PDM window will show additional info (Id, Source System, UTM Zone, Update Date and User, Survey Type, File Path).
- Possible to turn on / off visibility, set thickness, set color for individual well paths.
- List of well paths including specified parameters/settings will be stored in project file.
- Possible to clip all well paths at a specified distance to the reservoir as this is the relevant area to see, and if showing whole well path it may be problematic for auto zoom etc.
p4#: 21651
2013-05-16 05:59:35 -05:00
|
|
|
|
|
|
|
double datumElevation = jsonMap["datumElevation"].toDouble();
|
|
|
|
|
|
|
|
QList<QVariant> pathList = jsonMap["path"].toList();
|
|
|
|
foreach (QVariant point, pathList)
|
|
|
|
{
|
|
|
|
QMap<QString, QVariant> coordinateMap = point.toMap();
|
|
|
|
cvf::Vec3d vec3d(coordinateMap["east"].toDouble(), coordinateMap["north"].toDouble(), -(coordinateMap["tvd"].toDouble() - datumElevation));
|
|
|
|
wellPathGeom->m_wellPathPoints.push_back(vec3d);
|
|
|
|
}
|
|
|
|
|
|
|
|
//jsonReader.dumpToFile(wellPathGeom->m_wellPathPoints, "c:\\temp\\jsonpoints.txt");
|
|
|
|
setWellPathGeometry(wellPathGeom);
|
|
|
|
}
|
2013-06-18 04:56:51 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2013-06-24 15:04:52 -05:00
|
|
|
///
|
2013-06-18 04:56:51 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimWellPath::readAsciiWellPathFile()
|
|
|
|
{
|
2013-06-24 15:04:52 -05:00
|
|
|
RimWellPathAsciiFileReader::WellData wpData = m_wellPathCollection->asciiFileReader()->readWellData(filepath(), wellPathIndexInFile());
|
|
|
|
this->name = wpData.m_name;
|
2013-06-18 04:56:51 -05:00
|
|
|
|
2013-06-24 15:04:52 -05:00
|
|
|
setWellPathGeometry(wpData.m_wellPathGeometry.p());
|
2013-06-18 04:56:51 -05:00
|
|
|
}
|