You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In map.to_fit, currently the CRVALs are set via self.header["CRVAL1"] = np.radians(self.center[0]), but self.center is already in units of radians. Instead, I think this should be self.header["CRVAL1"] = np.rad2deg(self.center[0]) no match the units in the header. Same with self.header["CDELT1"]
The text was updated successfully, but these errors were encountered:
In
map.to_fit
, currently the CRVALs are set viaself.header["CRVAL1"] = np.radians(self.center[0])
, butself.center
is already in units of radians. Instead, I think this should beself.header["CRVAL1"] = np.rad2deg(self.center[0])
no match the units in the header. Same withself.header["CDELT1"]
The text was updated successfully, but these errors were encountered: