#9364 Well Log Plot and Track: Activate and improve Show Plot Data

This commit is contained in:
Magne Sjaastad
2022-10-14 13:20:05 +02:00
parent 905b2abe53
commit c8d6e29447
3 changed files with 32 additions and 21 deletions

View File

@@ -1061,7 +1061,7 @@ QString RimWellLogTrack::asciiDataForPlotExport() const
out += QString::number( curveDepth, 'f', 3 );
for ( std::vector<double> plotVector : curvesPlotXValues )
{
out += " \t" + QString::number( plotVector[i], 'g' );
out += QString( " %1" ).arg( QString::number( plotVector[i], 'f', 3 ), 12 );
}
out += "\n";
}