Skip to content
Snippets Groups Projects
Commit 051e9d4e authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

BUG: fix handling of relative path, use dedicated macro for logs

parent 9a45bda7
No related branches found
No related tags found
1 merge request!33Multi writer
......@@ -22,6 +22,7 @@
#define otbMPIVrtWriter_txx
#include "otbMPIVrtWriter.h"
#include "otbMacro.h"
namespace otb
{
......@@ -163,11 +164,10 @@ MPIVrtWriter<TImage>::Update()
}
}
std::vector<std::string> joins;
joins.push_back(itksys::SystemTools::GetFilenamePath(output).append("/"));
joins.push_back(itksys::SystemTools::GetFilenameWithoutExtension(output));
itksys::SystemTools::SplitPath(output, joins);
joins.back() = itksys::SystemTools::GetFilenameWithoutExtension(output);
std::string prefix = itksys::SystemTools::JoinPath(joins);
// Data type
std::string dataTypeStr = "Float32";
GDALImageIO::Pointer gdalImageIO;
......@@ -287,7 +287,7 @@ MPIVrtWriter<TImage>::Update()
int tileIndexY = currentRegion.GetIndex()[1];
std::stringstream tileFileName;
tileFileName <<prefix<<"_"<<tileIndexX<<"_"<<tileIndexY<<"_"<<tileSizeX<<"_"<<tileSizeY<<".tif";
std::cout<<tileFileName.str()<<std::endl;
otbDebugMacro(<<tileFileName.str());
GDALDataset *dataset = (GDALDataset*) GDALOpen(tileFileName.str().c_str(), GA_ReadOnly);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment