summaryrefslogtreecommitdiffstats
path: root/ast/pal/palOne2One.c
blob: a8d80725ac8c748d2f26a29946e75102351df299 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
/*
*+
*  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 A (e.g. RA) in radians.
*     a2 = double (Given)
*        Latitude of point A (e.g. Dec) in radians.
*     b1 = double (Given)
*        Longitude of point B in radians.
*     b2 = double (Given)
*        Latitude of point B 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)
*        unit vector in direction of "v"
*     vm = double * (Returned)
*        modulus of "v"

*  Description:
*     Normalizes a 3-vector also giving the modulus.

*  Notes:
*     - Uses eraPn(). See SOFA/ERFA documentation for details.

*-
*/

/* Note that the arguments are flipped */
void palDvn ( double v[3], double uv[3], double *vm ) {
  eraPn( v, vm, uv );
}

/*
*+
*  Name:
*     palDvxv

*  Purpose:
*     Vector product of two 3-vectors

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     palDvxv( double va[3], double vb[3], double vc[3] );

*  Arguments:
*     va = double [3] (Given)
*        First vector
*     vb = double [3] (Given)
*        Second vector
*     vc = double [3] (Returned)
*        Result vector

*  Description:
*     Vector product of two 3-vectors.

*  Notes:
*     - Uses eraPxp(). See SOFA/ERFA documentation for details.

*-
*/

void palDvxv ( double va[3], double vb[3], double vc[3] ) {
  eraPxp( va, vb, vc );
}

/*
*+
*  Name:
*     palEpb

*  Purpose:
*     Conversion of modified Julian Data to Besselian Epoch

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     epb = palEpb ( double date );

*  Arguments:
*     date = double (Given)
*        Modified Julian Date (JD - 2400000.5)

*  Returned Value:
*      Besselian epoch.

*  Description:
*     Conversion of modified Julian Data to Besselian Epoch.

*  Notes:
*     - Uses eraEpb(). See SOFA/ERFA documentation for details.

*-
*/

/* Requires additional SLA MJD reference date */
double palEpb ( double date ) {
  return eraEpb( PAL__MJD0, date );
}

/*
*+
*  Name:
*     palEpb2d

*  Purpose:
*     Conversion of Besselian Epoch to Modified Julian Date

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     mjd = palEpb2d ( double epb );

*  Arguments:
*     epb = double (Given)
*        Besselian Epoch

*  Returned Value:
*     Modified Julian Date (JD - 2400000.5)

*  Description:
*     Conversion of Besselian Epoch to Modified Julian Date.

*  Notes:
*     - Uses eraEpb2jd(). See SOFA/ERFA documentation for details.

*-
*/


double palEpb2d ( double epb ) {
  double djm0, djm;
  eraEpb2jd( epb, &djm0, &djm );
  return djm;
}

/*
*+
*  Name:
*     palEpj

*  Purpose:
*     Conversion of Modified Julian Date to Julian Epoch

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     epj = palEpj ( double date );

*  Arguments:
*     date = double (Given)
*        Modified Julian Date (JD - 2400000.5)

*  Returned Value:
*     The Julian Epoch.

*  Description:
*     Conversion of Modified Julian Date to Julian Epoch.

*  Notes:
*     - Uses eraEpj(). See SOFA/ERFA documentation for details.

*-
*/

/* Requires additional SLA MJD reference date */
double palEpj ( double date ) {
  return eraEpj( PAL__MJD0, date );
}

/*
*+
*  Name:
*     palEpj2d

*  Purpose:
*     Conversion of Julian Epoch to Modified Julian Date

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     mjd = palEpj2d ( double epj );

*  Arguments:
*     epj = double (Given)
*        Julian Epoch.

*  Returned Value:
*     Modified Julian Date (JD - 2400000.5)

*  Description:
*     Conversion of Julian Epoch to Modified Julian Date.

*  Notes:
*     - Uses eraEpj2d(). See SOFA/ERFA documentation for details.

*-
*/
double palEpj2d ( double epj ) {
  double djm0, djm;
  eraEpj2jd( epj, &djm0, &djm );
  return djm;
}

/*
*+
*  Name:
*     palEqeqx

*  Purpose:
*     Equation of the equinoxes (IAU 2000/2006)

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     palEqeqx( double date );

*  Arguments:
*     date = double (Given)
*        TT as Modified Julian Date (JD-400000.5)

*  Description:
*     Equation of the equinoxes (IAU 2000/2006).

*  Notes:
*     - Uses eraEe06a(). See SOFA/ERFA documentation for details.

*-
*/

/* Requires additional SLA MJD reference date */
double palEqeqx ( double date ) {
  return eraEe06a( PAL__MJD0, date );
}

/*
*+
*  Name:
*     palFk5hz

*  Purpose:
*     Transform an FK5 (J2000) star position into the frame of the
*     Hipparcos catalogue.

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     palFk5hz ( double r5, double d5, double epoch,
*                double *rh, double *dh );

*  Arguments:
*     r5 = double (Given)
*        FK5 RA (radians), equinox J2000, epoch "epoch"
*     d5 = double (Given)
*        FK5 dec (radians), equinox J2000, epoch "epoch"
*     epoch = double (Given)
*        Julian epoch
*     rh = double * (Returned)
*        RA (radians)
*     dh = double * (Returned)
*        Dec (radians)

*  Description:
*     Transform an FK5 (J2000) star position into the frame of the
*     Hipparcos catalogue.

*  Notes:
*     - Assumes zero Hipparcos proper motion.
*     - Uses eraEpj2jd() and eraFk5hz.
*       See SOFA/ERFA documentation for details.

*-
*/

void palFk5hz ( double r5, double d5, double epoch,
                double *rh, double *dh ) {
  /* Need to convert epoch to Julian date first */
  double date1, date2;
  eraEpj2jd( epoch, &date1, &date2 );
  eraFk5hz( r5, d5, date1, date2, rh, dh );
}

/*
*+
*  Name:
*     palGmst

*  Purpose:
*     Greenwich mean sidereal time (consistent with IAU 2006 precession).

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     mst = palGmst ( double ut1 );

*  Arguments:
*     ut1 = double (Given)
*        Universal time (UT1) expressed as modified Julian Date (JD-2400000.5)

*  Returned Value:
*     Greenwich mean sidereal time

*  Description:
*     Greenwich mean sidereal time (consistent with IAU 2006 precession).

*  Notes:
*     - Uses eraGmst06(). See SOFA/ERFA documentation for details.

*-
*/

/* Note that SOFA/ERFA has more accurate time arguments
   and we use the 2006 precession model */
double palGmst ( double ut1 ) {
  return eraGmst06( PAL__MJD0, ut1, PAL__MJD0, ut1 );
}

/*
*+
*  Name:
*     palGmsta

*  Purpose:
*     Greenwich mean sidereal time (consistent with IAU 2006 precession).

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     mst = palGmsta ( double date, double ut1 );

*  Arguments:
*     date = double (Given)
*        UT1 date (MJD: integer part of JD-2400000.5)
*     ut1 = double (Given)
*        UT1 time (fraction of a day)

*  Returned Value:
*     Greenwich mean sidereal time (in range 0 to 2 pi)

*  Description:
*     Greenwich mean sidereal time (consistent with IAU 2006 precession).

*  Notes:
*     - For best accuracy use eraGmst06() directly.
*     - Uses eraGmst06(). See SOFA/ERFA documentation for details.

*-
*/

/* Slightly better but still not as accurate as SOFA/ERFA */

double palGmsta( double date, double ut ) {
  date += PAL__MJD0;
  return eraGmst06( date, ut, date, ut );
}

/*
*+
*  Name:
*     palHfk5z

*  Purpose:
*     Hipparcos star position to FK5 J2000

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     palHfk5z( double rh, double dh, double epoch,
*               double *r5, double *d5, double *dr5, double *dd5 );

*  Arguments:
*     rh = double (Given)
*        Hipparcos RA (radians)
*     dh = double (Given)
*        Hipparcos Dec (radians)
*     epoch = double (Given)
*        Julian epoch (TDB)
*     r5 = double * (Returned)
*        RA (radians, FK5, equinox J2000, epoch "epoch")
*     d5 = double * (Returned)
*        Dec (radians, FK5, equinox J2000, epoch "epoch")

*  Description:
*     Transform a Hipparcos star position into FK5 J2000, assuming
*     zero Hipparcos proper motion.

*  Notes:
*     - Uses eraEpj2jd and eraHfk5z(). See SOFA/ERFA documentation for details.

*-
*/

void palHfk5z ( double rh, double dh, double epoch,
                double *r5, double *d5, double *dr5, double *dd5 ) {
  /* Need to convert epoch to Julian date first */
  double date1, date2;
  eraEpj2jd( epoch, &date1, &date2 );
  eraHfk5z( rh, dh, date1, date2, r5, d5, dr5, dd5 );
}

/*
*+
*  Name:
*     palRefcoq

*  Purpose:
*     Determine the constants A and B in the atmospheric refraction model

*  Language:
*     Starlink ANSI C

*  Type of Module:
*     Library routine

*  Invocation:
*     palRefcoq( double tdk, double pmb, double rh, double wl,
*                double *refa, double *refb );

*  Arguments:
*     tdk = double (Given)
*        Ambient temperature at the observer (K)
*     pmb = double (Given)
*        Pressure at the observer (millibar)
*     rh =  double (Given)
*        Relative humidity at the observer (range 0-1)
*     wl =  double (Given)
*        Effective wavelength of the source (micrometre).
*        Radio refraction is chosen by specifying wl > 100 micrometres.
*     refa = double * (Returned)
*        tan Z coefficient (radian)
*     refb = double * (Returned)
*        tan**3 Z coefficient (radian)

*  Description:
*     Determine the constants A and B in the atmospheric refraction
*     model dZ = A tan Z + B tan**3 Z.  This is a fast alternative
*     to the palRefco routine.
*
*     Z is the "observed" zenith distance (i.e. affected by refraction)
*     and dZ is what to add to Z to give the "topocentric" (i.e. in vacuo)
*     zenith distance.

*  Notes:
*     - Uses eraRefco(). See SOFA/ERFA documentation for details.
*     - Note that the SOFA/ERFA routine uses different order of
*       of arguments and uses deg C rather than K.

*-
*/

void palRefcoq ( double tdk, double pmb, double rh, double wl,
                 double *refa, double *refb ) {
  /* Note that SLA (and therefore PAL) uses units of kelvin
     but SOFA/ERFA uses deg C */
  eraRefco( pmb, tdk - 273.15, rh, wl, refa, refb );
}