1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
SUBROUTINE sla_DS2TP (RA, DEC, RAZ, DECZ, XI, ETA, J)
*+
* - - - - - -
* D S 2 T P
* - - - - - -
*
* Projection of spherical coordinates onto tangent plane:
* "gnomonic" projection - "standard coordinates" (double precision)
*
* Given:
* RA,DEC dp spherical coordinates of point to be projected
* RAZ,DECZ dp spherical coordinates of tangent point
*
* Returned:
* XI,ETA dp rectangular coordinates on tangent plane
* J int status: 0 = OK, star on tangent plane
* 1 = error, star too far from axis
* 2 = error, antistar on tangent plane
* 3 = error, antistar too far from axis
*
* P.T.Wallace Starlink 18 July 1996
*
* Copyright (C) 1996 Rutherford Appleton Laboratory
*-
IMPLICIT NONE
DOUBLE PRECISION RA,DEC,RAZ,DECZ,XI,ETA
INTEGER J
DOUBLE PRECISION SDECZ,SDEC,CDECZ,CDEC,
: RADIF,SRADIF,CRADIF,DENOM
DOUBLE PRECISION TINY
PARAMETER (TINY=1D-6)
* Trig functions
SDECZ=SIN(DECZ)
SDEC=SIN(DEC)
CDECZ=COS(DECZ)
CDEC=COS(DEC)
RADIF=RA-RAZ
SRADIF=SIN(RADIF)
CRADIF=COS(RADIF)
* Reciprocal of star vector length to tangent plane
DENOM=SDEC*SDECZ+CDEC*CDECZ*CRADIF
* Handle vectors too far from axis
IF (DENOM.GT.TINY) THEN
J=0
ELSE IF (DENOM.GE.0D0) THEN
J=1
DENOM=TINY
ELSE IF (DENOM.GT.-TINY) THEN
J=2
DENOM=-TINY
ELSE
J=3
END IF
* Compute tangent plane coordinates (even in dubious cases)
XI=CDEC*SRADIF/DENOM
ETA=(SDEC*CDECZ-CDEC*SDECZ*CRADIF)/DENOM
END
|