Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Sommani committed Sep 13, 2024
1 parent a67f8a9 commit 83bf850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyreader/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def bounding_box(ra, dec, theta, phi):
grid_value = healpy.get_interp_val(
equatorial_map, np.pi/2 - grid_dec, grid_ra
)
grid_value[np.isnan(grid_value[grid_value])]=min_map
grid_value[np.isnan(grid_value)]=min_map
grid_value = grid_value.clip(min_map, None)
sorted_values = np.sort(equatorial_map)[::-1]

Expand Down

0 comments on commit 83bf850

Please sign in to comment.