(#594) Fixed invalid formatting of well info during export of LAS files

This commit is contained in:
Magne Sjaastad 2015-10-27 11:42:37 +01:00
parent 58693f49dc
commit 9aff75c128

View File

@ -582,8 +582,12 @@ void NRLib::LasWell::setStopDepth(double stopDepth)
void NRLib::LasWell::addWellInfo(const std::string& parameter, const std::string& value)
{
// Example of line formatting taken from the documentation
// WELL. aaaaaaaaaaaaaaaaaaaaa : WELL
//
std::string info = parameter;
info += " : ";
info += " . ";
info += value;
info += " :";