mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Add seismic 3d view (#10472)
* Show seismic, surfaces, annotations and wellpaths in new view not requiring a grid loaded first.
This commit is contained in:
@@ -68,6 +68,8 @@
|
||||
#include "RimPlotWindow.h"
|
||||
#include "RimProject.h"
|
||||
#include "RimScriptCollection.h"
|
||||
#include "RimSeismicView.h"
|
||||
#include "RimSeismicViewCollection.h"
|
||||
#include "RimSimWellInViewCollection.h"
|
||||
#include "RimStimPlanColors.h"
|
||||
#include "RimStimPlanModel.h"
|
||||
@@ -669,6 +671,14 @@ bool RiaApplication::loadProject( const QString& projectFileName, ProjectLoadAct
|
||||
cas->intersectionViewCollection()->syncFromExistingIntersections( false );
|
||||
}
|
||||
|
||||
for ( RimOilField* oilField : m_project->oilFields )
|
||||
{
|
||||
for ( auto seisView : oilField->seismicViewCollection()->views() )
|
||||
{
|
||||
seisView->loadDataAndUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
// Init summary case groups
|
||||
for ( RimOilField* oilField : m_project->oilFields )
|
||||
{
|
||||
|
||||
@@ -230,7 +230,8 @@ enum class View3dContent
|
||||
GEOMECH_DATA = 0b00000010,
|
||||
FLAT_INTERSECTION = 0b00000100,
|
||||
CONTOUR = 0b00001000,
|
||||
ALL = 0b00001111
|
||||
SEISMIC = 0b00010000,
|
||||
ALL = 0b00011111
|
||||
};
|
||||
|
||||
}; // namespace RiaDefines
|
||||
|
||||
Reference in New Issue
Block a user