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
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
const DX: i32 = 1;
const DY: i32 = 2;
const DZ: i32 = 3;
const DLON: i32 = 1;
const DLAT: i32 = 2;
const DALT: i32 = 3;
/// Derivative of rectangular w.r.t. geodetic
///
/// Compute the Jacobian matrix of the transformation from geodetic
/// to rectangular coordinates.
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// LON I Geodetic longitude of point (radians).
/// LAT I Geodetic latitude of point (radians).
/// ALT I Altitude of point above the reference spheroid.
/// RE I Equatorial radius of the reference spheroid.
/// F I Flattening coefficient.
/// JACOBI O Matrix of partial derivatives.
/// ```
///
/// # Detailed Input
///
/// ```text
/// LON is the geodetic longitude of point (radians).
///
/// LAT is the geodetic latitude of point (radians).
///
/// ALT is the altitude of point above the reference spheroid.
///
/// RE is the equatorial radius of the reference spheroid.
///
/// F is the flattening coefficient = (RE-RP) / RE, where
/// RP is the polar radius of the spheroid. (More
/// importantly RP = RE*(1-F).)
/// ```
///
/// # Detailed Output
///
/// ```text
/// JACOBI is the matrix of partial derivatives of the conversion
/// between geodetic and rectangular coordinates. It
/// has the form
///
/// .- -.
/// | DX/DLON DX/DLAT DX/DALT |
/// | DY/DLON DY/DLAT DY/DALT |
/// | DZ/DLON DZ/DLAT DZ/DALT |
/// `- -'
///
/// evaluated at the input values of LON, LAT and ALT.
///
/// The formulae for computing X, Y, and Z from
/// geodetic coordinates are given below.
///
/// X = [ALT + RE/G(LAT,F)]*COS(LON)*COS(LAT)
/// Y = [ALT + RE/G(LAT,F)]*SIN(LON)*COS(LAT)
/// Z = [ALT + RE*(1-F)**2/G(LAT,F)]* SIN(LAT)
///
/// where
///
/// RE is the polar radius of the reference spheroid.
///
/// F is the flattening factor (the polar radius is
/// obtained by multiplying the equatorial radius by
/// 1-F).
///
/// G( LAT, F ) is given by
///
/// sqrt ( cos(lat)**2 + (1-f)**2 * sin(lat)**2 )
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If the flattening coefficient is greater than or equal to
/// one, the error SPICE(VALUEOUTOFRANGE) is signaled.
///
/// 2) If the equatorial radius is non-positive, the error
/// SPICE(BADRADIUS) is signaled.
/// ```
///
/// # Particulars
///
/// ```text
/// It is often convenient to describe the motion of an object in
/// the geodetic coordinate system. However, when performing
/// vector computations its hard to beat rectangular coordinates.
///
/// To transform states given with respect to geodetic coordinates
/// to states with respect to rectangular coordinates, one makes use
/// of the Jacobian of the transformation between the two systems.
///
/// Given a state in geodetic coordinates
///
/// ( lon, lat, alt, dlon, dlat, dalt )
///
/// the velocity in rectangular coordinates is given by the matrix
/// equation:
///
/// t | t
/// (dx, dy, dz) = JACOBI| * (dlon, dlat, dalt)
/// |(lon,lat,alt)
///
///
/// This routine computes the matrix
///
/// |
/// JACOBI|
/// |(lon,lat,alt)
/// ```
///
/// # 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 geodetic state of the earth as seen from
/// Mars in the IAU_MARS reference frame at January 1, 2005 TDB.
/// Map this state back to rectangular coordinates as a check.
///
/// Use the meta-kernel shown below to load the required SPICE
/// kernels.
///
///
/// KPL/MK
///
/// File name: drdgeo_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
/// --------- --------
/// de421.bsp Planetary ephemeris
/// pck00010.tpc Planet orientation and
/// radii
/// naif0009.tls Leapseconds
///
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de421.bsp',
/// 'pck00010.tpc',
/// 'naif0009.tls' )
///
/// \begintext
///
/// End of meta-kernel
///
///
/// Example code begins here.
///
///
/// PROGRAM DRDGEO_EX1
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// DOUBLE PRECISION RPD
///
/// C
/// C Local parameters
/// C
/// CHARACTER*(*) FMT1
/// PARAMETER ( FMT1 = '(A,E18.8)' )
///
/// C
/// C Local variables
/// C
/// DOUBLE PRECISION ALT
/// DOUBLE PRECISION DRECTN ( 3 )
/// DOUBLE PRECISION ET
/// DOUBLE PRECISION F
/// DOUBLE PRECISION JACOBI ( 3, 3 )
/// DOUBLE PRECISION LAT
/// DOUBLE PRECISION LON
/// DOUBLE PRECISION LT
/// DOUBLE PRECISION GEOVEL ( 3 )
/// DOUBLE PRECISION RADII ( 3 )
/// DOUBLE PRECISION RE
/// DOUBLE PRECISION RECTAN ( 3 )
/// DOUBLE PRECISION RP
/// DOUBLE PRECISION STATE ( 6 )
///
/// INTEGER N
///
/// C
/// C Load SPK, PCK, and LSK kernels, use a meta kernel for
/// C convenience.
/// C
/// CALL FURNSH ( 'drdgeo_ex1.tm' )
///
/// C
/// C Look up the radii for Mars. Although we
/// C omit it here, we could first call BADKPV
/// C to make sure the variable BODY499_RADII
/// C has three elements and numeric data type.
/// C If the variable is not present in the kernel
/// C pool, BODVRD will signal an error.
/// C
/// CALL BODVRD ( 'MARS', 'RADII', 3, N, RADII )
///
/// C
/// C Compute flattening coefficient.
/// C
/// RE = RADII(1)
/// RP = RADII(3)
/// F = ( RE - RP ) / RE
///
/// C
/// C Look up the apparent state of earth as seen from Mars
/// C at January 1, 2005 TDB, relative to the IAU_MARS
/// C reference frame.
/// C
/// CALL STR2ET ( 'January 1, 2005 TDB', ET )
///
/// CALL SPKEZR ( 'Earth', ET, 'IAU_MARS', 'LT+S',
/// . 'Mars', STATE, LT )
///
/// C
/// C Convert position to geodetic coordinates.
/// C
/// CALL RECGEO ( STATE, RE, F, LON, LAT, ALT )
///
/// C
/// C Convert velocity to geodetic coordinates.
/// C
///
/// CALL DGEODR ( STATE(1), STATE(2), STATE(3),
/// . RE, F, JACOBI )
///
/// CALL MXV ( JACOBI, STATE(4), GEOVEL )
///
/// C
/// C As a check, convert the geodetic state back to
/// C rectangular coordinates.
/// C
/// CALL GEOREC ( LON, LAT, ALT, RE, F, RECTAN )
///
/// CALL DRDGEO ( LON, LAT, ALT, RE, F, JACOBI )
///
/// CALL MXV ( JACOBI, GEOVEL, DRECTN )
///
///
/// WRITE(*,*) ' '
/// WRITE(*,*) 'Rectangular coordinates:'
/// WRITE(*,*) ' '
/// WRITE(*,FMT1) ' X (km) = ', STATE(1)
/// WRITE(*,FMT1) ' Y (km) = ', STATE(2)
/// WRITE(*,FMT1) ' Z (km) = ', STATE(3)
/// WRITE(*,*) ' '
/// WRITE(*,*) '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(*,*) 'Ellipsoid shape parameters: '
/// WRITE(*,*) ' '
/// WRITE(*,FMT1) ' Equatorial radius (km) = ', RE
/// WRITE(*,FMT1) ' Polar radius (km) = ', RP
/// WRITE(*,FMT1) ' Flattening coefficient = ', F
/// WRITE(*,*) ' '
/// WRITE(*,*) 'Geodetic coordinates:'
/// WRITE(*,*) ' '
/// WRITE(*,FMT1) ' Longitude (deg) = ', LON / RPD()
/// WRITE(*,FMT1) ' Latitude (deg) = ', LAT / RPD()
/// WRITE(*,FMT1) ' Altitude (km) = ', ALT
/// WRITE(*,*) ' '
/// WRITE(*,*) 'Geodetic velocity:'
/// WRITE(*,*) ' '
/// WRITE(*,FMT1) ' d Longitude/dt (deg/s) = ',
/// . GEOVEL(1)/RPD()
/// WRITE(*,FMT1) ' d Latitude/dt (deg/s) = ',
/// . GEOVEL(2)/RPD()
/// WRITE(*,FMT1) ' d Altitude/dt (km/s) = ', GEOVEL(3)
/// WRITE(*,*) ' '
/// WRITE(*,*) '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(*,*) '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:
///
///
/// Rectangular coordinates:
///
/// X (km) = -0.76096183E+08
/// Y (km) = 0.32436380E+09
/// Z (km) = 0.47470484E+08
///
/// Rectangular velocity:
///
/// dX/dt (km/s) = 0.22952075E+05
/// dY/dt (km/s) = 0.53760111E+04
/// dZ/dt (km/s) = -0.20881149E+02
///
/// Ellipsoid shape parameters:
///
/// Equatorial radius (km) = 0.33961900E+04
/// Polar radius (km) = 0.33762000E+04
/// Flattening coefficient = 0.58860076E-02
///
/// Geodetic coordinates:
///
/// Longitude (deg) = 0.10320290E+03
/// Latitude (deg) = 0.81089876E+01
/// Altitude (km) = 0.33653182E+09
///
/// Geodetic velocity:
///
/// d Longitude/dt (deg/s) = -0.40539288E-02
/// d Latitude/dt (deg/s) = -0.33189934E-05
/// d Altitude/dt (km/s) = -0.11211601E+02
///
/// Rectangular coordinates from inverse mapping:
///
/// X (km) = -0.76096183E+08
/// Y (km) = 0.32436380E+09
/// Z (km) = 0.47470484E+08
///
/// Rectangular velocity from inverse mapping:
///
/// dX/dt (km/s) = 0.22952075E+05
/// dY/dt (km/s) = 0.53760111E+04
/// dZ/dt (km/s) = -0.20881149E+02
/// ```
///
/// # Author and Institution
///
/// ```text
/// J. Diaz del Rio (ODC Space)
/// W.L. Taber (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.1.0, 26-OCT-2021 (JDR)
///
/// Changed the input argument name LONG to LON for consistency
/// with other routines.
///
/// Edited the header to comply with NAIF standard.
/// Added complete code example.
///
/// - SPICELIB Version 1.0.0, 20-JUL-2001 (WLT)
/// ```
pub fn drdgeo(
ctx: &mut SpiceContext,
lon: f64,
lat: f64,
alt: f64,
re: f64,
f: f64,
jacobi: &mut [[f64; 3]; 3],
) -> crate::Result<()> {
DRDGEO(
lon,
lat,
alt,
re,
f,
jacobi.as_flattened_mut(),
ctx.raw_context(),
)?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure DRDGEO ( Derivative of rectangular w.r.t. geodetic )
pub fn DRDGEO(
LON: f64,
LAT: f64,
ALT: f64,
RE: f64,
F: f64,
JACOBI: &mut [f64],
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let mut JACOBI = DummyArrayMut2D::new(JACOBI, 1..=3, 1..=3);
let mut CLAT: f64 = 0.0;
let mut CLON: f64 = 0.0;
let mut DGDLAT: f64 = 0.0;
let mut G: f64 = 0.0;
let mut SLAT: f64 = 0.0;
let mut SLON: f64 = 0.0;
let mut FLAT: f64 = 0.0;
let mut FLAT2: f64 = 0.0;
let mut G2: f64 = 0.0;
//
// SPICELIB functions
//
//
// Local parameters
//
//
// Local variables
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
} else {
CHKIN(b"DRDGEO", ctx)?;
}
//
// If the flattening coefficient is greater than one, the polar
// radius computed below is negative. If it's equal to one, the
// polar radius is zero. Either case is a problem, so signal an
// error and check out.
//
if (F >= 1.0) {
SETMSG(b"Flattening coefficient was *.", ctx);
ERRDP(b"*", F, ctx);
SIGERR(b"SPICE(VALUEOUTOFRANGE)", ctx)?;
CHKOUT(b"DRDGEO", ctx)?;
return Ok(());
}
if (RE <= 0.0) {
SETMSG(b"Equatorial Radius <= 0.0D0. RE = *", ctx);
ERRDP(b"*", RE, ctx);
SIGERR(b"SPICE(BADRADIUS)", ctx)?;
CHKOUT(b"DRDGEO", ctx)?;
return Ok(());
}
//
// For the record, here is a derivation of the formulae for the
// values of x, y and z as a function of longitude, latitude and
// altitude.
//
// First, let's take the case where the longitude is 0. Moreover,
// lets assume that the length of the equatorial axis is a and
// that the polar axis is b:
//
// a = re
// b = re * (1-f)
//
// For any point on the spheroid where y is zero we know that there
// is a unique q in the range (-Pi, Pi] such that
//
// x = a cos(q) and z = b sin(q).
//
// The normal to the surface at such a point is given by
//
// cos(q) sin(q)
// ( ------- , ------- )
// a b
//
// The unit vector in the same direction is
//
// b cos(q) a sin(q)
// ( -------------------------- , -------------------------- )
// ______________________ ______________________
// / 2 2 2 2 / 2 2 2 2
// \/ b cos (q) + a sin (q) \/ b cos (q) + a sin (q)
//
//
// The first component of this term is by definition equal to the
// cosine of the geodetic latitude, thus
//
// ______________________
// / 2 2 2 2
// b cos(q) = cos(lat) \/ b cos (q) + a sin (q)
//
//
// This can be transformed to the equation
//
// ______________________________
// / 2 2 2 2
// b cos(q) = cos(lat) \/ ( b - a )cos (q) + a
//
//
// Squaring both sides and rearranging terms gives:
//
// 2 2 2 2 2 2 2 2
// b cos (q) + cos (lat) ( a - b ) cos (q) = a cos (lat)
//
// Thus
// 2 2
// 2 a cos (lat)
// cos (q) = --------------------------
// 2 2 2 2
// b sin (lat) + a cos (lat)
//
//
//
// cos (lat)
// = ------------------------------
// _____________________________
// / 2 2 2
// \/ (b/a) sin (lat) + cos (lat)
//
//
//
// cos (lat)
// = ---------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
//
// From this one can also conclude that
//
//
// (1-f) sin (lat)
// sin(q) = ----------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
//
// Thus the point on the surface of the spheroid is given by
//
// re * cos (lat)
// x_0 = ---------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
//
// 2
// re * (1-f) sin (lat)
// z_0 = ----------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
// Thus given a point with the same latitude but a non-zero
// longitude, one can conclude that
//
// re * cos (lon) *cos (lat)
// x_0 = ---------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
//
// re * sin (lon) cos (lat)
// y_0 = ---------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
// 2
// re * (1-f) sin (lat)
// z_0 = ----------------------------------
// _____________________________
// / 2 2 2
// \/ (1-f) sin (lat) + cos (lat)
//
//
// The unit normal, n, at this point is simply
//
// ( cos(lon)cos(lat), sin(lon)cos(lat), sin(lat) )
//
//
// Thus for a point at altitude alt, we simply add the vector
//
// alt*n
//
// to the vector ( x_0, y_0, z_0 ). Hence we have
//
// x = [ alt + re/g(lat,f) ] * cos(lon) * cos(lat)
// y = [ alt + re/g(lat,f) ] * sin(lon) * cos(lat)
// z = [ alt + re*(1-f)**2/g(lat,f) ] * sin(lat)
//
//
// We're going to need the sine and cosine of LAT and LON many
// times. We'll just compute them once.
//
CLAT = f64::cos(LAT);
CLON = f64::cos(LON);
SLAT = f64::sin(LAT);
SLON = f64::sin(LON);
//
// Referring to the G given in the header we have...
//
FLAT = (1.0 - F);
FLAT2 = (FLAT * FLAT);
G = f64::sqrt(((CLAT * CLAT) + ((FLAT2 * SLAT) * SLAT)));
G2 = (G * G);
DGDLAT = ((((-1.0 + FLAT2) * SLAT) * CLAT) / G);
//
// Now simply take the partial derivatives of the x,y,z w.r.t.
// lon, lat, alt.
//
JACOBI[[DX, DLON]] = -(((ALT + (RE / G)) * SLON) * CLAT);
JACOBI[[DY, DLON]] = (((ALT + (RE / G)) * CLON) * CLAT);
JACOBI[[DZ, DLON]] = 0.0;
JACOBI[[DX, DLAT]] =
(((-((RE * DGDLAT) / G2) * CLON) * CLAT) - (((ALT + (RE / G)) * CLON) * SLAT));
JACOBI[[DY, DLAT]] =
(((-((RE * DGDLAT) / G2) * SLON) * CLAT) - (((ALT + (RE / G)) * SLON) * SLAT));
JACOBI[[DZ, DLAT]] =
((-(((FLAT2 * RE) * DGDLAT) / G2) * SLAT) + ((ALT + ((FLAT2 * RE) / G)) * CLAT));
JACOBI[[DX, DALT]] = (CLON * CLAT);
JACOBI[[DY, DALT]] = (SLON * CLAT);
JACOBI[[DZ, DALT]] = SLAT;
CHKOUT(b"DRDGEO", ctx)?;
Ok(())
}