-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Colorbar with SymmetricalLogLocator now handles negative values (Pull request issue for #7202) #7211
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
Colorbar with SymmetricalLogLocator now handles negative values (Pull request issue for #7202) #7211
Changes from all commits
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 |
---|---|---|
|
@@ -2126,6 +2126,8 @@ def get_log_range(lo, hi): | |
a_range = get_log_range(t, -vmin + 1) | ||
else: | ||
a_range = get_log_range(-vmax, -vmin + 1) | ||
if vmin<0 and vmax<0: | ||
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 do not understand this logic 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. @tacaswell 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. but why does this only apply to negative values? |
||
a_range = ( a_range[0], a_range[1]+1 ) | ||
else: | ||
a_range = (0, 0) | ||
|
||
|
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.
Could be simplified to: