In the tangent plane projection, given the star's rectangular coordinates and the direction cosines of the tangent point, solve for the direction cosines of the star.
Status: support routine.
The tangent plane projection is also called the "gnomonic projection" and the "central projection".
The eta axis points due north in the adopted coordinate system. If the direction cosines represent observed (RA,Dec), the tangent plane coordinates (xi,eta) are conventionally called the "standard coordinates". If the direction cosines are with respect to a right-handed triad, (xi,eta) are also right-handed. The units of (xi,eta) are, effectively, radians at the tangent point.
The method used is to complete the star vector in the (xi,eta) based triad and normalize it, then rotate the triad to put the tangent point at the pole with the x-axis aligned to zero longitude. Writing (a0,b0) for the celestial spherical coordinates of the tangent point, the sequence of rotations is (b0-pi/2) around the x-axis followed by (-a0-pi/2) around the z-axis.
If vector V0 is not of unit length, the returned vector V will be wrong.
If vector V0 points at a pole, the returned vector V will be based on the arbitrary assumption that the longitude coordinate of the tangent point is zero.
This routine is a member of the following set:
spherical vector solve for
TPXES TPXEV xi,eta
TPSTS > TPSTV < star
TPORS TPORV origin
Calabretta M.R. & Greisen, E.W., 2002, "Representations of celestial coordinates in FITS", Astron.Astrophys. 395, 1077
Green, R.M., "Spherical Astronomy", Cambridge University Press, 1987, Chapter 13.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | xi | rectangular coordinates of star image (Note 2) |
||
real(kind=wp), | intent(in) | :: | eta | rectangular coordinates of star image (Note 2) |
||
real(kind=wp), | intent(in), | dimension(3) | :: | v0 | tangent point's direction cosines (Note 4) |
|
real(kind=wp), | intent(out), | dimension(3) | :: | v | star's direction cosines |
subroutine TPSTV ( xi, eta, v0, v )
implicit none
real(wp),intent(in) :: xi !! rectangular coordinates of star image (Note 2)
real(wp),intent(in) :: eta !! rectangular coordinates of star image (Note 2)
real(wp),dimension(3),intent(in) :: v0 !! tangent point's direction cosines (Note 4)
real(wp),dimension(3),intent(out) :: v !! star's direction cosines
real(wp) :: x, y, z, r, f
! Tangent point.
x = v0(1)
y = v0(2)
z = v0(3)
! Deal with polar case.
r = sqrt(x*x+y*y)
if ( r == 0.0_wp ) then
r = 1e-20_wp
x = r
end if
! Star vector length to tangent plane.
f = sqrt(1.0_wp+xi*xi+eta*eta)
! Apply the transformation and normalize.
v(1) = ( x - (xi*y+eta*x*z) / r ) / f
v(2) = ( y + (xi*x-eta*y*z) / r ) / f
v(3) = ( z + eta*r ) / f
end subroutine TPSTV