#3641 LAS file import : Add support for MD as depth channel name

This commit is contained in:
Magne Sjaastad
2018-11-09 08:47:14 +01:00
parent fb18e9b170
commit fe3fe5c8f8

View File

@@ -97,7 +97,8 @@ bool RigWellLogFile::open(const QString& fileName, QString* errorMessage)
QString logName = QString::fromStdString(itCL->first); QString logName = QString::fromStdString(itCL->first);
wellLogNames.append(logName); wellLogNames.append(logName);
if (logName.toUpper() == "DEPT" || logName.toUpper() == "DEPTH") // 2018-11-09 Added MD https://github.com/OPM/ResInsight/issues/3641
if (logName.toUpper() == "DEPT" || logName.toUpper() == "DEPTH" || logName.toUpper() == "MD")
{ {
m_depthLogName = logName; m_depthLogName = logName;
} }