celes 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +32 -0
- data/README.md +179 -0
- data/Rakefile +1 -0
- data/celes.gemspec +22 -0
- data/ext/celes/a2af.c +120 -0
- data/ext/celes/a2tf.c +116 -0
- data/ext/celes/af2a.c +107 -0
- data/ext/celes/anp.c +82 -0
- data/ext/celes/anpm.c +82 -0
- data/ext/celes/bi00.c +116 -0
- data/ext/celes/bp00.c +173 -0
- data/ext/celes/bp06.c +136 -0
- data/ext/celes/bpn2xy.c +100 -0
- data/ext/celes/c2i00a.c +139 -0
- data/ext/celes/c2i00b.c +139 -0
- data/ext/celes/c2i06a.c +136 -0
- data/ext/celes/c2ibpn.c +142 -0
- data/ext/celes/c2ixy.c +131 -0
- data/ext/celes/c2ixys.c +123 -0
- data/ext/celes/c2s.c +96 -0
- data/ext/celes/c2t00a.c +154 -0
- data/ext/celes/c2t00b.c +150 -0
- data/ext/celes/c2t06a.c +152 -0
- data/ext/celes/c2tcio.c +122 -0
- data/ext/celes/c2teqx.c +122 -0
- data/ext/celes/c2tpe.c +167 -0
- data/ext/celes/c2txy.c +159 -0
- data/ext/celes/cal2jd.c +139 -0
- data/ext/celes/celes_core.c +2522 -0
- data/ext/celes/cp.c +80 -0
- data/ext/celes/cpv.c +82 -0
- data/ext/celes/cr.c +83 -0
- data/ext/celes/d2dtf.c +206 -0
- data/ext/celes/d2tf.c +160 -0
- data/ext/celes/dat.c +289 -0
- data/ext/celes/depend +25 -0
- data/ext/celes/dtdb.c +1213 -0
- data/ext/celes/dtf2d.c +196 -0
- data/ext/celes/ee00.c +128 -0
- data/ext/celes/ee00a.c +135 -0
- data/ext/celes/ee00b.c +141 -0
- data/ext/celes/ee06a.c +122 -0
- data/ext/celes/eect00.c +282 -0
- data/ext/celes/eform.c +147 -0
- data/ext/celes/eo06a.c +131 -0
- data/ext/celes/eors.c +108 -0
- data/ext/celes/epb.c +96 -0
- data/ext/celes/epb2jd.c +91 -0
- data/ext/celes/epj.c +93 -0
- data/ext/celes/epj2jd.c +91 -0
- data/ext/celes/epv00.c +2589 -0
- data/ext/celes/eqeq94.c +131 -0
- data/ext/celes/era00.c +136 -0
- data/ext/celes/extconf.rb +4 -0
- data/ext/celes/fad03.c +103 -0
- data/ext/celes/fae03.c +102 -0
- data/ext/celes/faf03.c +106 -0
- data/ext/celes/faju03.c +102 -0
- data/ext/celes/fal03.c +103 -0
- data/ext/celes/falp03.c +103 -0
- data/ext/celes/fama03.c +102 -0
- data/ext/celes/fame03.c +102 -0
- data/ext/celes/fane03.c +99 -0
- data/ext/celes/faom03.c +104 -0
- data/ext/celes/fapa03.c +103 -0
- data/ext/celes/fasa03.c +102 -0
- data/ext/celes/faur03.c +99 -0
- data/ext/celes/fave03.c +102 -0
- data/ext/celes/fk52h.c +143 -0
- data/ext/celes/fk5hip.c +126 -0
- data/ext/celes/fk5hz.c +160 -0
- data/ext/celes/fw2m.c +134 -0
- data/ext/celes/fw2xy.c +120 -0
- data/ext/celes/gc2gd.c +134 -0
- data/ext/celes/gc2gde.c +200 -0
- data/ext/celes/gd2gc.c +134 -0
- data/ext/celes/gd2gce.c +138 -0
- data/ext/celes/gmst00.c +145 -0
- data/ext/celes/gmst06.c +136 -0
- data/ext/celes/gmst82.c +151 -0
- data/ext/celes/gst00a.c +138 -0
- data/ext/celes/gst00b.c +146 -0
- data/ext/celes/gst06.c +140 -0
- data/ext/celes/gst06a.c +131 -0
- data/ext/celes/gst94.c +131 -0
- data/ext/celes/h2fk5.c +148 -0
- data/ext/celes/hfk5z.c +175 -0
- data/ext/celes/ir.c +83 -0
- data/ext/celes/jd2cal.c +155 -0
- data/ext/celes/jdcalf.c +161 -0
- data/ext/celes/num00a.c +121 -0
- data/ext/celes/num00b.c +121 -0
- data/ext/celes/num06a.c +125 -0
- data/ext/celes/numat.c +109 -0
- data/ext/celes/nut00a.c +2047 -0
- data/ext/celes/nut00b.c +372 -0
- data/ext/celes/nut06a.c +153 -0
- data/ext/celes/nut80.c +325 -0
- data/ext/celes/nutm80.c +117 -0
- data/ext/celes/obl06.c +118 -0
- data/ext/celes/obl80.c +118 -0
- data/ext/celes/p06e.c +321 -0
- data/ext/celes/p2pv.c +83 -0
- data/ext/celes/p2s.c +91 -0
- data/ext/celes/pap.c +139 -0
- data/ext/celes/pas.c +96 -0
- data/ext/celes/pb06.c +144 -0
- data/ext/celes/pdp.c +84 -0
- data/ext/celes/pfw06.c +165 -0
- data/ext/celes/plan94.c +514 -0
- data/ext/celes/pm.c +83 -0
- data/ext/celes/pmat00.c +118 -0
- data/ext/celes/pmat06.c +122 -0
- data/ext/celes/pmat76.c +141 -0
- data/ext/celes/pmp.c +85 -0
- data/ext/celes/pn.c +109 -0
- data/ext/celes/pn00.c +177 -0
- data/ext/celes/pn00a.c +162 -0
- data/ext/celes/pn00b.c +162 -0
- data/ext/celes/pn06.c +187 -0
- data/ext/celes/pn06a.c +152 -0
- data/ext/celes/pnm00a.c +121 -0
- data/ext/celes/pnm00b.c +121 -0
- data/ext/celes/pnm06a.c +124 -0
- data/ext/celes/pnm80.c +126 -0
- data/ext/celes/pom00.c +115 -0
- data/ext/celes/ppp.c +85 -0
- data/ext/celes/ppsp.c +94 -0
- data/ext/celes/pr00.c +142 -0
- data/ext/celes/prec76.c +148 -0
- data/ext/celes/pv2p.c +81 -0
- data/ext/celes/pv2s.c +144 -0
- data/ext/celes/pvdpv.c +102 -0
- data/ext/celes/pvm.c +86 -0
- data/ext/celes/pvmpv.c +87 -0
- data/ext/celes/pvppv.c +87 -0
- data/ext/celes/pvstar.c +207 -0
- data/ext/celes/pvu.c +93 -0
- data/ext/celes/pvup.c +88 -0
- data/ext/celes/pvxpv.c +107 -0
- data/ext/celes/pxp.c +94 -0
- data/ext/celes/rm2v.c +111 -0
- data/ext/celes/rv2m.c +118 -0
- data/ext/celes/rx.c +110 -0
- data/ext/celes/rxp.c +99 -0
- data/ext/celes/rxpv.c +86 -0
- data/ext/celes/rxr.c +99 -0
- data/ext/celes/ry.c +110 -0
- data/ext/celes/rz.c +110 -0
- data/ext/celes/s00.c +371 -0
- data/ext/celes/s00a.c +143 -0
- data/ext/celes/s00b.c +143 -0
- data/ext/celes/s06.c +368 -0
- data/ext/celes/s06a.c +145 -0
- data/ext/celes/s2c.c +85 -0
- data/ext/celes/s2p.c +88 -0
- data/ext/celes/s2pv.c +103 -0
- data/ext/celes/s2xpv.c +87 -0
- data/ext/celes/sepp.c +105 -0
- data/ext/celes/seps.c +93 -0
- data/ext/celes/sofa.h +379 -0
- data/ext/celes/sofam.h +155 -0
- data/ext/celes/sp00.c +118 -0
- data/ext/celes/starpm.c +205 -0
- data/ext/celes/starpv.c +264 -0
- data/ext/celes/sxp.c +84 -0
- data/ext/celes/sxpv.c +85 -0
- data/ext/celes/taitt.c +110 -0
- data/ext/celes/taiut1.c +112 -0
- data/ext/celes/taiutc.c +182 -0
- data/ext/celes/tcbtdb.c +132 -0
- data/ext/celes/tcgtt.c +109 -0
- data/ext/celes/tdbtcb.c +137 -0
- data/ext/celes/tdbtt.c +122 -0
- data/ext/celes/tf2a.c +107 -0
- data/ext/celes/tf2d.c +107 -0
- data/ext/celes/tr.c +93 -0
- data/ext/celes/trxp.c +93 -0
- data/ext/celes/trxpv.c +93 -0
- data/ext/celes/tttai.c +110 -0
- data/ext/celes/tttcg.c +112 -0
- data/ext/celes/tttdb.c +121 -0
- data/ext/celes/ttut1.c +110 -0
- data/ext/celes/ut1tai.c +111 -0
- data/ext/celes/ut1tt.c +110 -0
- data/ext/celes/ut1utc.c +193 -0
- data/ext/celes/utctai.c +163 -0
- data/ext/celes/utcut1.c +151 -0
- data/ext/celes/xy06.c +2758 -0
- data/ext/celes/xys00a.c +133 -0
- data/ext/celes/xys00b.c +133 -0
- data/ext/celes/xys06a.c +133 -0
- data/ext/celes/zp.c +77 -0
- data/ext/celes/zpv.c +79 -0
- data/ext/celes/zr.c +83 -0
- data/lib/celes.rb +6 -0
- data/lib/celes/version.rb +3 -0
- data/sofa_20120301.diff +31384 -0
- data/test/t_sofa.rb +8228 -0
- metadata +251 -0
data/ext/celes/pom00.c
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
#include "sofam.h"
|
|
2
|
+
|
|
3
|
+
void iauPom00(double xp, double yp, double sp, double rpom[3][3])
|
|
4
|
+
/*
|
|
5
|
+
** - - - - - - - - - -
|
|
6
|
+
** i a u P o m 0 0
|
|
7
|
+
** - - - - - - - - - -
|
|
8
|
+
**
|
|
9
|
+
** Form the matrix of polar motion for a given date, IAU 2000.
|
|
10
|
+
**
|
|
11
|
+
** Status: support function.
|
|
12
|
+
**
|
|
13
|
+
** Given:
|
|
14
|
+
** xp,yp double coordinates of the pole (radians, Note 1)
|
|
15
|
+
** sp double the TIO locator s' (radians, Note 2)
|
|
16
|
+
**
|
|
17
|
+
** Returned:
|
|
18
|
+
** rpom double[3][3] polar-motion matrix (Note 3)
|
|
19
|
+
**
|
|
20
|
+
** Notes:
|
|
21
|
+
**
|
|
22
|
+
** 1) The arguments xp and yp are the coordinates (in radians) of the
|
|
23
|
+
** Celestial Intermediate Pole with respect to the International
|
|
24
|
+
** Terrestrial Reference System (see IERS Conventions 2003),
|
|
25
|
+
** measured along the meridians to 0 and 90 deg west respectively.
|
|
26
|
+
**
|
|
27
|
+
** 2) The argument sp is the TIO locator s', in radians, which
|
|
28
|
+
** positions the Terrestrial Intermediate Origin on the equator. It
|
|
29
|
+
** is obtained from polar motion observations by numerical
|
|
30
|
+
** integration, and so is in essence unpredictable. However, it is
|
|
31
|
+
** dominated by a secular drift of about 47 microarcseconds per
|
|
32
|
+
** century, and so can be taken into account by using s' = -47*t,
|
|
33
|
+
** where t is centuries since J2000.0. The function iauSp00
|
|
34
|
+
** implements this approximation.
|
|
35
|
+
**
|
|
36
|
+
** 3) The matrix operates in the sense V(TRS) = rpom * V(CIP), meaning
|
|
37
|
+
** that it is the final rotation when computing the pointing
|
|
38
|
+
** direction to a celestial source.
|
|
39
|
+
**
|
|
40
|
+
** Called:
|
|
41
|
+
** iauIr initialize r-matrix to identity
|
|
42
|
+
** iauRz rotate around Z-axis
|
|
43
|
+
** iauRy rotate around Y-axis
|
|
44
|
+
** iauRx rotate around X-axis
|
|
45
|
+
**
|
|
46
|
+
** Reference:
|
|
47
|
+
**
|
|
48
|
+
** McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003),
|
|
49
|
+
** IERS Technical Note No. 32, BKG (2004)
|
|
50
|
+
**
|
|
51
|
+
** This revision: 2009 December 17
|
|
52
|
+
**
|
|
53
|
+
** Original version 2012-03-01
|
|
54
|
+
**
|
|
55
|
+
** Copyright (C) 2013 Naoki Arita. See notes at end.
|
|
56
|
+
*/
|
|
57
|
+
{
|
|
58
|
+
|
|
59
|
+
/* Construct the matrix. */
|
|
60
|
+
iauIr(rpom);
|
|
61
|
+
iauRz(sp, rpom);
|
|
62
|
+
iauRy(-xp, rpom);
|
|
63
|
+
iauRx(-yp, rpom);
|
|
64
|
+
|
|
65
|
+
return;
|
|
66
|
+
|
|
67
|
+
/*----------------------------------------------------------------------
|
|
68
|
+
**
|
|
69
|
+
** Celes is a wrapper of the SOFA Library for Ruby.
|
|
70
|
+
**
|
|
71
|
+
** This file is redistributed and relicensed in accordance with
|
|
72
|
+
** the SOFA Software License (http://www.iausofa.org/tandc.html).
|
|
73
|
+
**
|
|
74
|
+
** The original library is available from IAU Standards of
|
|
75
|
+
** Fundamental Astronomy (http://www.iausofa.org/).
|
|
76
|
+
**
|
|
77
|
+
**
|
|
78
|
+
**
|
|
79
|
+
**
|
|
80
|
+
**
|
|
81
|
+
** Copyright (C) 2013, Naoki Arita
|
|
82
|
+
** All rights reserved.
|
|
83
|
+
**
|
|
84
|
+
** Redistribution and use in source and binary forms, with or without
|
|
85
|
+
** modification, are permitted provided that the following conditions
|
|
86
|
+
** are met:
|
|
87
|
+
**
|
|
88
|
+
** 1 Redistributions of source code must retain the above copyright
|
|
89
|
+
** notice, this list of conditions and the following disclaimer.
|
|
90
|
+
**
|
|
91
|
+
** 2 Redistributions in binary form must reproduce the above copyright
|
|
92
|
+
** notice, this list of conditions and the following disclaimer in
|
|
93
|
+
** the documentation and/or other materials provided with the
|
|
94
|
+
** distribution.
|
|
95
|
+
**
|
|
96
|
+
** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
|
|
97
|
+
** the International Astronomical Union nor the names of its
|
|
98
|
+
** contributors may be used to endorse or promote products derived
|
|
99
|
+
** from this software without specific prior written permission.
|
|
100
|
+
**
|
|
101
|
+
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
102
|
+
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
103
|
+
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
104
|
+
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
105
|
+
** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
106
|
+
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
107
|
+
** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
108
|
+
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
109
|
+
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
110
|
+
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
111
|
+
** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
112
|
+
** POSSIBILITY OF SUCH DAMAGE.
|
|
113
|
+
**
|
|
114
|
+
**--------------------------------------------------------------------*/
|
|
115
|
+
}
|
data/ext/celes/ppp.c
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
#include "sofam.h"
|
|
2
|
+
|
|
3
|
+
void iauPpp(double a[3], double b[3], double apb[3])
|
|
4
|
+
/*
|
|
5
|
+
** - - - - - - -
|
|
6
|
+
** i a u P p p
|
|
7
|
+
** - - - - - - -
|
|
8
|
+
**
|
|
9
|
+
** P-vector addition.
|
|
10
|
+
**
|
|
11
|
+
** Status: vector/matrix support function.
|
|
12
|
+
**
|
|
13
|
+
** Given:
|
|
14
|
+
** a double[3] first p-vector
|
|
15
|
+
** b double[3] second p-vector
|
|
16
|
+
**
|
|
17
|
+
** Returned:
|
|
18
|
+
** apb double[3] a + b
|
|
19
|
+
**
|
|
20
|
+
** Note:
|
|
21
|
+
** It is permissible to re-use the same array for any of the
|
|
22
|
+
** arguments.
|
|
23
|
+
**
|
|
24
|
+
** This revision: 2008 November 18
|
|
25
|
+
**
|
|
26
|
+
** Original version 2012-03-01
|
|
27
|
+
**
|
|
28
|
+
** Copyright (C) 2013 Naoki Arita. See notes at end.
|
|
29
|
+
*/
|
|
30
|
+
{
|
|
31
|
+
apb[0] = a[0] + b[0];
|
|
32
|
+
apb[1] = a[1] + b[1];
|
|
33
|
+
apb[2] = a[2] + b[2];
|
|
34
|
+
|
|
35
|
+
return;
|
|
36
|
+
|
|
37
|
+
/*----------------------------------------------------------------------
|
|
38
|
+
**
|
|
39
|
+
** Celes is a wrapper of the SOFA Library for Ruby.
|
|
40
|
+
**
|
|
41
|
+
** This file is redistributed and relicensed in accordance with
|
|
42
|
+
** the SOFA Software License (http://www.iausofa.org/tandc.html).
|
|
43
|
+
**
|
|
44
|
+
** The original library is available from IAU Standards of
|
|
45
|
+
** Fundamental Astronomy (http://www.iausofa.org/).
|
|
46
|
+
**
|
|
47
|
+
**
|
|
48
|
+
**
|
|
49
|
+
**
|
|
50
|
+
**
|
|
51
|
+
** Copyright (C) 2013, Naoki Arita
|
|
52
|
+
** All rights reserved.
|
|
53
|
+
**
|
|
54
|
+
** Redistribution and use in source and binary forms, with or without
|
|
55
|
+
** modification, are permitted provided that the following conditions
|
|
56
|
+
** are met:
|
|
57
|
+
**
|
|
58
|
+
** 1 Redistributions of source code must retain the above copyright
|
|
59
|
+
** notice, this list of conditions and the following disclaimer.
|
|
60
|
+
**
|
|
61
|
+
** 2 Redistributions in binary form must reproduce the above copyright
|
|
62
|
+
** notice, this list of conditions and the following disclaimer in
|
|
63
|
+
** the documentation and/or other materials provided with the
|
|
64
|
+
** distribution.
|
|
65
|
+
**
|
|
66
|
+
** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
|
|
67
|
+
** the International Astronomical Union nor the names of its
|
|
68
|
+
** contributors may be used to endorse or promote products derived
|
|
69
|
+
** from this software without specific prior written permission.
|
|
70
|
+
**
|
|
71
|
+
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
72
|
+
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
73
|
+
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
74
|
+
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
75
|
+
** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
76
|
+
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
77
|
+
** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
78
|
+
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
79
|
+
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
80
|
+
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
81
|
+
** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
82
|
+
** POSSIBILITY OF SUCH DAMAGE.
|
|
83
|
+
**
|
|
84
|
+
**--------------------------------------------------------------------*/
|
|
85
|
+
}
|
data/ext/celes/ppsp.c
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#include "sofam.h"
|
|
2
|
+
|
|
3
|
+
void iauPpsp(double a[3], double s, double b[3], double apsb[3])
|
|
4
|
+
/*
|
|
5
|
+
** - - - - - - - -
|
|
6
|
+
** i a u P p s p
|
|
7
|
+
** - - - - - - - -
|
|
8
|
+
**
|
|
9
|
+
** P-vector plus scaled p-vector.
|
|
10
|
+
**
|
|
11
|
+
** Status: vector/matrix support function.
|
|
12
|
+
**
|
|
13
|
+
** Given:
|
|
14
|
+
** a double[3] first p-vector
|
|
15
|
+
** s double scalar (multiplier for b)
|
|
16
|
+
** b double[3] second p-vector
|
|
17
|
+
**
|
|
18
|
+
** Returned:
|
|
19
|
+
** apsb double[3] a + s*b
|
|
20
|
+
**
|
|
21
|
+
** Note:
|
|
22
|
+
** It is permissible for any of a, b and apsb to be the same array.
|
|
23
|
+
**
|
|
24
|
+
** Called:
|
|
25
|
+
** iauSxp multiply p-vector by scalar
|
|
26
|
+
** iauPpp p-vector plus p-vector
|
|
27
|
+
**
|
|
28
|
+
** This revision: 2008 November 18
|
|
29
|
+
**
|
|
30
|
+
** Original version 2012-03-01
|
|
31
|
+
**
|
|
32
|
+
** Copyright (C) 2013 Naoki Arita. See notes at end.
|
|
33
|
+
*/
|
|
34
|
+
{
|
|
35
|
+
double sb[3];
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
/* s*b. */
|
|
39
|
+
iauSxp(s, b, sb);
|
|
40
|
+
|
|
41
|
+
/* a + s*b. */
|
|
42
|
+
iauPpp(a, sb, apsb);
|
|
43
|
+
|
|
44
|
+
return;
|
|
45
|
+
|
|
46
|
+
/*----------------------------------------------------------------------
|
|
47
|
+
**
|
|
48
|
+
** Celes is a wrapper of the SOFA Library for Ruby.
|
|
49
|
+
**
|
|
50
|
+
** This file is redistributed and relicensed in accordance with
|
|
51
|
+
** the SOFA Software License (http://www.iausofa.org/tandc.html).
|
|
52
|
+
**
|
|
53
|
+
** The original library is available from IAU Standards of
|
|
54
|
+
** Fundamental Astronomy (http://www.iausofa.org/).
|
|
55
|
+
**
|
|
56
|
+
**
|
|
57
|
+
**
|
|
58
|
+
**
|
|
59
|
+
**
|
|
60
|
+
** Copyright (C) 2013, Naoki Arita
|
|
61
|
+
** All rights reserved.
|
|
62
|
+
**
|
|
63
|
+
** Redistribution and use in source and binary forms, with or without
|
|
64
|
+
** modification, are permitted provided that the following conditions
|
|
65
|
+
** are met:
|
|
66
|
+
**
|
|
67
|
+
** 1 Redistributions of source code must retain the above copyright
|
|
68
|
+
** notice, this list of conditions and the following disclaimer.
|
|
69
|
+
**
|
|
70
|
+
** 2 Redistributions in binary form must reproduce the above copyright
|
|
71
|
+
** notice, this list of conditions and the following disclaimer in
|
|
72
|
+
** the documentation and/or other materials provided with the
|
|
73
|
+
** distribution.
|
|
74
|
+
**
|
|
75
|
+
** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
|
|
76
|
+
** the International Astronomical Union nor the names of its
|
|
77
|
+
** contributors may be used to endorse or promote products derived
|
|
78
|
+
** from this software without specific prior written permission.
|
|
79
|
+
**
|
|
80
|
+
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
81
|
+
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
82
|
+
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
83
|
+
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
84
|
+
** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
85
|
+
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
86
|
+
** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
87
|
+
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
88
|
+
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
89
|
+
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
90
|
+
** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
91
|
+
** POSSIBILITY OF SUCH DAMAGE.
|
|
92
|
+
**
|
|
93
|
+
**--------------------------------------------------------------------*/
|
|
94
|
+
}
|
data/ext/celes/pr00.c
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
#include "sofam.h"
|
|
2
|
+
|
|
3
|
+
void iauPr00(double date1, double date2, double *dpsipr, double *depspr)
|
|
4
|
+
/*
|
|
5
|
+
** - - - - - - - -
|
|
6
|
+
** i a u P r 0 0
|
|
7
|
+
** - - - - - - - -
|
|
8
|
+
**
|
|
9
|
+
** Precession-rate part of the IAU 2000 precession-nutation models
|
|
10
|
+
** (part of MHB2000).
|
|
11
|
+
**
|
|
12
|
+
** Status: canonical model.
|
|
13
|
+
**
|
|
14
|
+
** Given:
|
|
15
|
+
** date1,date2 double TT as a 2-part Julian Date (Note 1)
|
|
16
|
+
**
|
|
17
|
+
** Returned:
|
|
18
|
+
** dpsipr,depspr double precession corrections (Notes 2,3)
|
|
19
|
+
**
|
|
20
|
+
** Notes:
|
|
21
|
+
**
|
|
22
|
+
** 1) The TT date date1+date2 is a Julian Date, apportioned in any
|
|
23
|
+
** convenient way between the two arguments. For example,
|
|
24
|
+
** JD(TT)=2450123.7 could be expressed in any of these ways,
|
|
25
|
+
** among others:
|
|
26
|
+
**
|
|
27
|
+
** date1 date2
|
|
28
|
+
**
|
|
29
|
+
** 2450123.7 0.0 (JD method)
|
|
30
|
+
** 2451545.0 -1421.3 (J2000 method)
|
|
31
|
+
** 2400000.5 50123.2 (MJD method)
|
|
32
|
+
** 2450123.5 0.2 (date & time method)
|
|
33
|
+
**
|
|
34
|
+
** The JD method is the most natural and convenient to use in
|
|
35
|
+
** cases where the loss of several decimal digits of resolution
|
|
36
|
+
** is acceptable. The J2000 method is best matched to the way
|
|
37
|
+
** the argument is handled internally and will deliver the
|
|
38
|
+
** optimum resolution. The MJD method and the date & time methods
|
|
39
|
+
** are both good compromises between resolution and convenience.
|
|
40
|
+
**
|
|
41
|
+
** 2) The precession adjustments are expressed as "nutation
|
|
42
|
+
** components", corrections in longitude and obliquity with respect
|
|
43
|
+
** to the J2000.0 equinox and ecliptic.
|
|
44
|
+
**
|
|
45
|
+
** 3) Although the precession adjustments are stated to be with respect
|
|
46
|
+
** to Lieske et al. (1977), the MHB2000 model does not specify which
|
|
47
|
+
** set of Euler angles are to be used and how the adjustments are to
|
|
48
|
+
** be applied. The most literal and straightforward procedure is to
|
|
49
|
+
** adopt the 4-rotation epsilon_0, psi_A, omega_A, xi_A option, and
|
|
50
|
+
** to add dpsipr to psi_A and depspr to both omega_A and eps_A.
|
|
51
|
+
**
|
|
52
|
+
** 4) This is an implementation of one aspect of the IAU 2000A nutation
|
|
53
|
+
** model, formally adopted by the IAU General Assembly in 2000,
|
|
54
|
+
** namely MHB2000 (Mathews et al. 2002).
|
|
55
|
+
**
|
|
56
|
+
** References:
|
|
57
|
+
**
|
|
58
|
+
** Lieske, J.H., Lederle, T., Fricke, W. & Morando, B., "Expressions
|
|
59
|
+
** for the precession quantities based upon the IAU (1976) System of
|
|
60
|
+
** Astronomical Constants", Astron.Astrophys., 58, 1-16 (1977)
|
|
61
|
+
**
|
|
62
|
+
** Mathews, P.M., Herring, T.A., Buffet, B.A., "Modeling of nutation
|
|
63
|
+
** and precession New nutation series for nonrigid Earth and
|
|
64
|
+
** insights into the Earth's interior", J.Geophys.Res., 107, B4,
|
|
65
|
+
** 2002. The MHB2000 code itself was obtained on 9th September 2002
|
|
66
|
+
** from ftp://maia.usno.navy.mil/conv2000/chapter5/IAU2000A.
|
|
67
|
+
**
|
|
68
|
+
** Wallace, P.T., "Software for Implementing the IAU 2000
|
|
69
|
+
** Resolutions", in IERS Workshop 5.1 (2002).
|
|
70
|
+
**
|
|
71
|
+
** This revision: 2009 December 17
|
|
72
|
+
**
|
|
73
|
+
** Original version 2012-03-01
|
|
74
|
+
**
|
|
75
|
+
** Copyright (C) 2013 Naoki Arita. See notes at end.
|
|
76
|
+
*/
|
|
77
|
+
{
|
|
78
|
+
double t;
|
|
79
|
+
|
|
80
|
+
/* Precession and obliquity corrections (radians per century) */
|
|
81
|
+
static const double PRECOR = -0.29965 * DAS2R,
|
|
82
|
+
OBLCOR = -0.02524 * DAS2R;
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
/* Interval between fundamental epoch J2000.0 and given date (JC). */
|
|
86
|
+
t = ((date1 - DJ00) + date2) / DJC;
|
|
87
|
+
|
|
88
|
+
/* Precession rate contributions with respect to IAU 1976/80. */
|
|
89
|
+
*dpsipr = PRECOR * t;
|
|
90
|
+
*depspr = OBLCOR * t;
|
|
91
|
+
|
|
92
|
+
return;
|
|
93
|
+
|
|
94
|
+
/*----------------------------------------------------------------------
|
|
95
|
+
**
|
|
96
|
+
** Celes is a wrapper of the SOFA Library for Ruby.
|
|
97
|
+
**
|
|
98
|
+
** This file is redistributed and relicensed in accordance with
|
|
99
|
+
** the SOFA Software License (http://www.iausofa.org/tandc.html).
|
|
100
|
+
**
|
|
101
|
+
** The original library is available from IAU Standards of
|
|
102
|
+
** Fundamental Astronomy (http://www.iausofa.org/).
|
|
103
|
+
**
|
|
104
|
+
**
|
|
105
|
+
**
|
|
106
|
+
**
|
|
107
|
+
**
|
|
108
|
+
** Copyright (C) 2013, Naoki Arita
|
|
109
|
+
** All rights reserved.
|
|
110
|
+
**
|
|
111
|
+
** Redistribution and use in source and binary forms, with or without
|
|
112
|
+
** modification, are permitted provided that the following conditions
|
|
113
|
+
** are met:
|
|
114
|
+
**
|
|
115
|
+
** 1 Redistributions of source code must retain the above copyright
|
|
116
|
+
** notice, this list of conditions and the following disclaimer.
|
|
117
|
+
**
|
|
118
|
+
** 2 Redistributions in binary form must reproduce the above copyright
|
|
119
|
+
** notice, this list of conditions and the following disclaimer in
|
|
120
|
+
** the documentation and/or other materials provided with the
|
|
121
|
+
** distribution.
|
|
122
|
+
**
|
|
123
|
+
** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
|
|
124
|
+
** the International Astronomical Union nor the names of its
|
|
125
|
+
** contributors may be used to endorse or promote products derived
|
|
126
|
+
** from this software without specific prior written permission.
|
|
127
|
+
**
|
|
128
|
+
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
129
|
+
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
130
|
+
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
131
|
+
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
132
|
+
** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
133
|
+
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
134
|
+
** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
135
|
+
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
136
|
+
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
137
|
+
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
138
|
+
** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
139
|
+
** POSSIBILITY OF SUCH DAMAGE.
|
|
140
|
+
**
|
|
141
|
+
**--------------------------------------------------------------------*/
|
|
142
|
+
}
|
data/ext/celes/prec76.c
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
#include "sofam.h"
|
|
2
|
+
|
|
3
|
+
void iauPrec76(double ep01, double ep02, double ep11, double ep12,
|
|
4
|
+
double *zeta, double *z, double *theta)
|
|
5
|
+
/*
|
|
6
|
+
** - - - - - - - - - -
|
|
7
|
+
** i a u P r e c 7 6
|
|
8
|
+
** - - - - - - - - - -
|
|
9
|
+
**
|
|
10
|
+
** IAU 1976 precession model.
|
|
11
|
+
**
|
|
12
|
+
** This function forms the three Euler angles which implement general
|
|
13
|
+
** precession between two epochs, using the IAU 1976 model (as for
|
|
14
|
+
** the FK5 catalog).
|
|
15
|
+
**
|
|
16
|
+
** Status: canonical model.
|
|
17
|
+
**
|
|
18
|
+
** Given:
|
|
19
|
+
** ep01,ep02 double TDB starting epoch (Note 1)
|
|
20
|
+
** ep11,ep12 double TDB ending epoch (Note 1)
|
|
21
|
+
**
|
|
22
|
+
** Returned:
|
|
23
|
+
** zeta double 1st rotation: radians cw around z
|
|
24
|
+
** z double 3rd rotation: radians cw around z
|
|
25
|
+
** theta double 2nd rotation: radians ccw around y
|
|
26
|
+
**
|
|
27
|
+
** Notes:
|
|
28
|
+
**
|
|
29
|
+
** 1) The epochs ep01+ep02 and ep11+ep12 are Julian Dates, apportioned
|
|
30
|
+
** in any convenient way between the arguments epn1 and epn2. For
|
|
31
|
+
** example, JD(TDB)=2450123.7 could be expressed in any of these
|
|
32
|
+
** ways, among others:
|
|
33
|
+
**
|
|
34
|
+
** epn1 epn2
|
|
35
|
+
**
|
|
36
|
+
** 2450123.7 0.0 (JD method)
|
|
37
|
+
** 2451545.0 -1421.3 (J2000 method)
|
|
38
|
+
** 2400000.5 50123.2 (MJD method)
|
|
39
|
+
** 2450123.5 0.2 (date & time method)
|
|
40
|
+
**
|
|
41
|
+
** The JD method is the most natural and convenient to use in cases
|
|
42
|
+
** where the loss of several decimal digits of resolution is
|
|
43
|
+
** acceptable. The J2000 method is best matched to the way the
|
|
44
|
+
** argument is handled internally and will deliver the optimum
|
|
45
|
+
** optimum resolution. The MJD method and the date & time methods
|
|
46
|
+
** are both good compromises between resolution and convenience.
|
|
47
|
+
** The two epochs may be expressed using different methods, but at
|
|
48
|
+
** the risk of losing some resolution.
|
|
49
|
+
**
|
|
50
|
+
** 2) The accumulated precession angles zeta, z, theta are expressed
|
|
51
|
+
** through canonical polynomials which are valid only for a limited
|
|
52
|
+
** time span. In addition, the IAU 1976 precession rate is known to
|
|
53
|
+
** be imperfect. The absolute accuracy of the present formulation
|
|
54
|
+
** is better than 0.1 arcsec from 1960AD to 2040AD, better than
|
|
55
|
+
** 1 arcsec from 1640AD to 2360AD, and remains below 3 arcsec for
|
|
56
|
+
** the whole of the period 500BC to 3000AD. The errors exceed
|
|
57
|
+
** 10 arcsec outside the range 1200BC to 3900AD, exceed 100 arcsec
|
|
58
|
+
** outside 4200BC to 5600AD and exceed 1000 arcsec outside 6800BC to
|
|
59
|
+
** 8200AD.
|
|
60
|
+
**
|
|
61
|
+
** 3) The three angles are returned in the conventional order, which
|
|
62
|
+
** is not the same as the order of the corresponding Euler
|
|
63
|
+
** rotations. The precession matrix is
|
|
64
|
+
** R_3(-z) x R_2(+theta) x R_3(-zeta).
|
|
65
|
+
**
|
|
66
|
+
** Reference:
|
|
67
|
+
**
|
|
68
|
+
** Lieske, J.H., 1979, Astron.Astrophys. 73, 282, equations
|
|
69
|
+
** (6) & (7), p283.
|
|
70
|
+
**
|
|
71
|
+
** This revision: 2009 December 17
|
|
72
|
+
**
|
|
73
|
+
** Original version 2012-03-01
|
|
74
|
+
**
|
|
75
|
+
** Copyright (C) 2013 Naoki Arita. See notes at end.
|
|
76
|
+
*/
|
|
77
|
+
{
|
|
78
|
+
double t0, t, tas2r, w;
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
/* Interval between fundamental epoch J2000.0 and start epoch (JC). */
|
|
82
|
+
t0 = ((ep01 - DJ00) + ep02) / DJC;
|
|
83
|
+
|
|
84
|
+
/* Interval over which precession required (JC). */
|
|
85
|
+
t = ((ep11 - ep01) + (ep12 - ep02)) / DJC;
|
|
86
|
+
|
|
87
|
+
/* Euler angles. */
|
|
88
|
+
tas2r = t * DAS2R;
|
|
89
|
+
w = 2306.2181 + (1.39656 - 0.000139 * t0) * t0;
|
|
90
|
+
|
|
91
|
+
*zeta = (w + ((0.30188 - 0.000344 * t0) + 0.017998 * t) * t) * tas2r;
|
|
92
|
+
|
|
93
|
+
*z = (w + ((1.09468 + 0.000066 * t0) + 0.018203 * t) * t) * tas2r;
|
|
94
|
+
|
|
95
|
+
*theta = ((2004.3109 + (-0.85330 - 0.000217 * t0) * t0)
|
|
96
|
+
+ ((-0.42665 - 0.000217 * t0) - 0.041833 * t) * t) * tas2r;
|
|
97
|
+
|
|
98
|
+
return;
|
|
99
|
+
|
|
100
|
+
/*----------------------------------------------------------------------
|
|
101
|
+
**
|
|
102
|
+
** Celes is a wrapper of the SOFA Library for Ruby.
|
|
103
|
+
**
|
|
104
|
+
** This file is redistributed and relicensed in accordance with
|
|
105
|
+
** the SOFA Software License (http://www.iausofa.org/tandc.html).
|
|
106
|
+
**
|
|
107
|
+
** The original library is available from IAU Standards of
|
|
108
|
+
** Fundamental Astronomy (http://www.iausofa.org/).
|
|
109
|
+
**
|
|
110
|
+
**
|
|
111
|
+
**
|
|
112
|
+
**
|
|
113
|
+
**
|
|
114
|
+
** Copyright (C) 2013, Naoki Arita
|
|
115
|
+
** All rights reserved.
|
|
116
|
+
**
|
|
117
|
+
** Redistribution and use in source and binary forms, with or without
|
|
118
|
+
** modification, are permitted provided that the following conditions
|
|
119
|
+
** are met:
|
|
120
|
+
**
|
|
121
|
+
** 1 Redistributions of source code must retain the above copyright
|
|
122
|
+
** notice, this list of conditions and the following disclaimer.
|
|
123
|
+
**
|
|
124
|
+
** 2 Redistributions in binary form must reproduce the above copyright
|
|
125
|
+
** notice, this list of conditions and the following disclaimer in
|
|
126
|
+
** the documentation and/or other materials provided with the
|
|
127
|
+
** distribution.
|
|
128
|
+
**
|
|
129
|
+
** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
|
|
130
|
+
** the International Astronomical Union nor the names of its
|
|
131
|
+
** contributors may be used to endorse or promote products derived
|
|
132
|
+
** from this software without specific prior written permission.
|
|
133
|
+
**
|
|
134
|
+
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
135
|
+
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
136
|
+
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
137
|
+
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
138
|
+
** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
139
|
+
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
140
|
+
** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
141
|
+
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
142
|
+
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
143
|
+
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
144
|
+
** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
145
|
+
** POSSIBILITY OF SUCH DAMAGE.
|
|
146
|
+
**
|
|
147
|
+
**--------------------------------------------------------------------*/
|
|
148
|
+
}
|