Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sift
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SIFT
sift
Commits
3a9d45ea
Unverified
Commit
3a9d45ea
authored
7 years ago
by
David Hoese
Browse files
Options
Downloads
Patches
Plain Diff
Fix creating RGBs for all time steps when not all bands are specified
parent
f1255b66
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sift/model/document.py
+1
-1
1 addition, 1 deletion
sift/model/document.py
with
1 addition
and
1 deletion
sift/model/document.py
+
1
−
1
View file @
3a9d45ea
...
@@ -1159,7 +1159,7 @@ class Document(QObject): # base class is rightmost, mixins left of that
...
@@ -1159,7 +1159,7 @@ class Document(QObject): # base class is rightmost, mixins left of that
r
=
building_blocks
.
get
((
plat
,
inst
,
step
,
rband
),
None
)
r
=
building_blocks
.
get
((
plat
,
inst
,
step
,
rband
),
None
)
g
=
building_blocks
.
get
((
plat
,
inst
,
step
,
gband
),
None
)
g
=
building_blocks
.
get
((
plat
,
inst
,
step
,
gband
),
None
)
b
=
building_blocks
.
get
((
plat
,
inst
,
step
,
bband
),
None
)
b
=
building_blocks
.
get
((
plat
,
inst
,
step
,
bband
),
None
)
if
r
and
g
and
b
:
if
r
or
g
or
b
:
to_build
.
append
((
step
,
r
,
g
,
b
))
to_build
.
append
((
step
,
r
,
g
,
b
))
to_make_invisible
.
extend
([
r
,
g
,
b
])
to_make_invisible
.
extend
([
r
,
g
,
b
])
LOG
.
info
(
'
will build RGB from r=%s g=%s b=%s
'
%
(
r
,
g
,
b
))
LOG
.
info
(
'
will build RGB from r=%s g=%s b=%s
'
%
(
r
,
g
,
b
))
...
...
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