#880 LAS: Export of TVDRKB

This commit is contained in:
Magne Sjaastad
2016-09-23 10:07:15 +02:00
parent 120cc8b6dc
commit 8514664d06
4 changed files with 57 additions and 4 deletions

View File

@@ -634,3 +634,16 @@ QString RimWellLogExtractionCurve::caseName() const
return QString();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RimWellLogExtractionCurve::rkbDiff() const
{
if (m_wellPath && m_wellPath->wellPathGeometry())
{
return cvf::Math::abs(m_wellPath->wellPathGeometry()->m_measuredDepths[0] - m_wellPath->wellPathGeometry()->m_wellPathPoints[0].z());
}
return HUGE_VAL;
}