Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Ensure name in set_cmap is contained in cmap_d#17012
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -56,7 +56,7 @@ | ||
import numpy as np | ||
# We may not need the following imports here: | ||
from matplotlib.colors import Normalize, Colormap | ||
from matplotlib.lines import Line2D | ||
from matplotlib.text import Text, Annotation | ||
from matplotlib.patches import Polygon, Rectangle, Circle, Arrow | ||
@@ -2069,11 +2069,17 @@ def set_cmap(cmap): | ||
matplotlib.cm.register_cmap | ||
matplotlib.cm.get_cmap | ||
""" | ||
cbook._check_isinstance((str, Colormap), cmap=cmap) | ||
if isinstance(cmap, str): | ||
name = cmap | ||
cmap = get_cmap(name) | ||
rc('image', cmap=name) | ||
elif isinstance(cmap, Colormap): | ||
if cmap.name not in cm.cmap_d.keys(): | ||
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. You don't need the | ||
register_cmap(cmap.name, cmap) | ||
rc('image', cmap=cmap.name) | ||
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. Here you could get into another tricky situation. Say someone hasalready registered a different Colormap under the same name. So, the cmap.name is in the dictionary already, but it is actually pointing to a different colormap and this wouldn't set the global cmap to what you're expecting either. 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. Ah, this is tricky. Perhaps: ifcmap.namenotincm.cmap_d:register_cmap(cmap.name,cmap)elifcmapisnotget_cmap(cmap.name):raisesomesortoferror/warning and in that error/warning explain that they should use Also good to note that as originally written this function falls into the same trap. Though I suppose it's not super desirable to maintain backwards compatibility with a silent bug. 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. Agreed, something like this would be desirable going forward to make it a little more clear what is going on and raising rather than silently doing something unexpected! | ||
im = gci() | ||
if im is not None: | ||
im.set_cmap(cmap) | ||