From aecf8046cd1663d5e976a0790db98744fdb4f8e6 Mon Sep 17 00:00:00 2001 From: Otmane Lahlou <otmane.lahlou@c-s.fr> Date: Mon, 17 Oct 2011 15:13:15 +0200 Subject: [PATCH] ENH: remove verbosity --- Applications/Projections/otbOrthoRectification.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Applications/Projections/otbOrthoRectification.cxx b/Applications/Projections/otbOrthoRectification.cxx index 021b471e97..26cd72e716 100644 --- a/Applications/Projections/otbOrthoRectification.cxx +++ b/Applications/Projections/otbOrthoRectification.cxx @@ -156,14 +156,13 @@ private: // Built the Output Map Projection AddParameter(ParameterType_Choice, "map", "Map Projection"); - AddChoice("map.utm", "UTM"); // OK + AddChoice("map.utm", "UTM"); AddParameter(ParameterType_Int, "map.utm.zone", "Zone number"); AddParameter(ParameterType_Empty, "map.utm.hem", "Hemisphere North"); MandatoryOff("map.utm.zone"); MandatoryOff("map.utm.hem"); - - AddChoice("map.lambert2", "Lambert II Etendu"); // OK + AddChoice("map.lambert2", "Lambert II Etendu"); AddChoice("map.epsg","EPSG"); AddParameter(ParameterType_Int, "map.epsg.code", "EPSG Code"); @@ -311,7 +310,6 @@ private: SetParameterInt("map.utm.zone",zone); if(genericRSEstimator->GetOutputOrigin()[0] > 0.) { - std::cout <<"Hemisphere is north" << std::endl; EnableParameter("map.utm.hem"); } -- GitLab