Reputation: 434
I'm studying healpy. Specifically I am interested in map2alm and alm2map: I found question where example of applying the functions "to both sides" (in answer) is provided. As we can see, we get significant errors in comparison with the original map after applying map2alm and alm2map consecutively.Therefore I want to control these errors. So my question is:
Upvotes: 2
Views: 347
Reputation: 8773
No, there is no other way.
Going from real space to harmonic space is like doing a Fast Fourier Transform. If you don't have enough time resolution, your FFT is not going to be very good, there is just not enough information to have an accurate representation is frequency domain.
Here is the same, the only way you are going to have a low error at low nside is if you have a signal that is easily represented in harmonic space, for example a pure dipole, see this notebook, even at just nside 8, error is at 1/1000:
http://nbviewer.jupyter.org/gist/zonca/2f87cb19ca8293539947b0d4aeca42b2
Upvotes: 1