Skip to content
Snippets Groups Projects

Resolve "Forbid having zs not in range [-413; 8850]"

Merged Aurore Dupuis requested to merge 65-forbid-having-zs-inferior-to-413 into release-1.6
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
+ 6
0
@@ -299,6 +299,12 @@ short get_elev_snowline_from_bin(const itk::Statistics::ImageToHistogramFilter<i
idx4[1] = 1;
idx4[2] = 1;
// Ensure that the current elevation is in the validity range. (nodata and/or inconsistent elevation)
if ( ( histogram->GetMeasurementVector(idx1)[0] < -413 ) && (histogram->GetMeasurementVector(idx1)[0] < 8850) )
{
return -1
}
// Compute the total number of pixels on the altitude bin
const HistogramType::AbsoluteFrequencyType tot_z=histogram->GetFrequency(idx1) + histogram->GetFrequency(idx2) + histogram->GetFrequency(idx3) + histogram->GetFrequency(idx4);
Loading