Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
let-it-snow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Remote Modules
let-it-snow
Merge requests
!50
Resolve "Forbid having zs not in range [-413; 8850]"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Forbid having zs not in range [-413; 8850]"
65-forbid-having-zs-inferior-to-413
into
release-1.6
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Aurore Dupuis
requested to merge
65-forbid-having-zs-inferior-to-413
into
release-1.6
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Closes
#65 (closed)
Edited
4 years ago
by
Aurore Dupuis
0
0
Merge request reports
Compare
release-1.6
release-1.6 (base)
and
latest version
latest version
7215d526
1 commit,
4 years ago
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/histo_utils.cxx
+
6
−
0
Options
@@ -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