Skip to content
Snippets Groups Projects
Commit aa2a0459 authored by Jonathan Guinet's avatar Jonathan Guinet
Browse files

ENH: a default value is set to MapProjectionParameters when using UTM option.

parent cb07f2c4
No related branches found
No related tags found
No related merge requests found
......@@ -41,12 +41,14 @@ void MapProjectionParametersHandler::AddMapProjectionParameters( Application::Po
app->AddParameter(ParameterType_Int, oss.str(), "Zone number");
app->SetParameterDescription(oss.str(),"The zone number ranges from 1 to 60 and allows to define the transverse mercator projection (along with the hemisphere)");
app->SetMinimumParameterIntValue(oss.str(), 1);
app->SetDefaultParameterInt(oss.str(), 31);
oss.str("");
oss <<key<<".utm" <<".northhem";
app->AddParameter(ParameterType_Empty, oss.str(), "Northern Hemisphere");
app->SetParameterDescription(oss.str(),"The transverse mercator projections are defined by their zone number as well as the hemisphere. Activate this parameter if your image is in the northern hemisphere.");
// lambert2
oss.str("");
oss << key<<".lambert2";
......
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