2016-09-16 05:46:25 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2016- Statoil ASA
|
|
|
|
//
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-19 04:22:45 -05:00
|
|
|
#include "cvfBase.h"
|
2016-09-19 04:17:36 -05:00
|
|
|
#include "cvfCollection.h"
|
2016-09-19 04:22:45 -05:00
|
|
|
|
2016-09-16 05:46:25 -05:00
|
|
|
#include <QString>
|
2016-09-19 04:22:45 -05:00
|
|
|
|
2016-09-16 05:46:25 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class RimWellLogCurve;
|
2016-09-19 04:17:36 -05:00
|
|
|
class RigWellLogCurveData;
|
2016-09-16 05:46:25 -05:00
|
|
|
class SingleLasFileMetaData;
|
|
|
|
|
|
|
|
class RigLasFileExporter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RigLasFileExporter(const std::vector<RimWellLogCurve*>& curves);
|
|
|
|
|
2016-09-19 04:17:36 -05:00
|
|
|
void setResamplingInterval(double interval);
|
|
|
|
|
2016-10-14 06:30:04 -05:00
|
|
|
void wellPathsAndRkbDiff(std::vector<QString>* wellNames, std::vector<double>* rkbDiffs);
|
|
|
|
void setRkbDiffs(const std::vector<QString>& wellNames, const std::vector<double>& rkbDiffs);
|
|
|
|
|
2016-09-16 05:46:25 -05:00
|
|
|
bool writeToFolder(const QString& exportFolder);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<SingleLasFileMetaData> createLasFileDescriptions(const std::vector<RimWellLogCurve*>& curves);
|
|
|
|
void appendLasFileDescriptions(const std::vector<RimWellLogCurve*>& curves,
|
|
|
|
std::vector<SingleLasFileMetaData>* lasFileDescriptions);
|
|
|
|
QString caseNameFromCurve(RimWellLogCurve* curve);
|
2016-09-23 03:07:15 -05:00
|
|
|
double rkbDiff(RimWellLogCurve* curve);
|
2016-09-16 05:46:25 -05:00
|
|
|
|
2016-10-14 06:30:04 -05:00
|
|
|
void applyUserDefinedRkbOffsets(std::vector<SingleLasFileMetaData>* lasFileDescriptions);
|
|
|
|
|
2016-09-16 05:46:25 -05:00
|
|
|
private:
|
2016-10-14 06:30:04 -05:00
|
|
|
std::vector<RimWellLogCurve*> m_curves;
|
|
|
|
std::vector<double> m_userDefinedRkbOffsets;
|
2016-09-19 04:17:36 -05:00
|
|
|
|
|
|
|
bool m_isResampleActive;
|
|
|
|
double m_resamplingInterval;
|
|
|
|
cvf::Collection<RigWellLogCurveData> m_resampledCurveDatas;
|
2016-09-16 05:46:25 -05:00
|
|
|
};
|