美文网首页
healpy transfer ra,dec to pixel

healpy transfer ra,dec to pixel

作者: uurr | 来源:发表于2020-05-08 23:27 被阅读0次

'''
def IndexToDeclRa(index):
theta,phi=hp.pixelfunc.pix2ang(NSIDE,index)
return -np.degrees(theta-pi/2.),np.degrees(pi*2.-phi)

def DeclRaToIndex(decl,RA):
return hp.pixelfunc.ang2pix(NSIDE,np.radians(-decl+90.),np.radians(360.-RA))
'''

相关文章

网友评论

      本文标题:healpy transfer ra,dec to pixel

      本文链接:https://www.haomeiwen.com/subject/atpcnhtx.html