#886 LAS Export: Set the STEP if the data is resampled

This commit is contained in:
Magne Sjaastad
2016-09-23 10:20:05 +02:00
parent 8514664d06
commit 88e40aa2d9
3 changed files with 10 additions and 1 deletions

View File

@@ -597,6 +597,11 @@ void NRLib::LasWell::setStopDepth(double stopDepth)
stop_depth_ = stopDepth;
}
void NRLib::LasWell::setDepthStep(double depthStep)
{
depth_increment_ = depthStep;
}
void NRLib::LasWell::addWellInfo(const std::string& parameter, const std::string& value)
{
// Example of line formatting taken from the documentation

View File

@@ -61,6 +61,7 @@ public:
void setVersionInfo(const std::string& logName);
void setStartDepth(double startDepth);
void setStopDepth(double stopDepth);
void setDepthStep(double depthStep);
void addWellInfo(const std::string& parameter, const std::string& value);