Pix2Sky_ConicPerspective

class astropy.modeling.projections.Pix2Sky_ConicPerspective(*args, **kwargs)[source]

Bases: astropy.modeling.projections.Pix2SkyProjection, astropy.modeling.projections.Conic

Colles’ conic perspective projection - pixel to sky.

Corresponds to the COP projection in FITS WCS.

See Conic for a description of the entire equation.

The projection formulae are:

\[\begin{split}C &= \sin \theta_a \\ R_\theta &= \frac{180^\circ}{\pi} \cos \eta [ \cot \theta_a - \tan(\theta - \theta_a)] \\ Y_0 &= \frac{180^\circ}{\pi} \cos \eta \cot \theta_a\end{split}\]
Parameters
sigmafloat

\((\theta_1 + \theta_2) / 2\), where \(\theta_1\) and \(\theta_2\) are the latitudes of the standard parallels, in degrees. Default is 90.

deltafloat

\((\theta_1 - \theta_2) / 2\), where \(\theta_1\) and \(\theta_2\) are the latitudes of the standard parallels, in degrees. Default is 0.

Methods Summary

evaluate(x, y, sigma, delta)

Evaluate the model on some input variables.

Methods Documentation

classmethod evaluate(x, y, sigma, delta)[source]

Evaluate the model on some input variables.