Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
WASP
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
WASP
Merge requests
!29
Draft: Resolve "Adapt Algorithm depending on LC type"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve "Adapt Algorithm depending on LC type"
26-adapt-algorithm-depending-on-lc-type
into
develop
Overview
0
Commits
7
Pipelines
5
Changes
18
Open
Peter Kettig
requested to merge
26-adapt-algorithm-depending-on-lc-type
into
develop
2 years ago
Overview
0
Commits
7
Pipelines
5
Changes
18
Expand
Closes
#26
0
0
Merge request reports
Compare
develop
version 3
3d553f1b
2 years ago
version 2
ccda859b
2 years ago
version 1
665a662d
2 years ago
develop (HEAD)
and
latest version
latest version
9e19e2df
7 commits,
2 years ago
version 3
3d553f1b
6 commits,
2 years ago
version 2
ccda859b
5 commits,
2 years ago
version 1
665a662d
2 commits,
2 years ago
18 files
+
320
−
135
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
Code/Common/include/GlobalDefs.h
+
22
−
0
Options
@@ -112,6 +112,28 @@ typedef enum
LUT
//!< LUT directional correction
}
DirCorMode
;
/**
* @brief Cloud Mask types
*/
typedef
enum
{
MAJA
,
FMASK
}
CloudMaskType
;
/**
* @brief FMASK Values. Note that these are found empirically using FMask 4.6.
* They do not correspond to the official documentation.
*/
typedef
enum
{
FMASK_LAND
=
1
,
FMASK_WATER
=
5
,
FMASK_CLOUD
=
2
,
FMASK_SNOW
=
4
,
FMASK_CLOUDSHADOW
=
3
,
FMASK_NODATA
=
0
}
FMaskValue
;
/**
* @brief Used to determine whether the underlying structure has a size()-method or not.
Loading