Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vasudevan, Rama K
pycroscopy
Commits
b05a7234
Commit
b05a7234
authored
Nov 06, 2017
by
syz
Browse files
Added a new function to create colorbars for line plots, fixed bug in single_img_cbar_plot
parent
f317844c
Changes
1
Hide whitespace changes
Inline
Side-by-side
pycroscopy/viz/plot_utils.py
View file @
b05a7234
...
...
@@ -39,27 +39,6 @@ if sys.version_info.major == 3:
default_cmap
=
plt
.
cm
.
viridis
def
get_cmap_object
(
cmap
):
"""
Get the matplotlib.colors.LinearSegmentedColormap object regardless of the input
Parameters
----------
cmap : String, or matplotlib.colors.LinearSegmentedColormap object (Optional)
Requested color map
Returns
-------
cmap : matplotlib.colors.LinearSegmentedColormap object
Requested / Default colormap object
"""
if
cmap
is
None
:
return
default_cmap
elif
isinstance
(
cmap
,
str
):
return
plt
.
get_cmap
(
cmap
)
return
cmap
def
set_tick_font_size
(
axes
,
font_size
):
"""
Sets the font size of the ticks in the provided axes
...
...
@@ -93,6 +72,54 @@ def set_tick_font_size(axes, font_size):
__set_axis_tick
(
axes
)
def
cbar_for_line_family
(
vmin
,
vmax
,
cmap
=
None
):
"""
Creates a scalar mappable object that can be used to create a color bar for non-image (e.g. - line) plots
Parameters
----------
vmin : float
Minimum value for colorbar
vmax : float
Maximum value for colorbar
cmap : colormap object
Colormap object to use
Returns
-------
sm : matplotlib.pyplot.cm.ScalarMappable object
The object that can used to create a colorbar via plt.colorbar(sm)
"""
if
cmap
is
None
:
cmap
=
default_cmap
sm
=
plt
.
cm
.
ScalarMappable
(
cmap
=
cmap
,
norm
=
plt
.
Normalize
(
vmin
=
vmin
,
vmax
=
vmax
))
# fake up the array of the scalar mappable
sm
.
_A
=
[]
return
sm
def
get_cmap_object
(
cmap
):
"""
Get the matplotlib.colors.LinearSegmentedColormap object regardless of the input
Parameters
----------
cmap : String, or matplotlib.colors.LinearSegmentedColormap object (Optional)
Requested color map
Returns
-------
cmap : matplotlib.colors.LinearSegmentedColormap object
Requested / Default colormap object
"""
if
cmap
is
None
:
return
default_cmap
elif
isinstance
(
cmap
,
str
):
return
plt
.
get_cmap
(
cmap
)
return
cmap
def
cmap_jet_white_center
():
"""
Generates the jet colormap with a white center
...
...
@@ -439,6 +466,7 @@ def single_img_cbar_plot(axis, img, show_xy_ticks=None, show_cbar=True, x_size=1
else
:
set_tick_font_size
(
axis
,
tick_font_size
)
cbar
=
None
if
show_cbar
:
# cbar = fig.colorbar(im_handle, ax=axis)
# divider = make_axes_locatable(axis)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment