File: superga2.cpp

package info (click to toggle)
pluto-lunar 0.0~git20180825.e34c1d1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,584 kB
  • sloc: cpp: 18,100; makefile: 653; ansic: 368
file content (107 lines) | stat: -rw-r--r-- 4,064 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* superga2.cpp: code to compute a supergalactic-to-J2000 matrix

Copyright (C) 2010, Project Pluto

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.    */
#include <math.h>
#include <stdio.h>

/* Running the following code produces a J2000 to supergalactic
   coordinate matrix,  which looks as follows:

 0.37501548  0.34135896  0.86188018
-0.89832046 -0.09572714  0.42878511
 0.22887497 -0.93504565  0.27075058

   Written in reply to an inquiry from Christopher Watson;  see

http://groups.yahoo.com/group/amastro/message/13964

   The code in 'supergal.cpp' gets a similar result,  using equatorial values
for the position of the supergalactic plane.  However,  the RA/dec values
given are not exact (given to one-second precision,  or 15-arcsec precision,
in RA.)  This method ought to be "exact".

   At the end,  it gives the coordinates for the SG north pole and zero
point in J2000 to full precision,  in decimal and base-60,  as

  2.82067484   02h 49m 14.4294s   (RA of zero point, SGL = SGB = 0)
 59.52834978  +59 31' 42.0592"    (dec of zero point, SGL = SGB = 0)
 18.91693936   18h 55m  0.9817s   (RA of SG north pole, SGB = 90)
 15.70893553  +15 42' 32.1679"    (dec of SG north pole)
*/

#define PI 3.1415926535897932384626433832795028841971693993751058209749445923
#define NORTH_POLE_LAT (6.32 * PI / 180.)
#define NORTH_POLE_LON (47.37 * PI / 180.)
#define ZERO_POINT_LON (137.37 * PI / 180.)

               /* The following matrix comes from _The Hipparcos & Tycho */
               /* Catalogues:  Introduction & Guide to the Data_, p 92:  */
static const double galactic_to_j2000[9] = {
      -.0548755604, -.8734370902, -.4838350155,
       .4941094279, -.4448296300,  .7469822445,
      -.8676661490, -.1980763734,  .4559837762 };

int main( const int unused_argc, const char **unused_argv)
{
   double matrix[9], rotation[9];
   int i, j;

            /* vector pointing toward (supergalactic) lat=lon=0: */
   rotation[0] = cos( ZERO_POINT_LON);
   rotation[1] = sin( ZERO_POINT_LON);
   rotation[2] = 0.;

            /* vector pointing toward the north supergalactic pole: */
   rotation[6] = cos( NORTH_POLE_LON) * cos( NORTH_POLE_LAT);
   rotation[7] = sin( NORTH_POLE_LON) * cos( NORTH_POLE_LAT);
   rotation[8] = sin( NORTH_POLE_LAT);

   rotation[3] = -cos( NORTH_POLE_LON) * sin( NORTH_POLE_LAT);
   rotation[4] = -sin( NORTH_POLE_LON) * sin( NORTH_POLE_LAT);
   rotation[5] = cos( NORTH_POLE_LAT);

   for( i = 0; i < 3; i++)
      for( j = 0; j < 3; j++)
         matrix[j + i * 3] =
                  rotation[i * 3] * galactic_to_j2000[j]
                + rotation[i * 3 + 1] * galactic_to_j2000[j + 3]
                + rotation[i * 3 + 2] * galactic_to_j2000[j + 6];

   printf( "%11.8lf %11.8lf %11.8lf\n", matrix[0], matrix[1], matrix[2]);
   printf( "%11.8lf %11.8lf %11.8lf\n", matrix[3], matrix[4], matrix[5]);
   printf( "%11.8lf %11.8lf %11.8lf\n", matrix[6], matrix[7], matrix[8]);
   printf( "\n");

   for( i = 0; i < 4; i++)
      {
      double oval, tval, sec;
      int deg, min;

      j = (i / 2) * 6;
      if( i % 2 == 0)
         oval = atan2( -matrix[j + 1], -matrix[j]) * 12. / PI + 12.;
      else
         oval = asin( matrix[j + 2]) * 180. / PI;
      deg = (int)oval;
      tval = (oval - (double)deg) * 60.;
      min = (int)tval;
      sec = (tval - (double)min) * 60.;
      printf( "%12.8lf   %02d %02d %7.4lf\n", oval, deg, min, sec);
      }
   return( 0);
}