From fe3fe5c8f88c3d733a95c39726e23fa9209901a0 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Fri, 9 Nov 2018 08:47:14 +0100 Subject: [PATCH] #3641 LAS file import : Add support for MD as depth channel name --- ApplicationCode/ReservoirDataModel/RigWellLogFile.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ApplicationCode/ReservoirDataModel/RigWellLogFile.cpp b/ApplicationCode/ReservoirDataModel/RigWellLogFile.cpp index f943ac3a4c..2f537f9d65 100644 --- a/ApplicationCode/ReservoirDataModel/RigWellLogFile.cpp +++ b/ApplicationCode/ReservoirDataModel/RigWellLogFile.cpp @@ -97,7 +97,8 @@ bool RigWellLogFile::open(const QString& fileName, QString* errorMessage) QString logName = QString::fromStdString(itCL->first); 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; }