@@ -66,7 +66,7 @@ def mapper_plotter_from(self, mapper_index: int) -> MapperPlotter:
6666 visuals_2d = self .visuals_2d ,
6767 )
6868
69- def figures_2d (self , reconstructed_image : bool = False ):
69+ def figures_2d (self , reconstructed_operated_data : bool = False ):
7070 """
7171 Plots the individual attributes of the plotter's `Inversion` object in 2D.
7272
@@ -75,23 +75,23 @@ def figures_2d(self, reconstructed_image: bool = False):
7575
7676 Parameters
7777 ----------
78- reconstructed_image
78+ reconstructed_operated_data
7979 Whether to make a 2D plot (via `imshow`) of the reconstructed image data.
8080 """
81- if reconstructed_image :
81+ if reconstructed_operated_data :
8282 self .mat_plot_2d .plot_array (
83- array = self .inversion .mapped_reconstructed_image ,
83+ array = self .inversion .mapped_reconstructed_operated_data ,
8484 visuals_2d = self .visuals_2d ,
8585 auto_labels = AutoLabels (
86- title = "Reconstructed Image" , filename = "reconstructed_image "
86+ title = "Reconstructed Image" , filename = "reconstructed_operated_data "
8787 ),
8888 )
8989
9090 def figures_2d_of_pixelization (
9191 self ,
9292 pixelization_index : int = 0 ,
9393 data_subtracted : bool = False ,
94- reconstructed_image : bool = False ,
94+ reconstructed_operated_data : bool = False ,
9595 reconstruction : bool = False ,
9696 reconstruction_noise_map : bool = False ,
9797 signal_to_noise_map : bool = False ,
@@ -112,7 +112,7 @@ def figures_2d_of_pixelization(
112112 ----------
113113 pixelization_index
114114 The index of the `Mapper` in the `Inversion`'s `linear_obj_list` that is plotted.
115- reconstructed_image
115+ reconstructed_operated_data
116116 Whether to make a 2D plot (via `imshow`) of the mapper's reconstructed image data.
117117 reconstruction
118118 Whether to make a 2D plot (via `imshow` or `fill`) of the mapper's source-plane reconstruction.
@@ -160,8 +160,8 @@ def figures_2d_of_pixelization(
160160 except AttributeError :
161161 pass
162162
163- if reconstructed_image :
164- array = self .inversion .mapped_reconstructed_image_dict [
163+ if reconstructed_operated_data :
164+ array = self .inversion .mapped_reconstructed_operated_data_dict [
165165 mapper_plotter .mapper
166166 ]
167167
@@ -170,7 +170,7 @@ def figures_2d_of_pixelization(
170170 visuals_2d = self .visuals_2d ,
171171 grid_indexes = mapper_plotter .mapper .over_sampler .uniform_over_sampled ,
172172 auto_labels = AutoLabels (
173- title = "Reconstructed Image" , filename = "reconstructed_image "
173+ title = "Reconstructed Image" , filename = "reconstructed_operated_data "
174174 ),
175175 )
176176
@@ -320,14 +320,14 @@ def subplot_of_mapper(
320320 )
321321
322322 self .figures_2d_of_pixelization (
323- pixelization_index = mapper_index , reconstructed_image = True
323+ pixelization_index = mapper_index , reconstructed_operated_data = True
324324 )
325325
326326 self .mat_plot_2d .use_log10 = True
327327 self .mat_plot_2d .contour = False
328328
329329 self .figures_2d_of_pixelization (
330- pixelization_index = mapper_index , reconstructed_image = True
330+ pixelization_index = mapper_index , reconstructed_operated_data = True
331331 )
332332
333333 self .mat_plot_2d .use_log10 = False
@@ -340,7 +340,7 @@ def subplot_of_mapper(
340340
341341 self .set_title (label = "Mesh Pixel Grid Overlaid" )
342342 self .figures_2d_of_pixelization (
343- pixelization_index = mapper_index , reconstructed_image = True
343+ pixelization_index = mapper_index , reconstructed_operated_data = True
344344 )
345345 self .set_title (label = None )
346346
@@ -424,7 +424,7 @@ def subplot_mappings(
424424 self .visuals_2d .indexes = indexes
425425
426426 self .figures_2d_of_pixelization (
427- pixelization_index = pixelization_index , reconstructed_image = True
427+ pixelization_index = pixelization_index , reconstructed_operated_data = True
428428 )
429429
430430 self .figures_2d_of_pixelization (
0 commit comments