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)
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)
In [5]:
hp.mollview(map_out, title='AKARI All-Sky Map:', nest = True, norm = 'hist')
In [ ]: