Skip to content
Snippets Groups Projects
Commit e66f88d5 authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Positionne la precision à 10 chiffres significatif.

parent cbbaa632
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@
=========================================================================*/
#include <iostream>
#include <iomanip>
#include <fstream>
#include <vector>
......@@ -222,7 +223,7 @@ int SIXSFunctionMainOtbTest( int argc, char *argv[] )
}
fout <<" ---------------------------------------------------------"<<std::endl;
fout << "Outputs values:"<<std::endl;
fout << " -----> atmospheric reflectance : "<<otb_ratm__<<std::endl;
fout << " -----> atmospheric reflectance : "<<std::setprecision(10)<<otb_ratm__<<std::endl;
fout << " -----> atmospheric spherical albedo : "<<sast<<std::endl;
fout << " -----> total gaseous transmission : "<<tgasm<<std::endl;
fout << " -----> downward transmittance : "<<sdtott<<std::endl;
......
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