1

当我沿经度或纬度旋转 Healpix 地图时,我得到了错误的行为。我可能在这里遗漏了一些明显的东西,但到目前为止,我找不到什么。

见演示:

import numpy as np
import healpy as hp
import matplotlib.pyplot as plt

nside = 4
npix = hp.nside2npix(nside)

idx = 70
offset = 1 # rad

# set one pixel to 1 in the map
data = np.array(np.equal(np.arange(npix), idx), dtype=float)

hp.mollview(data, nest=True, title='original')

# longitude and co-latitude in radians
theta, phi = hp.pix2ang(nside, np.arange(npix), nest=True)

# rotate: offset on longitude, keep co-latitude the same
rotated = hp.get_interp_val(data, theta + offset, phi, nest=True)

hp.mollview(rotated, nest=True, title='rotated longitude')

# rotate: keep longitude the same, offset on co-latitude
rotated = hp.get_interp_val(data, theta, phi+offset, nest=True)

hp.mollview(rotated, nest=True, title='rotated latitude')

和结果:

地图中沿经度旋转的点是垂直平移的,而沿纬度旋转的则是水平平移的。我期待相反的情况。

关于这里有什么问题的任何提示?

E.

4

1 回答 1

1

Theta是同纬度,Phi是经度。这令人困惑,因为它们的顺序与我们通常预期的相反。事实上,即使在 中healpy,例如在pix2ang中,如果您设置lonlat为 true,您将首先获得经度,然后是纬度作为输出。不幸的是,这是惯例,我们必须坚持这一点。

于 2018-12-06T16:05:47.997 回答