This commit is contained in:
2024-04-13 18:23:59 +03:00
parent bbdf6a3420
commit 3a14bfb46f
9 changed files with 505 additions and 4 deletions

View File

@@ -131,7 +131,7 @@ for i in range(sx):
# Calculate the percentiles across the x and y dimension
perc = np.percentile(sem_map, sem_cut, axis=(0, 1), keepdims=False)
print("{}: {}% cut of SEM map: {:.2f} mCrab".format(enkey,sem_cut,perc))
print("{} {}: {}% cut of SEM map: {:.2f} mCrab".format(key,enkey,sem_cut,perc))
idx=np.where(sem_map > perc)
mean_map[idx]=0.0