In [1]:
%matplotlib inline
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
import healpy as hp
import healpy.projector as pro

In [2]:
map_in = hp.read_map("akari_WideL_1_1024.fits", nest = True)


NSIDE = 2048
ORDERING = NESTED in fits file

In [3]:
hp.mollview(map_in, title='AKARI All-Sky Map:', nest = True, norm = 'hist')



In [4]:
map_out = hp.sphtfunc.smoothing(map_out, fwhm = 0.017, iter = 1)


Sigma is 24.817903 arcmin (0.007219 rad) 
-> fwhm is 58.441695 arcmin
Sigma is 0.000000 arcmin (0.000000 rad) 
-> fwhm is 0.000000 arcmin

In [5]:
hp.mollview(map_out, title='AKARI All-Sky Map:', nest = True, norm = 'hist')



In [ ]: