Sky2Pix_SlantOrthographic¶
-
class
astropy.modeling.projections.Sky2Pix_SlantOrthographic(xi=0.0, eta=0.0, **kwargs)[source] [edit on github]¶ Bases:
astropy.modeling.projections.Sky2PixProjection,astropy.modeling.projections.ZenithalSlant orthographic projection - sky to pixel.
Corresponds to the
SINprojection in FITS WCS.See
Zenithalfor a definition of the full transformation.The following transformation applies when \(\xi\) and \(\eta\) are both zero.
\[R_\theta = \frac{180^{\circ}}{\pi}\cos \theta\]But more specifically are:
\[\begin{split}x &= \frac{180^\circ}{\pi}[\cos \theta \sin \phi + \xi(1 - \sin \theta)] \\ y &= \frac{180^\circ}{\pi}[\cos \theta \cos \phi + \eta(1 - \sin \theta)]\end{split}\]Attributes Summary
etaparam_namesxiMethods Summary
evaluate(phi, theta, xi, eta)Attributes Documentation
-
eta¶
-
param_names= ('xi', 'eta')¶
-
xi¶
Methods Documentation
-
classmethod
evaluate(phi, theta, xi, eta)[source] [edit on github]¶
-