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
d63d06ae
Commit
d63d06ae
authored
3 years ago
by
Abdussalam SALEH MGHIR
Browse files
Options
Downloads
Patches
Plain Diff
STYLE : Update the commentary on otbSARDeramp.cxx
parent
d80ee984
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!52
Merge for v1.1.0
,
!43
Add TSX to SARDeramp
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/otbSARDeramp.cxx
+6
-4
6 additions, 4 deletions
app/otbSARDeramp.cxx
with
6 additions
and
4 deletions
app/otbSARDeramp.cxx
+
6
−
4
View file @
d63d06ae
...
...
@@ -58,12 +58,12 @@ namespace otb
void
DoInit
()
override
{
SetName
(
"SARDeramp"
);
SetDescription
(
"Deramping/Reramping of S1 IW Burst."
);
SetDescription
(
"Deramping/Reramping of S1 IW Burst
and TSX mono-burst
."
);
SetDocLongDescription
(
"This application does the deramping or reramping of S1 Iw burst."
);
SetDocLongDescription
(
"This application does the deramping or reramping of S1 Iw burst
and TSX mono-burst
."
);
//Optional descriptors
SetDocLimitations
(
"Only Sentinel 1 (IW and StripMap mode) and Cosmo products are supported for now."
);
SetDocLimitations
(
"Only Sentinel 1 (IW and StripMap mode)
, TSX
and Cosmo products are supported for now."
);
SetDocAuthors
(
"OTB-Team"
);
SetDocSeeAlso
(
" "
);
AddDocTag
(
Tags
::
SAR
);
...
...
@@ -71,7 +71,7 @@ namespace otb
//Parameter declarations
AddParameter
(
ParameterType_InputImage
,
"in"
,
"Input burst"
);
SetParameterDescription
(
"in"
,
"Input burst (from S1 Iw product)."
);
SetParameterDescription
(
"in"
,
"Input burst (from S1 Iw
or TSX
product)."
);
AddParameter
(
ParameterType_InputImage
,
"inslave"
,
"Input SAR slave image (for interferometry processing"
);
SetParameterDescription
(
"inslave"
,
"Slave SAR Image to extract SAR geometry (interferometry)."
);
...
...
@@ -169,6 +169,7 @@ namespace otb
std
::
string
sensorID
=
metadataInterface
->
GetSensorID
();
// Instanciate the Interferogram filter
if
(
sensorID
.
find
(
"TSX-1"
)
!=
std
::
string
::
npos
||
sensorID
.
find
(
"PAZ-1"
)
!=
std
::
string
::
npos
){
// It is a TSX product so we apply the SARDerampTSXImageFilter
DerampTSXFilterType
::
Pointer
filterDeramp
=
DerampTSXFilterType
::
New
();
m_Ref
.
push_back
(
filterDeramp
.
GetPointer
());
filterDeramp
->
SetDerampMode
(
derampMode
);
...
...
@@ -189,6 +190,7 @@ namespace otb
SetParameterOutputImage
(
"out"
,
filterDeramp
->
GetOutput
());
}
else
{
// It is S1 IW product so we apply the SARDerampS1IWImageFilter
DerampS1IWFilterType
::
Pointer
filterDeramp
=
DerampS1IWFilterType
::
New
();
m_Ref
.
push_back
(
filterDeramp
.
GetPointer
());
filterDeramp
->
SetDerampMode
(
derampMode
);
...
...
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