-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gllssi2isis Original Label Fix #3226
Changes from 2 commits
d415371
d90e56a
3a6975f
da361fc
aabdb80
fd7ab53
cc1ba4d
a265340
415e661
3be6073
d648113
7c7a93f
a6ea2c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,8 +109,8 @@ void IsisMain() { | |
p.StartProcess(); | ||
} | ||
else { | ||
// CubeAttributeOutput att = ui.GetOutputAttribute("TO"); | ||
summedOutput = p.SetOutputCube("TO", p.Samples() / 2, p.Lines() / 2, p.Bands()); | ||
p.SetDimensions(p.Samples() / 2, p.Lines() / 2, p.Bands()); | ||
summedOutput = p.SetOutputCube("TO"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ocube = p.SetOutputCube("TO"); ? Do we need summedOutput now...? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just noticed that summedOutput is being used further down. Is that why we still need to instantiate it here? |
||
ocube = summedOutput; | ||
p.StartProcess(translateData); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was removed due to me clobbering the changes I had made to the ProcessImport files. WIll re-add
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍