Skip to content
Snippets Groups Projects
Commit e7a42c6b authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

STYLE: tab replaced by 2 spaces

parent 4bf2852a
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ int generic_main_carto_geo(TMapProjection* mapProjection, otb::CommandLineArgume
if(!parseResult->IsOptionPresent("--OTBTesting"))
{
std::cout << std::setprecision(10) << "Cartographic Point (x , y) : (" << cartoPoint[0] << "," << cartoPoint[1] << ")" << std::endl;
std::cout << std::setprecision(10) << "Geographic Point (Lat,Lon) : (" << geoPoint[1] << "," << geoPoint[0] << ")" << std::endl;
std::cout << std::setprecision(10) << "Geographic Point (Lat,Lon) : (" << geoPoint[1] << "," << geoPoint[0] << ")" << std::endl;
}
else
{
......@@ -74,7 +74,7 @@ int generic_main_carto_geo(TMapProjection* mapProjection, otb::CommandLineArgume
outputTestFile.open(outputTestFileName.c_str());
outputTestFile << std::setprecision(10) << "Cartographic Point (x , y) : (" << cartoPoint[0] << "," << cartoPoint[1] << ")" << std::endl;
outputTestFile << std::setprecision(10) << "Geographic Point (Lat,Lon) : (" << geoPoint[1] << "," << geoPoint[0] << ")" << std::endl;
outputTestFile << std::setprecision(10) << "Geographic Point (Lat,Lon) : (" << geoPoint[1] << "," << geoPoint[0] << ")" << std::endl;
outputTestFile.close();
}
......@@ -110,7 +110,7 @@ int main(int argc, char* argv[])
{
ossimInit::instance()->initialize(argc, argv);
// Parse command line parameters
// Parse command line parameters
typedef otb::CommandLineArgumentParser ParserType;
ParserType::Pointer parser = ParserType::New();
......@@ -141,7 +141,7 @@ int main(int argc, char* argv[])
return EXIT_FAILURE;
}
// Code
// Code
std::string typeMap = parseResult->GetParameterString("--MapProjectionType",0);
int nbParams = parseResult->GetNumberOfParameters("--MapProjectionType");
......
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