Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
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
Main Repositories
otb
Merge requests
!594
Fix typo in ossimCosmoSkymedModel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix typo in ossimCosmoSkymedModel
nit-rastercout
into
develop
Overview
4
Commits
2
Pipelines
8
Changes
2
Merged
Laurențiu Nicola
requested to merge
nit-rastercout
into
develop
5 years ago
Overview
4
Commits
2
Pipelines
8
Changes
2
Expand
Spotted in
!508 (merged)
. We could also drop the local variable, I'm not sure what's preferred.
2
0
Merge request reports
Compare
develop
version 3
33b193e0
5 years ago
version 2
24a2d5f5
5 years ago
version 1
b2944137
5 years ago
develop (base)
and
latest version
latest version
42fbe44b
2 commits,
5 years ago
version 3
33b193e0
25 commits,
5 years ago
version 2
24a2d5f5
2 commits,
5 years ago
version 1
b2944137
1 commit,
5 years ago
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp
+
2
−
2
Options
@@ -268,10 +268,10 @@ namespace ossimplugins
}
}
int
nbRasterCout
=
dataset
->
GetRasterCount
();
int
nbRasterCou
n
t
=
dataset
->
GetRasterCount
();
// Metadata for each Band
for
(
int
iBand
=
0
;
iBand
<
dataset
->
Get
RasterCount
()
;
iBand
++
)
for
(
int
iBand
=
0
;
iBand
<
nb
RasterCount
;
iBand
++
)
{
std
::
map
<
std
::
string
,
std
::
string
>
mapCurrentBand
;
Loading