-
Notifications
You must be signed in to change notification settings - Fork 12
/
palOne2One.c
1482 lines (1127 loc) · 30.4 KB
/
palOne2One.c
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
*+
* Name:
* palOne2One
* Purpose:
* File containing simple PAL wrappers for SLA routines that are identical in SOFA
* Invocation:
* Matches SLA API
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Description:
* Some SOFA/ERFA routines are identical to their SLA counterparts. PAL provides
* direct counterparts to these although it is generally a better idea to
* use the SOFA/ERFA routine directly in new code.
*
* The PAL routines with direct equivalents in SOFA/ERFA are:
* - palCldj
* - palDbear
* - palDaf2r
* - palDav2m
* - palDcc2s
* - palDcs2c
* - palDd2tf
* - palDimxv
* - palDm2av
* - palDjcl
* - palDmxm
* - palDmxv
* - palDpav
* - palDr2af
* - palDr2tf
* - palDranrm
* - palDsep
* - palDsepv
* - palDtf2d
* - palDtf2r
* - palDvdv
* - palDvn
* - palDvxv
* - palEpb
* - palEpb2d
* - palEpj
* - palEpj2d
* - palEqeqx
* - palFk5hz
* - palGmst
* - palGmsta
* - palHfk5z
* - palRefcoq
* Authors:
* TIMJ: Tim Jenness (JAC, Hawaii)
* DSB: David S Berry (JAC, Hawaii)
* {enter_new_authors_here}
* Notes:
* - Do not call these functions from other PAL functions. Always use
* the SOFA/ERFA routines directly in new code.
* - These are implemented as real functions rather than C preprocessor
* macros so there may be a performance penalty in using the PAL
* version instead of the SOFA/ERFA version.
* - Routines that take MJDs have SOFA/ERFA equivalents that have an explicit
* MJD offset included.
* - palEqeqx, palGmst and palGmsta use the IAU 2006 precession model.
* History:
* 2012-02-10 (TIMJ):
* Initial version
* Adapted with permission from the Fortran SLALIB library.
* 2012-03-23 (TIMJ):
* Update prologue.
* 2012-05-09 (DSBJ):
* Move palDrange into a separate file.
* 2014-07-15 (TIMJ):
* SOFA now has palRefcoq equivalent.
* {enter_further_changes_here}
* Copyright:
* Copyright (C) 2014 Tim Jenness
* Copyright (C) 2012 Science and Technology Facilities Council.
* All Rights Reserved.
* Licence:
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
* Bugs:
* {note_any_bugs_here}
*-
*/
#include "pal.h"
#include "palmac.h"
#include "pal1sofa.h"
/*
*+
* Name:
* palCldj
* Purpose:
* Gregorian Calendar to Modified Julian Date
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palCldj( int iy, int im, int id, double *djm, int *j );
* Arguments:
* iy = int (Given)
* Year in Gregorian calendar
* im = int (Given)
* Month in Gregorian calendar
* id = int (Given)
* Day in Gregorian calendar
* djm = double * (Returned)
* Modified Julian Date (JD-2400000.5) for 0 hrs
* j = int * (Returned)
* status: 0 = OK, 1 = bad year (MJD not computed),
* 2 = bad month (MJD not computed), 3 = bad day (MJD computed).
* Description:
* Gregorian calendar to Modified Julian Date.
* Notes:
* - Uses eraCal2jd(). See SOFA/ERFA documentation for details.
*-
*/
void palCldj ( int iy, int im, int id, double *djm, int *j ) {
double djm0;
*j = eraCal2jd( iy, im, id, &djm0, djm );
}
/*
*+
* Name:
* palDbear
* Purpose:
* Bearing (position angle) of one point on a sphere relative to another
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* pa = palDbear( double a1, double b1, double a2, double b2 );
* Arguments:
* a1 = double (Given)
* Longitude of point 1 (e.g. RA) in radians.
* b1 = double (Given)
* Latitude of point 1 (e.g. Dec) in radians.
* a2 = double (Given)
* Longitude of point 2 in radians.
* b2 = double (Given)
* Latitude of point 2 in radians.
* Returned Value:
* The result is the bearing (position angle), in radians, of point
* A2,B2 as seen from point A1,B1. It is in the range +/- pi. If
* A2,B2 is due east of A1,B1 the bearing is +pi/2. Zero is returned
* if the two points are coincident.
* Description:
* Bearing (position angle) of one point in a sphere relative to another.
* Notes:
* - Uses eraPas(). See SOFA/ERFA documentation for details.
*-
*/
double palDbear ( double a1, double b1, double a2, double b2 ) {
return eraPas( a1, b1, a2, b2 );
}
/*
*+
* Name:
* palDaf2r
* Purpose:
* Convert degrees, arcminutes, arcseconds to radians
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDaf2r( int ideg, int iamin, double asec, double *rad, int *j );
* Arguments:
* ideg = int (Given)
* Degrees.
* iamin = int (Given)
* Arcminutes.
* iasec = double (Given)
* Arcseconds.
* rad = double * (Returned)
* Angle in radians.
* j = int * (Returned)
* Status: 0 = OK, 1 = "ideg" out of range 0-359,
* 2 = "iamin" outside of range 0-59,
* 2 = "asec" outside range 0-59.99999
* Description:
* Convert degrees, arcminutes, arcseconds to radians.
* Notes:
* - Uses eraAf2a(). See SOFA/ERFA documentation for details.
*-
*/
/* Arguments differ slightly. Assumes that the sign is always positive
and dealt with externally. */
void palDaf2r ( int ideg, int iamin, double asec, double *rad, int *j ) {
*j = eraAf2a( ' ', ideg, iamin, asec, rad );
}
/*
*+
* Name:
* palDav2m
* Purpose:
* Form the rotation matrix corresponding to a given axial vector.
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDav2m( double axvec[3], double rmat[3][3] );
* Arguments:
* axvec = double [3] (Given)
* Axial vector (radians)
* rmat = double [3][3] (Returned)
* Rotation matrix.
* Description:
* A rotation matrix describes a rotation about some arbitrary axis,
* called the Euler axis. The "axial vector" supplied to this routine
* has the same direction as the Euler axis, and its magnitude is the
* amount of rotation in radians.
* Notes:
* - Uses eraRv2m(). See SOFA/ERFA documentation for details.
*-
*/
void palDav2m ( double axvec[3], double rmat[3][3] ) {
eraRv2m( axvec, rmat );
}
/*
*+
* Name:
* palDcc2s
* Purpose:
* Cartesian to spherical coordinates
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDcc2s( double v[3], double *a, double *b );
* Arguments:
* v = double [3] (Given)
* x, y, z vector.
* a = double * (Returned)
* Spherical coordinate (radians)
* b = double * (Returned)
* Spherical coordinate (radians)
* Description:
* The spherical coordinates are longitude (+ve anticlockwise looking
* from the +ve latitude pole) and latitude. The Cartesian coordinates
* are right handed, with the x axis at zero longitude and latitude, and
* the z axis at the +ve latitude pole.
* Notes:
* - Uses eraC2s(). See SOFA/ERFA documentation for details.
*-
*/
void palDcc2s ( double v[3], double *a, double *b ) {
eraC2s( v, a, b );
}
/*
*+
* Name:
* palDcs2c
* Purpose:
* Spherical coordinates to direction cosines
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDcs2c( double a, double b, double v[3] );
* Arguments:
* a = double (Given)
* Spherical coordinate in radians (ra, long etc).
* b = double (Given)
* Spherical coordinate in radians (dec, lat etc).
* v = double [3] (Returned)
* x, y, z vector
* Description:
* The spherical coordinates are longitude (+ve anticlockwise looking
* from the +ve latitude pole) and latitude. The Cartesian coordinates
* are right handed, with the x axis at zero longitude and latitude, and
* the z axis at the +ve latitude pole.
* Notes:
* - Uses eraS2c(). See SOFA/ERFA documentation for details.
*-
*/
void palDcs2c ( double a, double b, double v[3] ) {
eraS2c( a, b, v );
}
/*
*+
* Name:
* palDd2tf
* Purpose:
* Convert an interval in days into hours, minutes, seconds
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDd2tf( int ndp, double days, char *sign, int ihmsf[4] );
* Arguments:
* ndp = int (Given)
* Number of decimal places of seconds
* days = double (Given)
* Interval in days
* sign = char * (Returned)
* '+' or '-' (single character, not string)
* ihmsf = int [4] (Returned)
* Hours, minutes, seconds, fraction
* Description:
* Convert and interval in days into hours, minutes, seconds.
* Notes:
* - Uses eraD2tf(). See SOFA/ERFA documentation for details.
*-
*/
void palDd2tf ( int ndp, double days, char *sign, int ihmsf[4] ) {
eraD2tf( ndp, days, sign, ihmsf );
}
/*
*+
* Name:
* palDimxv
* Purpose:
* Perform the 3-D backward unitary transformation
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDimxv( double dm[3][3], double va[3], double vb[3] );
* Arguments:
* dm = double [3][3] (Given)
* Matrix
* va = double [3] (Given)
* vector
* vb = double [3] (Returned)
* Result vector
* Description:
* Perform the 3-D backward unitary transformation.
* Notes:
* - Uses eraTrxp(). See SOFA/ERFA documentation for details.
*-
*/
void palDimxv ( double dm[3][3], double va[3], double vb[3] ) {
eraTrxp( dm, va, vb );
}
/*
*+
* Name:
* palDm2av
* Purpose:
* From a rotation matrix, determine the corresponding axial vector
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDm2av( double rmat[3][3], double axvec[3] );
* Arguments:
* rmat = double [3][3] (Given)
* Rotation matrix
* axvec = double [3] (Returned)
* Axial vector (radians)
* Description:
* A rotation matrix describes a rotation about some arbitrary axis,
* called the Euler axis. The "axial vector" returned by this routine
* has the same direction as the Euler axis, and its magnitude is the
* amount of rotation in radians. (The magnitude and direction can be
* separated by means of the routine palDvn.)
* Notes:
* - Uses eraRm2v(). See SOFA/ERFA documentation for details.
*-
*/
void palDm2av ( double rmat[3][3], double axvec[3] ) {
eraRm2v( rmat, axvec );
}
/*
*+
* Name:
* palDjcl
* Purpose:
* Modified Julian Date to Gregorian year, month, day and fraction of day
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDjcl( double djm, int *iy, int *im, int *id, double *fd, int *j );
* Arguments:
* djm = double (Given)
* modified Julian Date (JD-2400000.5)
* iy = int * (Returned)
* year
* im = int * (Returned)
* month
* id = int * (Returned)
* day
* fd = double * (Returned)
* Fraction of day.
* Description:
* Modified Julian Date to Gregorian year, month, day and fraction of day.
* Notes:
* - Uses eraJd2cal(). See SOFA/ERFA documentation for details.
*-
*/
/* Requires additional SLA MJD reference date */
void palDjcl ( double djm, int *iy, int *im, int *id, double *fd, int *j ) {
*j = eraJd2cal( PAL__MJD0, djm, iy, im, id, fd );
}
/*
*+
* Name:
* palDmxm
* Purpose:
* Product of two 3x3 matrices
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDmxm( double a[3][3], double b[3][3], double c[3][3] );
* Arguments:
* a = double [3][3] (Given)
* Matrix
* b = double [3][3] (Given)
* Matrix
* c = double [3][3] (Returned)
* Matrix result
* Description:
* Product of two 3x3 matrices.
* Notes:
* - Uses eraRxr(). See SOFA/ERFA documentation for details.
*-
*/
void palDmxm ( double a[3][3], double b[3][3], double c[3][3] ) {
eraRxr( a, b, c );
}
/*
*+
* Name:
* palDmxv
* Purpose:
* Performs the 3-D forward unitary transformation
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDmxv( double dm[3][3], double va[3], double vb[3] );
* Arguments:
* dm = double [3][3] (Given)
* matrix
* va = double [3] (Given)
* vector
* dp = double [3] (Returned)
* result vector
* Description:
* Performs the 3-D forward unitary transformation.
* Notes:
* - Uses eraRxp(). See SOFA/ERFA documentation for details.
*-
*/
void palDmxv ( double dm[3][3], double va[3], double vb[3] ) {
eraRxp( dm, va, vb );
}
/*
*+
* Name:
* palDpav
* Purpose:
* Position angle of one celestial direction with respect to another
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* pa = palDpav( double v1[3], double v2[3] );
* Arguments:
* v1 = double [3] (Given)
* direction cosines of one point.
* v2 = double [3] (Given)
* direction cosines of the other point.
* Returned Value:
* The result is the bearing (position angle), in radians, of point
* V2 with respect to point V1. It is in the range +/- pi. The
* sense is such that if V2 is a small distance east of V1, the
* bearing is about +pi/2. Zero is returned if the two points
* are coincident.
* Description:
* Position angle of one celestial direction with respect to another.
* Notes:
* - The coordinate frames correspond to RA,Dec, Long,Lat etc.
* - Uses eraPap(). See SOFA/ERFA documentation for details.
*-
*/
double palDpav ( double v1[3], double v2[3] ) {
return eraPap( v1, v2 );
}
/*
*+
* Name:
* palDr2af
* Purpose:
* Convert an angle in radians to degrees, arcminutes, arcseconds
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDr2af( int ndp, double angle, char *sign, int idmsf[4] );
* Arguments:
* ndp = int (Given)
* number of decimal places of arcseconds
* angle = double (Given)
* angle in radians
* sign = char * (Returned)
* '+' or '-' (single character)
* idmsf = int [4] (Returned)
* Degrees, arcminutes, arcseconds, fraction
* Description:
* Convert an angle in radians to degrees, arcminutes, arcseconds.
* Notes:
* - Uses eraA2af(). See SOFA/ERFA documentation for details.
*-
*/
void palDr2af ( int ndp, double angle, char *sign, int idmsf[4] ) {
eraA2af( ndp, angle, sign, idmsf );
}
/*
*+
* Name:
* palDr2tf
* Purpose:
* Convert an angle in radians to hours, minutes, seconds
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDr2tf ( int ndp, double angle, char *sign, int ihmsf[4] );
* Arguments:
* ndp = int (Given)
* number of decimal places of arcseconds
* angle = double (Given)
* angle in radians
* sign = char * (Returned)
* '+' or '-' (single character)
* idmsf = int [4] (Returned)
* Hours, minutes, seconds, fraction
* Description:
* Convert an angle in radians to hours, minutes, seconds.
* Notes:
* - Uses eraA2tf(). See SOFA/ERFA documentation for details.
*-
*/
void palDr2tf( int ndp, double angle, char *sign, int ihmsf[4] ) {
eraA2tf( ndp, angle, sign, ihmsf );
}
/*
*+
* Name:
* palDranrm
* Purpose:
* Normalize angle into range 0-2 pi
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* norm = palDranrm( double angle );
* Arguments:
* angle = double (Given)
* angle in radians
* Returned Value:
* Angle expressed in the range 0-2 pi
* Description:
* Normalize angle into range 0-2 pi.
* Notes:
* - Uses eraAnp(). See SOFA/ERFA documentation for details.
*-
*/
double palDranrm ( double angle ) {
return eraAnp( angle );
}
/*
*+
* Name:
* palDsep
* Purpose:
* Angle between two points on a sphere
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* ang = palDsep( double a1, double b1, double a2, double b2 );
* Arguments:
* a1 = double (Given)
* Spherical coordinate of one point (radians)
* b1 = double (Given)
* Spherical coordinate of one point (radians)
* a2 = double (Given)
* Spherical coordinate of other point (radians)
* b2 = double (Given)
* Spherical coordinate of other point (radians)
* Returned Value:
* Angle, in radians, between the two points. Always positive.
* Description:
* Angle between two points on a sphere.
* Notes:
* - The spherical coordinates are [RA,Dec], [Long,Lat] etc, in radians.
* - Uses eraSeps(). See SOFA/ERFA documentation for details.
*-
*/
double palDsep ( double a1, double b1, double a2, double b2 ) {
return eraSeps( a1, b1, a2, b2 );
}
/*
*+
* Name:
* palDsepv
* Purpose:
* Angle between two vectors
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* ang = palDsepv( double v1[3], double v2[3] );
* Arguments:
* v1 = double [3] (Given)
* First vector
* v2 = double [3] (Given)
* Second vector
* Returned Value:
* Angle, in radians, between the two points. Always positive.
* Description:
* Angle between two vectors.
* Notes:
* - Uses eraSepp(). See SOFA/ERFA documentation for details.
*-
*/
double palDsepv ( double v1[3], double v2[3] ) {
return eraSepp( v1, v2 );
}
/*
*+
* Name:
* palDtf2d
* Purpose:
* Convert hours, minutes, seconds to days
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDtf2d( int ihour, int imin, double sec, double *days, int *j );
* Arguments:
* ihour = int (Given)
* Hours
* imin = int (Given)
* Minutes
* sec = double (Given)
* Seconds
* days = double * (Returned)
* Interval in days
* j = int * (Returned)
* status: 0 = ok, 1 = ihour outside range 0-23,
* 2 = imin outside range 0-59, 3 = sec outside range 0-59.999...
* Description:
* Convert hours, minutes, seconds to days.
* Notes:
* - Uses eraTf2d(). See SOFA/ERFA documentation for details.
*-
*/
/* Assumes that the sign is always positive and is dealt with externally */
void palDtf2d ( int ihour, int imin, double sec, double *days, int *j ) {
*j = eraTf2d( ' ', ihour, imin, sec, days );
}
/*
*+
* Name:
* palDtf2r
* Purpose:
* Convert hours, minutes, seconds to radians
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDtf2r( int ihour, int imin, double sec, double *rad, int *j );
* Arguments:
* ihour = int (Given)
* Hours
* imin = int (Given)
* Minutes
* sec = double (Given)
* Seconds
* days = double * (Returned)
* Angle in radians
* j = int * (Returned)
* status: 0 = ok, 1 = ihour outside range 0-23,
* 2 = imin outside range 0-59, 3 = sec outside range 0-59.999...
* Description:
* Convert hours, minutes, seconds to radians.
* Notes:
* - Uses eraTf2a(). See SOFA/ERFA documentation for details.
*-
*/
/* Assumes that the sign is dealt with outside this routine */
void palDtf2r ( int ihour, int imin, double sec, double *rad, int *j ) {
*j = eraTf2a( ' ', ihour, imin, sec, rad );
}
/*
*+
* Name:
* palDvdv
* Purpose:
* Scalar product of two 3-vectors
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* prod = palDvdv ( double va[3], double vb[3] );
* Arguments:
* va = double [3] (Given)
* First vector
* vb = double [3] (Given)
* Second vector
* Returned Value:
* Scalar product va.vb
* Description:
* Scalar product of two 3-vectors.
* Notes:
* - Uses eraPdp(). See SOFA/ERFA documentation for details.
*-
*/
double palDvdv ( double va[3], double vb[3] ) {
return eraPdp( va, vb );
}
/*
*+
* Name:
* palDvn
* Purpose:
* Normalizes a 3-vector also giving the modulus
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palDvn( double v[3], double uv[3], double *vm );
* Arguments:
* v = double [3] (Given)
* vector
* uv = double [3] (Returned)