Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
diapotb
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
diapotb
Commits
90796a8f
Commit
90796a8f
authored
6 years ago
by
Gaëlle USSEGLIO
Browse files
Options
Downloads
Patches
Plain Diff
COMP : ParameterType_Bool instead of ParameterType_Empty
parent
0c66c68f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/otbSARCoRegistration.cxx
+1
-1
1 addition, 1 deletion
app/otbSARCoRegistration.cxx
app/otbSARDEMProjection.cxx
+3
-3
3 additions, 3 deletions
app/otbSARDEMProjection.cxx
with
4 additions
and
4 deletions
app/otbSARCoRegistration.cxx
+
1
−
1
View file @
90796a8f
...
...
@@ -118,7 +118,7 @@ namespace otb
SetParameterDescription
(
"out"
,
"Output Image : Coregistrated slave image into master geometry."
);
//TruncatePrunedTree
AddParameter
(
ParameterType_
Empty
,
"cint16"
,
"Set Output conversion with cInt16 to false"
);
AddParameter
(
ParameterType_
Bool
,
"cint16"
,
"Set Output conversion with cInt16 to false"
);
SetParameterDescription
(
"cint16"
,
"If true, then output conversion to cInt16."
);
AddRAMParameter
();
...
...
This diff is collapsed.
Click to expand it.
app/otbSARDEMProjection.cxx
+
3
−
3
View file @
90796a8f
...
...
@@ -78,13 +78,13 @@ private:
MandatoryOff
(
"infilemetadata"
);
// Empty parameters to allow more components into the projeted DEM
AddParameter
(
ParameterType_
Empty
,
"withh"
,
"Set H components into projection"
);
AddParameter
(
ParameterType_
Bool
,
"withh"
,
"Set H components into projection"
);
SetParameterDescription
(
"withh"
,
"If true, then H components into projection."
);
AddParameter
(
ParameterType_
Empty
,
"withxyz"
,
"Set XYZ Cartesian components into projection"
);
AddParameter
(
ParameterType_
Bool
,
"withxyz"
,
"Set XYZ Cartesian components into projection"
);
SetParameterDescription
(
"withxyz"
,
"If true, then XYZ Cartesian components into projection."
);
AddParameter
(
ParameterType_
Empty
,
"withsatpos"
,
"Set SatPos components into projection"
);
AddParameter
(
ParameterType_
Bool
,
"withsatpos"
,
"Set SatPos components into projection"
);
SetParameterDescription
(
"withsatpos"
,
"If true, then SatPos components into projection."
);
AddParameter
(
ParameterType_Int
,
"nodata"
,
"No Data values for the DEM"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment