Create depth adjusted LAS files

* Add support for creating depth adjustment LAS files
* Add RiaDefine for LAS file depth property names
* Remove incorrect check in K-index Calculator

Co-authored-by: jorgenherje <jorgenherje@users.noreply.github.com>
Co-authored-by: Magne Sjaastad <magne.sjaastad@ceetronsolutions.com>
This commit is contained in:
Jørgen Herje
2023-01-23 12:46:54 +01:00
committed by GitHub
parent ab165b0d72
commit 50b1820b60
15 changed files with 1158 additions and 22 deletions

View File

@@ -291,6 +291,14 @@ bool RigWellLogFile::hasTvdRkbChannel() const
return !m_tvdRkbLogName.isEmpty();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RigWellLogFile::getMissingValue() const
{
return m_wellLogFile->GetContMissing();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@@ -61,6 +61,8 @@ public:
bool hasTvdMslChannel() const;
bool hasTvdRkbChannel() const;
double getMissingValue() const;
private:
void close();
QString depthUnitString() const;