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
- Add `dpi` key to `visualize/general.yaml` (default 150) so save_figure reads
DPI from config rather than hardcoding 300
- Fix Delaunay source-plane aspect ratio to match rectangular: pass extent to
_plot_delaunay and call ax.set_aspect(x_range/y_range, adjustable="box")
- Fix tick-label 1e-16 noise: after rounding, clamp values < 1e-10 of scale to
zero in _round_ticks so symmetric extents don't show scientific notation
- Add vmin/vmax parameters to plot_mapper, forwarded to
plot_inversion_reconstruction
- In subplot_of_mapper, compute recon_vmax from the reconstructed image and
pass to both source-plane panels so Zoom and No-Zoom share a colorbar scale
Co-Authored-By: Claude Sonnet 4.6 <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
@@ -1,5 +1,6 @@
1
1
general:
2
2
backend: default # The matplotlib backend used for visualization. `default` uses the system default, can specify specific backend (e.g. TKAgg, Qt5Agg, WXAgg).
3
+
dpi: 150# Resolution in dots per inch used when saving figures. Lower values reduce file size (e.g. 150 gives ~50% smaller files than 300 with negligible quality loss for diagnostic subplots).
3
4
imshow_origin: upper # The `origin` input of `imshow`, determining if pixel values are ascending or descending on the y-axis.
4
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).
5
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.
0 commit comments