rsspice 0.1.0

Pure Rust port of the SPICE Toolkit for space geometry
Documentation
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
//
// GENERATED FILE
//

use super::*;
use crate::SpiceContext;
use f2rust_std::*;

/// AZ/EL to rectangular coordinates
///
/// Convert from range, azimuth and elevation of a point to
/// rectangular coordinates.
///
/// # Brief I/O
///
/// ```text
///  VARIABLE  I/O  DESCRIPTION
///  --------  ---  --------------------------------------------------
///  RANGE      I   Distance of the point from the origin.
///  AZ         I   Azimuth in radians.
///  EL         I   Elevation in radians.
///  AZCCW      I   Flag indicating how azimuth is measured.
///  ELPLSZ     I   Flag indicating how elevation is measured.
///  RECTAN     O   Rectangular coordinates of a point.
/// ```
///
/// # Detailed Input
///
/// ```text
///  RANGE    is the distance of the point from the origin. The
///           input should be in terms of the same units in which
///           the output is desired.
///
///           Although negative values for RANGE are allowed, its
///           use may lead to undesired results. See the $Exceptions
///           section for a discussion on this topic.
///
///  AZ       is the azimuth of the point. This is the angle between
///           the projection onto the XY plane of the vector from
///           the origin to the point and the +X axis of the
///           reference frame. AZ is zero at the +X axis.
///
///           The way azimuth is measured depends on the value of
///           the logical flag AZCCW. See the description of the
///           argument AZCCW for details.
///
///           The range (i.e., the set of allowed values) of AZ is
///           unrestricted. See the $Exceptions section for a
///           discussion on the AZ range.
///
///           Units are radians.
///
///  EL       is the elevation of the point. This is the angle
///           between the vector from the origin to the point and
///           the XY plane. EL is zero at the XY plane.
///
///           The way elevation is measured depends on the value of
///           the logical flag ELPLSZ. See the description of the
///           argument ELPLSZ for details.
///
///           The range (i.e., the set of allowed values) of EL is
///           [-pi/2, pi/2], but no error checking is done to ensure
///           that EL is within this range. See the $Exceptions
///           section for a discussion on the EL range.
///
///           Units are radians.
///
///  AZCCW    is a flag indicating how the azimuth is measured.
///
///           If AZCCW is .TRUE., the azimuth increases in the
///           counterclockwise direction; otherwise it increases
///           in the clockwise direction.
///
///  ELPLSZ   is a flag indicating how the elevation is measured.
///
///           If ELPLSZ is .TRUE., the elevation increases from
///           the XY plane toward +Z; otherwise toward -Z.
/// ```
///
/// # Detailed Output
///
/// ```text
///  RECTAN   is an array containing the rectangular coordinates of
///           the point.
///
///           The units associated with the point are those
///           associated with the input RANGE.
/// ```
///
/// # Exceptions
///
/// ```text
///  Error free.
///
///  1)  If the value of the input argument RANGE is negative
///      the output rectangular coordinates will be negated, i.e.
///      the resulting array will be of the same length
///      but opposite direction to the one that would be obtained
///      with a positive input argument RANGE of value ||RANGE||.
///
///  2)  If the value of the input argument EL is outside the
///      range [-pi/2, pi/2], the results may not be as
///      expected.
///
///  3)  If the value of the input argument AZ is outside the
///      range [0, 2*pi], the value will be mapped to a value
///      inside the range that differs from the input value by an
///      integer multiple of 2*pi.
/// ```
///
/// # Particulars
///
/// ```text
///  This routine converts the azimuth, elevation, and range
///  of a point into the associated rectangular coordinates.
///
///  The input is defined by the distance from the center of
///  the reference frame (range), the angle from a reference
///  vector (azimuth), and the angle above the XY plane of the
///  reference frame (elevation).
///
///  The way azimuth and elevation are measured depends on the
///  values given by the user to the AZCCW and ELPLSZ logical
///  flags. See the descriptions of these input arguments
///  for details.
/// ```
///
/// # Examples
///
/// ```text
///  The numerical results shown for these examples may differ across
///  platforms. The results depend on the SPICE kernels used as
///  input, the compiler and supporting libraries, and the machine
///  specific arithmetic implementation.
///
///  1) Create four tables showing a variety of azimuth/elevation
///     coordinates and the corresponding rectangular coordinates,
///     resulting from the different choices of the AZCCW and ELPLSZ
///     flags.
///
///     Corresponding azimuth/elevation and rectangular coordinates
///     are listed to three decimal places. Input angles are in
///     degrees.
///
///
///     Example code begins here.
///
///
///           PROGRAM AZLREC_EX1
///           IMPLICIT NONE
///
///     C
///     C     SPICELIB functions
///     C
///           DOUBLE PRECISION      RPD
///
///     C
///     C     Local parameters.
///     C
///           INTEGER               NREC
///           PARAMETER           ( NREC = 11 )
///
///     C
///     C     Local variables.
///     C
///           CHARACTER*(30)        MSG
///
///           DOUBLE PRECISION      AZ     ( NREC )
///           DOUBLE PRECISION      EL     ( NREC )
///           DOUBLE PRECISION      RANGE  ( NREC )
///           DOUBLE PRECISION      RAZ
///           DOUBLE PRECISION      REL
///           DOUBLE PRECISION      RECTAN ( 3 )
///
///           INTEGER               I
///           INTEGER               J
///           INTEGER               K
///           INTEGER               N
///
///           LOGICAL               AZCCW  ( 2 )
///           LOGICAL               ELPLSZ ( 2 )
///
///     C
///     C     Define the input azimuth/elevation coordinates and the
///     C     different choices of the AZCCW and ELPLSZ flags.
///     C
///           DATA                  RANGE   /
///          .                            0.D0,    1.D0,    1.D0,
///          .                            1.D0,    1.D0,    1.D0,
///          .                            1.D0,    1.414D0, 1.414D0,
///          .                            1.414D0, 1.732D0           /
///
///           DATA                  AZ     /
///          .                            0.D0,    0.D0,   270.D0,
///          .                            0.D0,  180.D0,    90.D0,
///          .                            0.D0,  315.D0,     0.D0,
///          .                          270.D0,  315.D0            /
///
///           DATA                  EL     /
///          .                            0.D0,    0.D0,     0.D0,
///          .                          -90.D0,    0.D0,     0.D0,
///          .                           90.D0,    0.D0,   -45.D0,
///          .                          -45.D0,  -35.264D0         /
///
///           DATA                  AZCCW   /  .FALSE.,  .TRUE.  /
///           DATA                  ELPLSZ  /  .FALSE.,  .TRUE.  /
///
///     C
///     C     Create a table for each combination of AZCCW and ELPLSZ.
///     C
///           DO I = 1, 2
///
///              DO J = 1, 2
///
///     C
///     C           Display the flag settings.
///     C
///                 MSG = 'AZCCW = #; ELPLSZ = #'
///                 CALL REPML ( MSG, '#', AZCCW(I),  'C', MSG )
///                 CALL REPML ( MSG, '#', ELPLSZ(J), 'C', MSG )
///
///                 WRITE(*,*)
///                 WRITE(*,'(A)') MSG
///
///     C
///     C           Print the banner.
///     C
///                 WRITE(*,*)
///                 WRITE(*,'(A)') '   RANGE      AZ       EL   '
///          .       //            ' RECT(1)  RECT(2)  RECT(3)'
///                 WRITE(*,'(A)') '  -------  -------  ------- '
///          .       //            ' -------  -------  -------'
///
///     C
///     C           Do the conversion. Input angles in degrees.
///     C
///                 DO N = 1, NREC
///
///                    RAZ = AZ(N) * RPD()
///                    REL = EL(N) * RPD()
///
///                    CALL AZLREC ( RANGE(N), RAZ,       REL,
///          .                       AZCCW(I), ELPLSZ(J), RECTAN )
///
///                    WRITE (*,'(6F9.3)')  RANGE(N), AZ(N), EL(N),
///          .                              RECTAN
///
///                 END DO
///
///              END DO
///
///           END DO
///
///           END
///
///
///     When this program was executed on a Mac/Intel/gfortran/64-bit
///     platform, the output was:
///
///
///     AZCCW = False; ELPLSZ = False
///
///        RANGE      AZ       EL    RECT(1)  RECT(2)  RECT(3)
///       -------  -------  -------  -------  -------  -------
///         0.000    0.000    0.000    0.000    0.000    0.000
///         1.000    0.000    0.000    1.000    0.000    0.000
///         1.000  270.000    0.000   -0.000    1.000    0.000
///         1.000    0.000  -90.000    0.000    0.000    1.000
///         1.000  180.000    0.000   -1.000   -0.000    0.000
///         1.000   90.000    0.000    0.000   -1.000    0.000
///         1.000    0.000   90.000    0.000    0.000   -1.000
///         1.414  315.000    0.000    1.000    1.000    0.000
///         1.414    0.000  -45.000    1.000    0.000    1.000
///         1.414  270.000  -45.000   -0.000    1.000    1.000
///         1.732  315.000  -35.264    1.000    1.000    1.000
///
///     AZCCW = False; ELPLSZ = True
///
///        RANGE      AZ       EL    RECT(1)  RECT(2)  RECT(3)
///       -------  -------  -------  -------  -------  -------
///         0.000    0.000    0.000    0.000    0.000    0.000
///         1.000    0.000    0.000    1.000    0.000    0.000
///         1.000  270.000    0.000   -0.000    1.000    0.000
///         1.000    0.000  -90.000    0.000    0.000   -1.000
///         1.000  180.000    0.000   -1.000   -0.000    0.000
///         1.000   90.000    0.000    0.000   -1.000    0.000
///         1.000    0.000   90.000    0.000    0.000    1.000
///         1.414  315.000    0.000    1.000    1.000    0.000
///         1.414    0.000  -45.000    1.000    0.000   -1.000
///         1.414  270.000  -45.000   -0.000    1.000   -1.000
///         1.732  315.000  -35.264    1.000    1.000   -1.000
///
///     AZCCW = True; ELPLSZ = False
///
///        RANGE      AZ       EL    RECT(1)  RECT(2)  RECT(3)
///       -------  -------  -------  -------  -------  -------
///         0.000    0.000    0.000    0.000    0.000    0.000
///         1.000    0.000    0.000    1.000    0.000    0.000
///         1.000  270.000    0.000   -0.000   -1.000    0.000
///         1.000    0.000  -90.000    0.000    0.000    1.000
///         1.000  180.000    0.000   -1.000    0.000    0.000
///         1.000   90.000    0.000    0.000    1.000    0.000
///         1.000    0.000   90.000    0.000    0.000   -1.000
///         1.414  315.000    0.000    1.000   -1.000    0.000
///         1.414    0.000  -45.000    1.000    0.000    1.000
///         1.414  270.000  -45.000   -0.000   -1.000    1.000
///         1.732  315.000  -35.264    1.000   -1.000    1.000
///
///     AZCCW = True; ELPLSZ = True
///
///        RANGE      AZ       EL    RECT(1)  RECT(2)  RECT(3)
///       -------  -------  -------  -------  -------  -------
///         0.000    0.000    0.000    0.000    0.000    0.000
///         1.000    0.000    0.000    1.000    0.000    0.000
///         1.000  270.000    0.000   -0.000   -1.000    0.000
///         1.000    0.000  -90.000    0.000    0.000   -1.000
///         1.000  180.000    0.000   -1.000    0.000    0.000
///         1.000   90.000    0.000    0.000    1.000    0.000
///         1.000    0.000   90.000    0.000    0.000    1.000
///         1.414  315.000    0.000    1.000   -1.000    0.000
///         1.414    0.000  -45.000    1.000    0.000   -1.000
///         1.414  270.000  -45.000   -0.000   -1.000   -1.000
///         1.732  315.000  -35.264    1.000   -1.000   -1.000
///
///
///  2) Compute the right ascension and declination of the pointing
///     direction of DSS-14 station at a given epoch.
///
///     Task Description
///     ================
///
///     In this example, we will obtain the right ascension and
///     declination of the pointing direction of the DSS-14 station at
///     a given epoch, by converting the station's pointing direction
///     given in azimuth and elevation to rectangular coordinates
///     in the station topocentric reference frame and applying a
///     frame transformation from DSS-14_TOPO to J2000, in order to
///     finally obtain the corresponding right ascension and
///     declination of the pointing vector.
///
///     In order to introduce the usage of the logical flags AZCCW
///     and ELPLSZ, we will assume that the azimuth is measured
///     counterclockwise and the elevation negative towards +Z
///     axis of the DSS-14_TOPO reference frame.
///
///     Kernels
///     =======
///
///     Use the meta-kernel shown below to load the required SPICE
///     kernels.
///
///
///        KPL/MK
///
///        File name: azlrec_ex2.tm
///
///        This meta-kernel is intended to support operation of SPICE
///        example programs. The kernels shown here should not be
///        assumed to contain adequate or correct versions of data
///        required by SPICE-based user applications.
///
///        In order for an application to use this meta-kernel, the
///        kernels referenced here must be present in the user's
///        current working directory.
///
///        The names and contents of the kernels referenced
///        by this meta-kernel are as follows:
///
///          File name                        Contents
///          ---------                        --------
///          naif0011.tls                     Leapseconds
///          earth_720101_070426.bpc          Earth historical
///                                           binary PCK
///          earth_topo_050714.tf             DSN station FK
///
///        \begindata
///
///        KERNELS_TO_LOAD = ( 'naif0011.tls',
///                            'earth_720101_070426.bpc',
///                            'earth_topo_050714.tf'     )
///
///        \begintext
///
///        End of meta-kernel.
///
///
///     Example code begins here.
///
///
///           PROGRAM AZLREC_EX2
///           IMPLICIT NONE
///
///     C
///     C     SPICELIB functions
///     C
///           DOUBLE PRECISION      DPR
///           DOUBLE PRECISION      RPD
///
///     C
///     C     Local parameters
///     C
///           CHARACTER*(*)         FMT0
///           PARAMETER           ( FMT0   = '(A,3F15.8)' )
///
///           CHARACTER*(*)         FMT1
///           PARAMETER           ( FMT1   = '(A,F15.8)' )
///
///           CHARACTER*(*)         META
///           PARAMETER           ( META   = 'azlrec_ex2.tm' )
///
///           INTEGER               FRNMLN
///           PARAMETER           ( FRNMLN = 32 )
///
///           INTEGER               TIMLEN
///           PARAMETER           ( TIMLEN = 40 )
///
///     C
///     C     Local variables
///     C
///           CHARACTER*(40)        MSG
///           CHARACTER*(TIMLEN)    OBSTIM
///           CHARACTER*(FRNMLN)    REF
///
///           DOUBLE PRECISION      AZ
///           DOUBLE PRECISION      AZR
///           DOUBLE PRECISION      DEC
///           DOUBLE PRECISION      EL
///           DOUBLE PRECISION      ELR
///           DOUBLE PRECISION      ET
///           DOUBLE PRECISION      JPOS   ( 3 )
///           DOUBLE PRECISION      PTARG  ( 3 )
///           DOUBLE PRECISION      R
///           DOUBLE PRECISION      RA
///           DOUBLE PRECISION      RANGE
///           DOUBLE PRECISION      ROTATE ( 3, 3 )
///
///           INTEGER               I
///
///           LOGICAL               AZCCW
///           LOGICAL               ELPLSZ
///
///     C
///     C     Load SPICE kernels.
///     C
///           CALL FURNSH ( META )
///
///     C
///     C     Convert the observation time to seconds past J2000 TDB.
///     C
///           OBSTIM = '2003 OCT 13 06:00:00.000000 UTC'
///
///           CALL STR2ET ( OBSTIM, ET )
///
///     C
///     C     Set the local topocentric frame
///     C
///           REF    = 'DSS-14_TOPO'
///
///     C
///     C     Set the station's pointing direction in azimuth and
///     C     elevation. Set arbitrarily the range to 1.0. Azimuth
///     C     and elevation shall be given in radians. Azimuth
///     C     increases counterclockwise and elevation is negative
///     C     towards +Z (above the local horizon)
///     C
///           AZ     =   75.00
///           EL     =  -27.25
///           AZR    =   AZ * RPD()
///           ELR    =   EL * RPD()
///           R      =    1.00
///           AZCCW  = .TRUE.
///           ELPLSZ = .FALSE.
///
///     C
///     C     Obtain the rectangular coordinates of the station's
///     C     pointing direction.
///     C
///           CALL AZLREC ( R, AZR, ELR, AZCCW, ELPLSZ, PTARG )
///
///     C
///     C     Transform the station's pointing vector from the
///     C     local topocentric frame to J2000.
///     C
///           CALL PXFORM ( REF,   'J2000',   ET, ROTATE )
///           CALL MXV    ( ROTATE,  PTARG, JPOS         )
///
///     C
///     C     Compute the right ascension and declination.
///     C     Express both angles in degrees.
///     C
///           CALL RECRAD ( JPOS, RANGE, RA, DEC )
///           RA =   RA * DPR()
///           DEC =   DEC * DPR()
///
///     C
///     C     Display the computed pointing vector, the input
///     C     data and resulting the angles.
///     C
///           WRITE (*,*)
///           WRITE (*,FMT1) 'Pointing azimuth    (deg): ', AZ
///           WRITE (*,FMT1) 'Pointing elevation  (deg): ', EL
///
///           CALL REPML ( 'Azimuth counterclockwise?: #', '#',
///          .              AZCCW, 'C', MSG                    )
///           WRITE (*,'(A)') MSG
///
///           CALL REPML ( 'Elevation positive +Z?   : #', '#',
///          .              ELPLSZ, 'C', MSG                   )
///           WRITE (*,'(A)') MSG
///
///           WRITE (*,'(2A)') 'Observation epoch        : ', OBSTIM
///           WRITE (*,*)
///           WRITE (*,'(A)') 'Pointing direction (normalized):   '
///           WRITE (*,FMT0) '  ', ( PTARG(I), I = 1, 3 )
///           WRITE (*,*)
///           WRITE (*,FMT1) 'Pointing right ascension (deg): ', RA
///           WRITE (*,FMT1) 'Pointing declination (deg):     ', DEC
///           WRITE (*,*)
///
///           END
///
///
///     When this program was executed on a Mac/Intel/gfortran/64-bit
///     platform, the output was:
///
///
///     Pointing azimuth    (deg):     75.00000000
///     Pointing elevation  (deg):    -27.25000000
///     Azimuth counterclockwise?: True
///     Elevation positive +Z?   : False
///     Observation epoch        : 2003 OCT 13 06:00:00.000000 UTC
///
///     Pointing direction (normalized):
///            0.23009457     0.85872462     0.45787392
///
///     Pointing right ascension (deg):    280.06179939
///     Pointing declination (deg):         26.92826084
/// ```
///
/// # Author and Institution
///
/// ```text
///  N.J. Bachman       (JPL)
///  J. Diaz del Rio    (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// -    SPICELIB Version 1.0.0, 08-SEP-2021 (JDR) (NJB)
/// ```
pub fn azlrec(range: f64, az: f64, el: f64, azccw: bool, elplsz: bool, rectan: &mut [f64; 3]) {
    AZLREC(range, az, el, azccw, elplsz, rectan);
}

//$Procedure AZLREC ( AZ/EL to rectangular coordinates )
pub fn AZLREC(RANGE: f64, AZ: f64, EL: f64, AZCCW: bool, ELPLSZ: bool, RECTAN: &mut [f64]) {
    let mut RECTAN = DummyArrayMut::new(RECTAN, 1..=3);
    let mut AZIMUT: f64 = 0.0;
    let mut ELEVAT: f64 = 0.0;

    //
    // Local variables
    //

    //
    // Error free routine. No check-in.
    //
    AZIMUT = AZ;
    ELEVAT = EL;

    //
    // We are going to use RADREC to convert the azimuth and elevation
    // to rectangular coordinates. In RADREC, the right ascension
    // is measured counterclockwise from +X axis about the +Z axis, and
    // the declination is measured positive from the XY plane towards
    // +Z axis.
    //
    // Check the AZCCW and ELPLSZ flags and convert AZ and EL to the
    // coordinate system used by RADREC.
    //
    // If AZCCW is set to .FALSE. the azimuth is measured clockwise
    // from the +X axis about the +Z axis.
    //
    if !AZCCW {
        //
        // We can simply negate AZ; we don't need to map it into the
        // range [0, 2*pi]. LATREC will accept it as is.
        //
        // Negate only non-zero values of AZ. Avoid creating
        // -0.D0 values, which affect printed outputs generated
        // by example programs.
        //
        if (AZ != 0.0) {
            AZIMUT = -AZ;
        }
    }

    //
    // If ELPLSZ is set to .FALSE. the elevation is measured positive
    // from the XY plane towards the -Z axis.
    //
    if !ELPLSZ {
        //
        // Negate only non-zero values of EL. Avoid creating
        // -0.D0 values, which affect printed outputs generated
        // by example programs.
        //
        if (EL != 0.0) {
            ELEVAT = -EL;
        }
    }

    //
    // In principle, we could call the subroutine RADREC to convert AZ
    // and EL to rectangular coordinates. RADREC simply passes its
    // inputs to LATREC, so we bypass the middleman.
    //
    // We rely on LATREC to handle the case of RANGE < 0.
    //
    LATREC(RANGE, AZIMUT, ELEVAT, RECTAN.as_slice_mut());
}