Healpy map2alm and alm2map inconsistency?
问题 I'm just starting to work with Healpy and have noticed that if I use a map to get alm's and then use those alm's to generate a new map, I do not get the map I started with. Here's what I'm looking at: import numpy as np import healpy as hp nside = 2 # healpix nside parameter m = np.arange(hp.nside2npix(nside)) # create a map to test alm = hp.map2alm(m) # compute alm's new_map = hp.alm2map(alm, nside) # create new map from computed alm's # Let's look at two maps print(m) [ 0 1 2 3 4 5 6 7 8 9