#5472 Add indication of water depth to formation and casing track

* Also add lighter formation lines as an option and make this default for WBS plots
This commit is contained in:
Gaute Lindkvist
2020-02-07 11:08:47 +01:00
parent 47f9c8c7c6
commit 438febe049
9 changed files with 167 additions and 61 deletions

View File

@@ -39,7 +39,7 @@ RigWellLogExtractor::~RigWellLogExtractor() {}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs()
const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs() const
{
return m_intersectionMeasuredDepths;
}
@@ -47,7 +47,7 @@ const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<double>& RigWellLogExtractor::cellIntersectionTVDs()
const std::vector<double>& RigWellLogExtractor::cellIntersectionTVDs() const
{
return m_intersectionTVDs;
}
@@ -88,7 +88,7 @@ std::vector<WellPathCellIntersectionInfo> RigWellLogExtractor::cellIntersectionI
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx()
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx() const
{
return m_intersectedCellsGlobIdx;
}