CSV Well Log: change sampling rate from 1.0 meter to 0.1 meter.

This commit is contained in:
Kristian Bendiksen 2024-04-10 10:38:12 +02:00 committed by Magne Sjaastad
parent 25361ad796
commit 67a9e14417

View File

@ -58,7 +58,7 @@ RigWellLogCsvFile::~RigWellLogCsvFile()
bool RigWellLogCsvFile::open( const QString& fileName, RigWellPath* wellPath, QString* errorMessage )
{
m_wellLogChannelNames.clear();
double samplingInterval = 1.0;
double samplingInterval = 0.1;
cvf::cref<RigWellPath> resampledWellPath = resampleWellPath( *wellPath, samplingInterval );
RifCsvUserDataFileParser parser( fileName, errorMessage );