Skip to content

Commit

Permalink
debug create_plot
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Sommani committed Jan 21, 2025
1 parent 1e2a469 commit 815a078
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skyreader/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ def create_plot(
map_to_plot[plotting_map != 0.] = np.log10(
plotting_map[plotting_map != 0.]
)
#map_to_plot[plotting_map == 0.] = np.nan
print(np.min(map_to_plot), np.nanmin(map_to_plot))
map_to_plot[plotting_map == 0.] = np.nan
equatorial_map = np.ma.masked_invalid(equatorial_map)
map_to_plot = np.ma.masked_invalid(map_to_plot)

Expand Down

0 comments on commit 815a078

Please sign in to comment.