We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dab470 commit a4fb2acCopy full SHA for a4fb2ac
skyreader/utils/handle_map_data.py
@@ -118,7 +118,8 @@ def extract_map(
118
119
# if the probability is less than ~1e-300 this is set to 0
120
# because of the float64 data format
121
- min_map = np.nanmin(equatorial_map[equatorial_map > 0.])
+ min_map = np.nanmin(equatorial_map)
122
+ # min_map = np.nanmin(equatorial_map[equatorial_map > 0.])
123
# equatorial_map[equatorial_map == 0.] = min_map
124
125
if angular_error_floor is not None:
0 commit comments