SetParameterDescription("output.nodata","DEM empty cells are filled with tihs value (optional -32768 by default)");
SetParameterDescription("output.nodata","DSM empty cells are filled with tihs value (optional -32768 by default)");
SetDefaultParameterFloat("output.nodata",-32768);
SetDefaultParameterFloat("output.nodata",-32768);
MandatoryOff("output.nodata");
MandatoryOff("output.nodata");
// UserDefined values
AddParameter(ParameterType_Choice,"output.fusionmethod","Method to fuse measures in each DSM cell");
SetParameterDescription("output.fusionmethod","This parameter allows to choose the method used to fuse elevation measurements in each output DSM cell");
AddChoice("output.fusionmethod.max","Value is the maximum elevation measured in the cell.");
AddChoice("output.fusionmethod.min","Value is the minimum elevation measured in the cell.");
AddChoice("output.fusionmethod.mean","Value is the mean elevation measured in the cell.");
AddChoice("output.fusionmethod.acc","Value is the number of measures in the cell (for debugging purposes).");