Skip to content
Snippets Groups Projects
Commit 07140ab4 authored by Luc Hermitte's avatar Luc Hermitte
Browse files

BUG: Fix nodata value for sine LIA map

parent d7f3bc64
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ public:
using InputImageType = otb::VectorImage<RealInputPixelType, 2>;
// using OutputImageType = otb::VectorImage<RealOutputPixelType, 2>;
using OutputImageType = otb::Image<RealOutputPixelType, 2>;
using LIAOutputImageType = otb::Image<std::uint16_t, 2>;
using LIAOutputImageType = otb::Image<std::int16_t, 2>;
using FilterType = otb::SARComputeLocalIncidenceAngle<InputImageType, OutputImageType, LIAOutputImageType>;
/** Standard macro */
......@@ -96,7 +96,7 @@ private:
AddParameter(ParameterType_OutputImage, k_out_lia, "Optional output image with abs(LIA) in degree * 100");
SetParameterDescription(k_out_lia, "Optional output image with abs(LIA) in degree * 100");
SetParameterOutputImagePixelType(k_out_lia, ImagePixelType_uint16);
SetParameterOutputImagePixelType(k_out_lia, ImagePixelType_int16);
// SetDefaultOutputPixelType(k_out_lia, ImagePixelType_uint16);
MandatoryOff(k_out_lia);
......
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