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
48ff702c
Commit
48ff702c
authored
3 years ago
by
Gaëlle USSEGLIO
Browse files
Options
Downloads
Plain Diff
Merge branch 'v1.1.0' into python_TSX
parents
fa854883
7fb83858
No related branches found
Branches containing commit
Tags
1.1.0_beta_2
Tags containing commit
2 merge requests
!52
Merge for v1.1.0
,
!47
TSX/PAZ/TDX processing in python_src
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/otbSARDerampTSXImageFilter.h
+1
-1
1 addition, 1 deletion
include/otbSARDerampTSXImageFilter.h
include/otbSARDerampTSXImageFilter.txx
+4
-4
4 additions, 4 deletions
include/otbSARDerampTSXImageFilter.txx
with
5 additions
and
5 deletions
include/otbSARDerampTSXImageFilter.h
+
1
−
1
View file @
48ff702c
...
...
@@ -54,7 +54,7 @@
namespace
otb
{
/** \class SARDerampImageFilter
/** \class SARDeramp
TSX
ImageFilter
* \brief Deramps or Reramps a TSX product.
*
* This filter deramps or reramps an input mono-burst.
...
...
This diff is collapsed.
Click to expand it.
include/otbSARDerampTSXImageFilter.txx
+
4
−
4
View file @
48ff702c
...
...
@@ -71,14 +71,14 @@ namespace otb
::setPolynomeFMRate(ImageKeywordlist const& kwl, std::vector<FMRateRecordType> & FMRateRecords)
{
char fmRatePrefix_[1024];
std::size_t firstInd(1);
std::size_t nbLists(0);
nbLists = std::stoi(kwl.GetMetadataByKey("azimuthFmRate.azi_fm_rate_coef_nb_list"));
std::string FM_PREFIX = "azimuthFmRate.azi_fm_rate_coef_list";
//set coefficient for 1st polynome FMRate
const int pos1 = sprintf(fmRatePrefix_, "%s%zu.", FM_PREFIX.c_str(),
1
);
const int pos1 = sprintf(fmRatePrefix_, "%s%zu.", FM_PREFIX.c_str(),
firstInd
);
assert(pos1 > 0 && (unsigned long) pos1 < sizeof(fmRatePrefix_));
const std::string FMPrefix1(fmRatePrefix_, pos1);
FMRateRecordType fmRateRecord1;
...
...
@@ -100,14 +100,14 @@ namespace otb
::setPolynomeDCF(ImageKeywordlist const& kwl, std::vector<DCFRecordType> & DCFRecords)
{
char dcfPrefix_[1024];
std::size_t firstInd(1);
std::size_t nbLists(0);
nbLists = std::stoi(kwl.GetMetadataByKey("dopplerCentroid.dop_coef_nb_list"));
std::string DCF_PREFIX = "dopplerCentroid.dop_coef_list";
//set coefficients for 1st polynome DCF
const int pos1 = sprintf(dcfPrefix_, "%s%zu.", DCF_PREFIX.c_str(),
1
);
const int pos1 = sprintf(dcfPrefix_, "%s%zu.", DCF_PREFIX.c_str(),
firstInd
);
assert(pos1 > 0 && (unsigned long) pos1 < sizeof(dcfPrefix_));
const std::string DCFPrefix1(dcfPrefix_, pos1);
DCFRecordType dcfRecord1;
...
...
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