(#433) Reading measured depth from ascii well path files

This commit is contained in:
Pål Hagen 2015-09-10 14:21:08 +02:00
parent ea2bb226d5
commit 5e4f3cfbb9
2 changed files with 2 additions and 0 deletions

View File

@ -283,6 +283,7 @@ void RimWellPathAsciiFileReader::readAllWellData(QString filePath)
cvf::Vec3d wellPoint(x, y, -tvd);
fileWellDataArray.back().m_wellPathGeometry->m_wellPathPoints.push_back(wellPoint);
fileWellDataArray.back().m_wellPathGeometry->m_measuredDepths.push_back(md);
x = HUGE_VAL;
y = HUGE_VAL;

View File

@ -36,4 +36,5 @@ class RigWellPath : public cvf::Object
{
public:
std::vector<cvf::Vec3d> m_wellPathPoints;
std::vector<double> m_measuredDepths;
};