You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make output_format configurable, default to "show" for interactive display
Add output_format config option to visualize/general.yaml so users get
interactive matplotlib windows by default instead of silently saving PNGs.
Tests pass output_format="png" explicitly.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: autoarray/config/visualize/general.yaml
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ general:
5
5
log10_min_value: 1.0e-4# If negative values are being plotted on a log10 scale, values below this value are rounded up to it (e.g. to remove negative values).
6
6
log10_max_value: 1.0e99# If positive values are being plotted on a log10 scale, values above this value are rounded down to it.
7
7
zoom_around_mask: true # If True, plots of data structures with a mask automatically zoom in the masked region.
8
+
output_format: show # Default output format: "show" displays the figure interactively via plt.show(), "png"/"pdf"/etc. saves to file.
8
9
inversion:
9
10
reconstruction_vmax_factor: 0.5
10
11
total_mappings_pixels: 8# The number of source pixels used when plotting the subplot_mappings of a pixelization.
0 commit comments