Skip to content
Snippets Groups Projects
Commit 53563db5 authored by Mickael Savinaud's avatar Mickael Savinaud
Browse files

BUG: set the default value of the idx and idy to solve the bug 863

parent b606efcf
No related branches found
No related tags found
No related merge requests found
......@@ -67,8 +67,10 @@ private:
AddParameter(ParameterType_Group, "input", "Point Coordinates");
AddParameter(ParameterType_Float, "input.idx","X value of desired point");
SetParameterDescription("input.idx", "X coordinate of the point to transform.");
SetDefaultParameterFloat("input.idx",0.0);
AddParameter(ParameterType_Float, "input.idy","Y value of desired point");
SetParameterDescription("input.idy", "Y coordinate of the point to transform.");
SetDefaultParameterFloat("input.idy",0.0);
// Output with Output Role
AddParameter(ParameterType_Group, "output", "Geographic Coordinates");
......
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