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
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
/// Derivative of rectangular w.r.t. AZ/EL
///
/// Compute the Jacobian matrix of the transformation from
/// azimuth/elevation to rectangular coordinates.
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// RANGE I Distance of a point from the origin.
/// AZ I Azimuth of input point in radians.
/// EL I Elevation of input point in radians.
/// AZCCW I Flag indicating how azimuth is measured.
/// ELPLSZ I Flag indicating how elevation is measured.
/// JACOBI O Matrix of partial derivatives.
/// ```
///
/// # Detailed Input
///
/// ```text
/// RANGE is the distance from the origin of the input point
/// specified by RANGE, AZ, and EL.
///
/// Negative values for RANGE are not allowed.
///
/// Units are arbitrary and are considered to match those
/// of the rectangular coordinate system associated with the
/// output matrix JACOBI.
///
/// 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 AZ increases
/// in the clockwise direction.
///
/// ELPLSZ if 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
/// JACOBI is the matrix of partial derivatives of the
/// transformation from azimuth/elevation to rectangular
/// coordinates. It has the form
///
/// .- -.
/// | DX/DRANGE DX/DAZ DX/DEL |
/// | |
/// | DY/DRANGE DY/DAZ DY/DEL |
/// | |
/// | DZ/DRANGE DZ/DAZ DZ/DEL |
/// `- -'
///
/// evaluated at the input values of RANGE, AZ and EL.
///
/// X, Y, and Z are given by the familiar formulae
///
/// X = RANGE * COS( AZ ) * COS( EL )
/// Y = RANGE * SIN( AZSNSE * AZ ) * COS( EL )
/// Z = RANGE * SIN( ELDIR * EL )
///
/// where AZSNSE is +1 when AZCCW is .TRUE. and -1
/// otherwise, and ELDIR is +1 when ELPLSZ is .TRUE.
/// and -1 otherwise.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If the value of the input parameter RANGE is negative,
/// the error SPICE(VALUEOUTOFRANGE) is signaled.
///
/// 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
/// It is often convenient to describe the motion of an object
/// in azimuth/elevation coordinates. It is also convenient to
/// manipulate vectors associated with the object in rectangular
/// coordinates.
///
/// The transformation of a azimuth/elevation state into an
/// equivalent rectangular state makes use of the Jacobian matrix
/// of the transformation between the two systems.
///
/// Given a state in latitudinal coordinates,
///
/// ( r, az, el, dr, daz, del )
///
/// the velocity in rectangular coordinates is given by the matrix
/// equation
/// t | t
/// (dx, dy, dz) = JACOBI| * (dr, daz, del)
/// |(r,az,el)
///
/// This routine computes the matrix
///
/// |
/// JACOBI|
/// |(r,az,el)
///
/// In the azimuth/elevation coordinate system, several conventions
/// exist on how azimuth and elevation are measured. Using the AZCCW
/// and ELPLSZ flags, users indicate which conventions shall be used.
/// See the descriptions of these input arguments for details.
/// ```
///
/// # Examples
///
/// ```text
/// The numerical results shown for this example 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) Find the azimuth/elevation state of Venus as seen from the
/// DSS-14 station at a given epoch. Map this state back to
/// rectangular coordinates as a check.
///
/// Task description
/// ================
///
/// In this example, we will obtain the apparent state of Venus as
/// seen from the DSS-14 station in the DSS-14 topocentric
/// reference frame. We will use a station frames kernel and
/// transform the resulting rectangular coordinates to azimuth,
/// elevation and range and its derivatives using RECAZL and
/// DAZLDR.
///
/// We will map this state back to rectangular coordinates using
/// AZLREC and DRDAZL.
///
/// In order to introduce the usage of the logical flags AZCCW
/// and ELPLSZ, we will request the azimuth to be measured
/// clockwise and the elevation positive 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: drdazl_ex1.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
/// --------- --------
/// de430.bsp Planetary ephemeris
/// naif0011.tls Leapseconds
/// earth_720101_070426.bpc Earth historical
/// binary PCK
/// earthstns_itrf93_050714.bsp DSN station SPK
/// earth_topo_050714.tf DSN station FK
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de430.bsp',
/// 'naif0011.tls',
/// 'earth_720101_070426.bpc',
/// 'earthstns_itrf93_050714.bsp',
/// 'earth_topo_050714.tf' )
///
/// \begintext
///
/// End of meta-kernel.
///
///
/// Example code begins here.
///
///
/// PROGRAM DRDAZL_EX1
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// DOUBLE PRECISION DPR
///
/// C
/// C Local parameters
/// C
/// CHARACTER*(*) FMT1
/// PARAMETER ( FMT1 = '(A,F20.8)' )
///
/// CHARACTER*(*) META
/// PARAMETER ( META = 'drdazl_ex1.tm' )
///
/// INTEGER BDNMLN
/// PARAMETER ( BDNMLN = 36 )
///
/// INTEGER CORLEN
/// PARAMETER ( CORLEN = 10 )
///
/// INTEGER FRNMLN
/// PARAMETER ( FRNMLN = 32 )
///
/// INTEGER TIMLEN
/// PARAMETER ( TIMLEN = 40 )
///
/// C
/// C Local variables
/// C
/// CHARACTER*(CORLEN) ABCORR
/// CHARACTER*(BDNMLN) OBS
/// CHARACTER*(TIMLEN) OBSTIM
/// CHARACTER*(FRNMLN) REF
/// CHARACTER*(BDNMLN) TARGET
///
/// DOUBLE PRECISION AZ
/// DOUBLE PRECISION AZLVEL ( 3 )
/// DOUBLE PRECISION DRECTN ( 3 )
/// DOUBLE PRECISION EL
/// DOUBLE PRECISION ET
/// DOUBLE PRECISION JACOBI ( 3, 3 )
/// DOUBLE PRECISION LT
/// DOUBLE PRECISION STATE ( 6 )
/// DOUBLE PRECISION R
/// DOUBLE PRECISION RECTAN ( 3 )
///
/// 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 target, observer, observer frame, and
/// C aberration corrections.
/// C
/// TARGET = 'VENUS'
/// OBS = 'DSS-14'
/// REF = 'DSS-14_TOPO'
/// ABCORR = 'CN+S'
///
/// C
/// C Compute the observer-target state.
/// C
/// CALL SPKEZR ( TARGET, ET, REF, ABCORR, OBS,
/// . STATE, LT )
///
/// C
/// C Convert position to azimuth/elevation coordinates,
/// C with azimuth increasing clockwise and elevation
/// C positive towards +Z axis of the DSS-14_TOPO
/// C reference frame
/// C
/// AZCCW = .FALSE.
/// ELPLSZ = .TRUE.
///
/// CALL RECAZL ( STATE, AZCCW, ELPLSZ, R, AZ, EL )
///
/// C
/// C Convert velocity to azimuth/elevation coordinates.
/// C
/// CALL DAZLDR ( STATE(1), STATE(2), STATE(3),
/// . AZCCW, ELPLSZ, JACOBI )
///
/// CALL MXV ( JACOBI, STATE(4), AZLVEL )
///
/// C
/// C As a check, convert the azimuth/elevation state back to
/// C rectangular coordinates.
/// C
/// CALL AZLREC ( R, AZ, EL, AZCCW, ELPLSZ, RECTAN )
///
/// CALL DRDAZL ( R, AZ, EL, AZCCW, ELPLSZ, JACOBI )
///
/// CALL MXV ( JACOBI, AZLVEL, DRECTN )
///
/// WRITE(*,*)
/// WRITE(*,'(A)') 'AZ/EL coordinates:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' Range (km) = ', R
/// WRITE(*,FMT1) ' Azimuth (deg) = ', AZ * DPR()
/// WRITE(*,FMT1) ' Elevation (deg) = ', EL * DPR()
/// WRITE(*,*)
/// WRITE(*,'(A)') 'AZ/EL velocity:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' d Range/dt (km/s) = ', AZLVEL(1)
/// WRITE(*,FMT1) ' d Azimuth/dt (deg/s) = ', AZLVEL(2)
/// . * DPR()
/// WRITE(*,FMT1) ' d Elevation/dt (deg/s) = ', AZLVEL(3)
/// . * DPR()
/// WRITE(*,*)
/// WRITE(*,'(A)') 'Rectangular coordinates:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' X (km) = ', STATE(1)
/// WRITE(*,FMT1) ' Y (km) = ', STATE(2)
/// WRITE(*,FMT1) ' Z (km) = ', STATE(3)
/// WRITE(*,*)
/// WRITE(*,'(A)') 'Rectangular velocity:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' dX/dt (km/s) = ', STATE(4)
/// WRITE(*,FMT1) ' dY/dt (km/s) = ', STATE(5)
/// WRITE(*,FMT1) ' dZ/dt (km/s) = ', STATE(6)
/// WRITE(*,*)
/// WRITE(*,'(A)') 'Rectangular coordinates from inverse '
/// . // 'mapping:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' X (km) = ', RECTAN(1)
/// WRITE(*,FMT1) ' Y (km) = ', RECTAN(2)
/// WRITE(*,FMT1) ' Z (km) = ', RECTAN(3)
/// WRITE(*,*)
/// WRITE(*,'(A)') 'Rectangular velocity from inverse '
/// . // 'mapping:'
/// WRITE(*,*)
/// WRITE(*,FMT1) ' dX/dt (km/s) = ', DRECTN(1)
/// WRITE(*,FMT1) ' dY/dt (km/s) = ', DRECTN(2)
/// WRITE(*,FMT1) ' dZ/dt (km/s) = ', DRECTN(3)
/// WRITE(*,*)
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// AZ/EL coordinates:
///
/// Range (km) = 245721478.99272084
/// Azimuth (deg) = 294.48543372
/// Elevation (deg) = -48.94609726
///
/// AZ/EL velocity:
///
/// d Range/dt (km/s) = -4.68189834
/// d Azimuth/dt (deg/s) = 0.00402256
/// d Elevation/dt (deg/s) = -0.00309156
///
/// Rectangular coordinates:
///
/// X (km) = 66886767.37916667
/// Y (km) = 146868551.77222887
/// Z (km) = -185296611.10841590
///
/// Rectangular velocity:
///
/// dX/dt (km/s) = 6166.04150307
/// dY/dt (km/s) = -13797.77164550
/// dZ/dt (km/s) = -8704.32385654
///
/// Rectangular coordinates from inverse mapping:
///
/// X (km) = 66886767.37916658
/// Y (km) = 146868551.77222890
/// Z (km) = -185296611.10841590
///
/// Rectangular velocity from inverse mapping:
///
/// dX/dt (km/s) = 6166.04150307
/// dY/dt (km/s) = -13797.77164550
/// dZ/dt (km/s) = -8704.32385654
/// ```
///
/// # 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 drdazl(
ctx: &mut SpiceContext,
range: f64,
az: f64,
el: f64,
azccw: bool,
elplsz: bool,
jacobi: &mut [[f64; 3]; 3],
) -> crate::Result<()> {
DRDAZL(
range,
az,
el,
azccw,
elplsz,
jacobi.as_flattened_mut(),
ctx.raw_context(),
)?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure DRDAZL ( Derivative of rectangular w.r.t. AZ/EL )
pub fn DRDAZL(
RANGE: f64,
AZ: f64,
EL: f64,
AZCCW: bool,
ELPLSZ: bool,
JACOBI: &mut [f64],
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let mut JACOBI = DummyArrayMut2D::new(JACOBI, 1..=3, 1..=3);
let mut LAT: f64 = 0.0;
let mut LON: f64 = 0.0;
let mut AZSNSE: i32 = 0;
let mut ELDIR: i32 = 0;
//
// SPICELIB functions
//
//
// Local variables
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
}
CHKIN(b"DRDAZL", ctx)?;
//
// The input range must be non-negative. If not, signal an error
// and check out.
//
if (RANGE < 0.0) {
SETMSG(b"Input range was #. Negative values are not allowed.", ctx);
ERRDP(b"#", RANGE, ctx);
SIGERR(b"SPICE(VALUEOUTOFRANGE)", ctx)?;
CHKOUT(b"DRDAZL", ctx)?;
return Ok(());
}
//
// Convert the input azimuth and elevation to the equivalent
// latitudinal coordinates, and define the rotation sense for the
// azimuth and direction for the elevation
//
if AZCCW {
LON = AZ;
AZSNSE = 1;
} else {
LON = -AZ;
AZSNSE = -1;
}
if ELPLSZ {
LAT = EL;
ELDIR = 1;
} else {
LAT = -EL;
ELDIR = -1;
}
//
// Now we have the latitudinal equivalent coordinates, use them to
// find the Jacobian matrix of rectangular coordinates with respect
// to latitudinal coordinates.
//
DRDLAT(RANGE, LON, LAT, JACOBI.as_slice_mut());
//
// The matrix JACOBI is
//
// .- -.
// | DX/DRANGE DX/DLON DX/DLAT |
// | DY/DRANGE DY/DLON DY/DLAT |
// | DZ/DRANGE DZ/DLON DZ/DLAT |
// `- -'
//
// Given that
//
// LON = AZSNSE * AZ
// LAT = ELDIR * EL
//
// applying the chain rule to derivative of each Cartesian
// component with respect to the latitude and longitude, the matrix
// above is equivalent to
//
// .- -.
// | DX/DRANGE (1/AZSNSE) * DX/DAZ (1/ELDIR) * DX/DEL |
// | DY/DRANGE (1/AZSNSE) * DY/DAZ (1/ELDIR) * DY/DEL |
// | DZ/DRANGE (1/AZSNSE) * DZ/DAZ (1/ELDIR) * DZ/DEL |
// `- -'
//
// We have
//
// AZSNSE = 1 / AZSNSE
// ELDIR = 1 / ELDIR
//
// So, multiplying the second column of JACOBI by AZSNSE and the
// third column of JACOBI by ELDIR gives us the matrix we actually
// want to compute: the Jacobian matrix of rectangular
// coordinates with respect to azimuth/elevation coordinates.
//
for I in 1..=3 {
JACOBI[[I, 2]] = ((AZSNSE as f64) * JACOBI[[I, 2]]);
JACOBI[[I, 3]] = ((ELDIR as f64) * JACOBI[[I, 3]]);
}
CHKOUT(b"DRDAZL", ctx)?;
Ok(())
}