From 74aba88f4f06b41f69efc85dcb50fdd3324debfd Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@orfeo-toolbox.org> Date: Fri, 4 Feb 2011 10:54:21 +0100 Subject: [PATCH] DOC: Warning for the TOC mode which is not supported yet --- Radiometry/otbOpticalCalibration.cxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Radiometry/otbOpticalCalibration.cxx b/Radiometry/otbOpticalCalibration.cxx index 508b45d675..a576c93278 100644 --- a/Radiometry/otbOpticalCalibration.cxx +++ b/Radiometry/otbOpticalCalibration.cxx @@ -42,7 +42,7 @@ int OpticalCalibration::Describe(ApplicationDescriptor* descriptor) descriptor->AddInputImage(); descriptor->AddOutputImage(); descriptor->AddOptionNParams("Level", - "Level of calibration toa or toc", + "Level of calibration toa or toc (default is toa)", "level",true, otb::ApplicationDescriptor::String); descriptor->AddOption("AvailableMemory","Set the maximum of available memory for the pipeline execution in mega bytes (optional, 256 by default","ram",1,false, otb::ApplicationDescriptor::Integer); return EXIT_SUCCESS; @@ -66,6 +66,12 @@ int OpticalCalibration::Execute(otb::ApplicationOptionsResult* parseResult) // calibration process if(parseResult->IsOptionPresent("Level")) { + if(parseResult->GetParameterString("Level") == "toc") + { + std::cerr<<"Not implemented yet"<<std::endl; + return EXIT_FAILURE; + } + // Read input image information ReaderType::Pointer reader=ReaderType::New(); reader->SetFileName(parseResult->GetInputImage().c_str()); -- GitLab