2017-11-24 02:42:07 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RifWellPathFormationsImporter.h"
|
|
|
|
#include "RifWellPathFormationReader.h"
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-02-26 03:48:40 -06:00
|
|
|
cvf::ref<RigWellPathFormations> RifWellPathFormationsImporter::readWellPathFormations( const QString& formationFilePath, const QString& wellName )
|
2017-11-24 02:42:07 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
readAllWellPathFormations( formationFilePath );
|
2023-02-26 03:48:40 -06:00
|
|
|
if ( m_fileNameToWellPathFormationMap[formationFilePath].find( wellName ) != m_fileNameToWellPathFormationMap[formationFilePath].end() )
|
2017-11-27 03:33:41 -06:00
|
|
|
{
|
|
|
|
return m_fileNameToWellPathFormationMap[formationFilePath][wellName];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-06 05:01:15 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-12-06 05:01:15 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-02-26 03:48:40 -06:00
|
|
|
cvf::ref<RigWellPathFormations> RifWellPathFormationsImporter::reloadWellPathFormations( const QString& formationFilePath,
|
|
|
|
const QString& wellName )
|
2017-12-06 05:01:15 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
m_fileNameToWellPathFormationMap.erase( formationFilePath );
|
2017-12-06 05:01:15 -06:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
return readWellPathFormations( formationFilePath, wellName );
|
2017-12-06 05:01:15 -06:00
|
|
|
}
|
|
|
|
|
2017-11-27 03:33:41 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-11-27 03:33:41 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-02-26 03:48:40 -06:00
|
|
|
std::map<QString, cvf::ref<RigWellPathFormations>> RifWellPathFormationsImporter::readWellPathFormationsFromPath( const QString& filePath )
|
2017-11-27 03:33:41 -06:00
|
|
|
{
|
|
|
|
// If we have the file in the map, assume it is already read.
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( m_fileNameToWellPathFormationMap.find( filePath ) != m_fileNameToWellPathFormationMap.end() )
|
2017-11-27 03:33:41 -06:00
|
|
|
{
|
|
|
|
return m_fileNameToWellPathFormationMap[filePath];
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<QString, cvf::ref<RigWellPathFormations>> wellPathToFormationMap =
|
2019-09-06 03:40:57 -05:00
|
|
|
RifWellPathFormationReader::readWellFormationsToGeometry( filePath );
|
2017-11-27 03:33:41 -06:00
|
|
|
|
|
|
|
m_fileNameToWellPathFormationMap[filePath] = wellPathToFormationMap;
|
|
|
|
|
|
|
|
return wellPathToFormationMap;
|
2017-11-24 02:42:07 -06:00
|
|
|
}
|
|
|
|
|
2017-12-06 05:01:15 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-12-06 05:01:15 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RifWellPathFormationsImporter::reloadAllWellPathFormations()
|
|
|
|
{
|
|
|
|
std::vector<QString> allFilePaths;
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( auto it = m_fileNameToWellPathFormationMap.begin(); it != m_fileNameToWellPathFormationMap.end(); it++ )
|
2017-12-06 05:01:15 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
allFilePaths.push_back( it->first );
|
2017-12-06 05:01:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
m_fileNameToWellPathFormationMap.clear();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( const QString& filePath : allFilePaths )
|
2017-12-06 05:01:15 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
readWellPathFormationsFromPath( filePath );
|
2017-12-06 05:01:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-24 02:42:07 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RifWellPathFormationsImporter::readAllWellPathFormations( const QString& filePath )
|
2017-11-24 02:42:07 -06:00
|
|
|
{
|
|
|
|
// If we have the file in the map, assume it is already read.
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( m_fileNameToWellPathFormationMap.find( filePath ) != m_fileNameToWellPathFormationMap.end() )
|
2017-11-24 02:42:07 -06:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<QString, cvf::ref<RigWellPathFormations>> wellPathToFormationMap =
|
2019-09-06 03:40:57 -05:00
|
|
|
RifWellPathFormationReader::readWellFormationsToGeometry( filePath );
|
2017-11-24 02:42:07 -06:00
|
|
|
|
|
|
|
m_fileNameToWellPathFormationMap[filePath] = wellPathToFormationMap;
|
|
|
|
}
|