mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
(#594) Fixed invalid formatting of well info during export of LAS files
This commit is contained in:
parent
58693f49dc
commit
9aff75c128
6
ThirdParty/NRLib/nrlib/well/laswell.cpp
vendored
6
ThirdParty/NRLib/nrlib/well/laswell.cpp
vendored
@ -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 += " :";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user