Skip to content
Snippets Groups Projects
Unverified Commit 5a4fe81e authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony Committed by GitHub
Browse files

Merge pull request #28188 from mantidproject/28110_proj_recov_tile_plots

Project Recovery: Recover Tiled Plots Correctly
parents f6def76b 5404930e
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,8 @@ MantidWorkbench Changes ...@@ -8,6 +8,8 @@ MantidWorkbench Changes
Improvements Improvements
############ ############
- Tile plots are now reloaded correctly by project recovery.
Bugfixes Bugfixes
######## ########
......
...@@ -17,10 +17,10 @@ from matplotlib import axis, ticker # noqa ...@@ -17,10 +17,10 @@ from matplotlib import axis, ticker # noqa
from mantid import logger from mantid import logger
from mantid.api import AnalysisDataService as ADS from mantid.api import AnalysisDataService as ADS
from mantid.plots.legend import LegendProperties from mantid.plots.legend import LegendProperties
from mantid.plots.plotfunctions import create_subplots
# Constants set in workbench.plotting.functions but would cause backwards reliability # Constants set in workbench.plotting.functions but would cause backwards reliability
from mantidqt.plotting.functions import pcolormesh from mantidqt.plotting.functions import pcolormesh
SUBPLOT_WSPACE = 0.5 SUBPLOT_WSPACE = 0.5
SUBPLOT_HSPACE = 0.5 SUBPLOT_HSPACE = 0.5
...@@ -40,7 +40,8 @@ class PlotsLoader(object): ...@@ -40,7 +40,8 @@ class PlotsLoader(object):
# Catch all errors in here so it can fail silently-ish # Catch all errors in here so it can fail silently-ish
if isinstance(e, KeyboardInterrupt): if isinstance(e, KeyboardInterrupt):
raise KeyboardInterrupt(str(e)) raise KeyboardInterrupt(str(e))
logger.warning("A plot was unable to be loaded from the save file. Error: " + str(e)) logger.warning("A plot was unable to be loaded from the save file. Error: " +
str(e))
def make_fig(self, plot_dict, create_plot=True): def make_fig(self, plot_dict, create_plot=True):
""" """
...@@ -48,9 +49,7 @@ class PlotsLoader(object): ...@@ -48,9 +49,7 @@ class PlotsLoader(object):
:param plot_dict: dictionary; A dictionary of various items intended to recreate a figure :param plot_dict: dictionary; A dictionary of various items intended to recreate a figure
:param create_plot: Bool; whether or not to make the plot, or to return the figure. :param create_plot: Bool; whether or not to make the plot, or to return the figure.
:return: matplotlib.figure; Only returns if create_plot=False :return: matplotlib.figure; Only returns if create_plot=False
""" """ # Grab creation arguments
import matplotlib.pyplot as plt
# Grab creation arguments
creation_args = plot_dict["creationArguments"] creation_args = plot_dict["creationArguments"]
if len(creation_args) == 0: if len(creation_args) == 0:
...@@ -59,21 +58,16 @@ class PlotsLoader(object): ...@@ -59,21 +58,16 @@ class PlotsLoader(object):
"The original plot title was: {}".format(plot_dict["label"])) "The original plot title was: {}".format(plot_dict["label"]))
return return
# Make a copy so it can be applied to the axes, of the plot once created. fig, axes_matrix, _, _ = create_subplots(len(creation_args))
creation_args_copy = copy.deepcopy(creation_args[0]) axes_list = axes_matrix.flatten().tolist()
for ax, cargs_list in zip(axes_list, creation_args):
# Make initial plot creation_args_copy = copy.deepcopy(cargs_list)
fig, ax = plt.subplots(subplot_kw={'projection': 'mantid'}) for cargs in cargs_list:
if "workspaces" in cargs:
# If an overplot is necessary plot onto the same figure workspace_name = cargs.pop("workspaces")
for cargs in creation_args[0]: workspace = ADS.retrieve(workspace_name)
if "workspaces" in cargs: self.plot_func(workspace, ax, ax.figure, cargs)
workspace_name = cargs.pop('workspaces') ax.creation_args = creation_args_copy
workspace = ADS.retrieve(workspace_name)
self.plot_func(workspace, ax, ax.figure, cargs)
# Make sure that the axes gets it's creation_args as loading doesn't add them
ax.creation_args = creation_args_copy
# Update the fig # Update the fig
fig._label = plot_dict["label"] fig._label = plot_dict["label"]
...@@ -102,10 +96,20 @@ class PlotsLoader(object): ...@@ -102,10 +96,20 @@ class PlotsLoader(object):
if "cmap" in creation_arg: if "cmap" in creation_arg:
creation_arg["cmap"] = getattr(matplotlib.cm, creation_arg["cmap"]) creation_arg["cmap"] = getattr(matplotlib.cm, creation_arg["cmap"])
function_dict = {"plot": axes.plot, "scatter": axes.scatter, "errorbar": axes.errorbar, function_dict = {
"pcolor": axes.pcolor, "pcolorfast": axes.pcolorfast, "pcolormesh": pcolormesh, "plot": axes.plot,
"imshow": pcolormesh, "contour": axes.contour, "contourf": axes.contourf, "scatter": axes.scatter,
"tripcolor": axes.tripcolor, "tricontour": axes.tricontour, "tricontourf": axes.tricontourf} "errorbar": axes.errorbar,
"pcolor": axes.pcolor,
"pcolorfast": axes.pcolorfast,
"pcolormesh": pcolormesh,
"imshow": pcolormesh,
"contour": axes.contour,
"contourf": axes.contourf,
"tripcolor": axes.tripcolor,
"tricontour": axes.tricontour,
"tricontourf": axes.tricontourf
}
func = function_dict[function_to_call] func = function_dict[function_to_call]
# Plotting is done via an Axes object unless a colorbar needs to be added # Plotting is done via an Axes object unless a colorbar needs to be added
...@@ -124,6 +128,8 @@ class PlotsLoader(object): ...@@ -124,6 +128,8 @@ class PlotsLoader(object):
except IndexError as e: except IndexError as e:
if not self.color_bar_remade: if not self.color_bar_remade:
raise IndexError(e) raise IndexError(e)
except KeyError:
logger.notice("Not adding data to blank axis.")
@staticmethod @staticmethod
def restore_fig_properties(fig, dic): def restore_fig_properties(fig, dic):
...@@ -178,14 +184,16 @@ class PlotsLoader(object): ...@@ -178,14 +184,16 @@ class PlotsLoader(object):
ax.text(x=dic["position"][0], ax.text(x=dic["position"][0],
y=dic["position"][1], y=dic["position"][1],
s=dic["text"], s=dic["text"],
fontdict={u'alpha': style_dic["alpha"], fontdict={
u'color': style_dic["color"], u'alpha': style_dic["alpha"],
u'rotation': style_dic["rotation"], u'color': style_dic["color"],
u'fontsize': style_dic["textSize"], u'rotation': style_dic["rotation"],
u'zorder': style_dic["zOrder"], u'fontsize': style_dic["textSize"],
u'usetex': dic["useTeX"], u'zorder': style_dic["zOrder"],
u'horizontalalignment': style_dic["hAlign"], u'usetex': dic["useTeX"],
u'verticalalignment': style_dic["vAlign"]}) u'horizontalalignment': style_dic["hAlign"],
u'verticalalignment': style_dic["vAlign"]
})
@staticmethod @staticmethod
def update_lines(ax, line): def update_lines(ax, line):
...@@ -301,8 +309,9 @@ class PlotsLoader(object): ...@@ -301,8 +309,9 @@ class PlotsLoader(object):
try: try:
image.axes.set_cmap(cm.get_cmap(dic["cmap"])) image.axes.set_cmap(cm.get_cmap(dic["cmap"]))
except AttributeError as e: except AttributeError as e:
logger.debug("PlotsLoader - The Image accessed did not have an axes with the ability to set the cmap: " logger.debug(
+ str(e)) "PlotsLoader - The Image accessed did not have an axes with the ability to set the cmap: "
+ str(e))
# Redraw # Redraw
image.axes.figure.canvas.draw() image.axes.figure.canvas.draw()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment