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
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
const ND: i32 = 2;
const NI: i32 = 6;
const DTYPE: i32 = 6;
/// C-kernel, number of mini-segments, type 06
///
/// Return the number of mini-segments in a type 6 CK segment, given
/// the handle of the type 6 CK file and the segment's descriptor.
///
/// # Required Reading
///
/// * [CK](crate::required_reading::ck)
/// * [DAF](crate::required_reading::daf)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// HANDLE I The handle of the file containing the segment.
/// DESCR I The descriptor of the type 6 segment.
/// NMINI O The number of pointing instances in the segment.
/// ```
///
/// # Detailed Input
///
/// ```text
/// HANDLE is the handle of the binary CK file containing the
/// segment. Normally the CK file should be open for
/// read access. See the $Files section below for details.
///
/// DESCR is the DAF descriptor of a CK data type 6 segment.
/// ```
///
/// # Detailed Output
///
/// ```text
/// NMINI is the number of mini-segments in the CK segment
/// identified by HANDLE and DESCR.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If the segment indicated by DESCR is not a type 6 segment,
/// the error SPICE(CKWRONGDATATYPE) is signaled.
///
/// 2) If the specified handle does not belong to any DAF file that
/// is currently known to be open, an error is signaled by a
/// routine in the call tree of this routine.
///
/// 3) If DESCR is not a valid descriptor of a valid segment in the
/// CK file specified by HANDLE, the results of this routine are
/// unpredictable.
/// ```
///
/// # Files
///
/// ```text
/// The CK file specified by HANDLE may be open for read or write
/// access. Normally, the file should have been opened for read
/// access. If the file is open for write access, the calling
/// application must ensure integrity of the CK segment being read.
/// If the structure of the segment is invalid---for example, if the
/// segment has been partially written---this routine will either
/// return invalid results, or it will cause a system-level runtime
/// error.
/// ```
///
/// # Particulars
///
/// ```text
/// For a complete description of the internal structure of a type 6
/// segment, see the CK required reading.
///
/// This routine returns the number of discrete pointing instances
/// contained in the specified segment. It is normally used in
/// conjunction with CKMN06, which returns mini-segment parameters,
/// and with CKGR06, which returns a specified pointing instance
/// from a mini-segment.
/// ```
///
/// # 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) The following program dumps records from a CK file that
/// contains only type 6 segments.
///
///
/// Example code begins here.
///
///
/// PROGRAM CKNM06_EX1
/// IMPLICIT NONE
///
/// C
/// C Dump all records from a CK that
/// C contains only segments of type 6.
/// C
/// INCLUDE 'ck06.inc'
///
/// C
/// C Local parameters
/// C
/// INTEGER ND
/// PARAMETER ( ND = 2 )
///
/// INTEGER NI
/// PARAMETER ( NI = 6 )
///
/// INTEGER DSCSIZ
/// PARAMETER ( DSCSIZ = 5 )
///
/// INTEGER FILSIZ
/// PARAMETER ( FILSIZ = 255 )
///
/// C
/// C RECSIZ is the size of the largest pointing
/// C record, which corresponds to subtype 2.
/// C
/// INTEGER RECSIZ
/// PARAMETER ( RECSIZ = C06PS2 + 3 )
///
/// C
/// C Local variables
/// C
/// CHARACTER*(FILSIZ) CK
///
/// DOUBLE PRECISION DC ( ND )
/// DOUBLE PRECISION DESCR ( DSCSIZ )
/// DOUBLE PRECISION IVLBDS ( 2 )
/// DOUBLE PRECISION LSTEPC
/// DOUBLE PRECISION RATE
/// DOUBLE PRECISION RECORD ( RECSIZ )
///
/// INTEGER DTYPE
/// INTEGER HANDLE
/// INTEGER IC ( NI )
/// INTEGER RECNO
/// INTEGER MSNO
/// INTEGER NMINI
/// INTEGER NREC
/// INTEGER SEGNO
/// INTEGER SUBTYP
/// INTEGER WINSIZ
///
/// LOGICAL FOUND
///
///
/// CALL PROMPT ( 'Enter name of CK to dump > ', CK )
///
/// CALL DAFOPR ( CK, HANDLE )
///
/// C
/// C Dump data from each CK segment.
/// C
/// SEGNO = 0
///
/// CALL DAFBFS ( HANDLE )
/// CALL DAFFNA ( FOUND )
///
/// DO WHILE ( FOUND )
///
/// SEGNO = SEGNO + 1
///
/// WRITE (*,*) ' '
/// WRITE (*,*) ' '
/// WRITE (*,*) 'Segment number: ', SEGNO
///
/// C
/// C Fetch and unpack the descriptor of the
/// C current segment; check the data type.
/// C
/// CALL DAFGS ( DESCR )
/// CALL DAFUS ( DESCR, ND, NI, DC, IC )
///
/// DTYPE = IC(3)
///
/// IF ( DTYPE .NE. 6 ) THEN
///
/// CALL SETMSG ( 'Data type must be 6 but was #.' )
/// CALL ERRINT ( '#', DTYPE )
/// CALL SIGERR ( 'SPICE(NOTSUPPORTED)' )
///
/// END IF
///
/// C
/// C Get the mini-segment count for this
/// C segment.
/// C
/// CALL CKNM06 ( HANDLE, DESCR, NMINI )
///
/// C
/// C Dump data from each mini-segment.
/// C
/// DO MSNO = 1, NMINI
///
/// C
/// C Get the mini-segment's record count
/// C and time bounds.
/// C
/// CALL CKMP06 ( HANDLE, DESCR, MSNO,
/// . RATE, SUBTYP, WINSIZ,
/// . NREC, IVLBDS, LSTEPC )
///
/// WRITE (*,*) ' '
/// WRITE (*,*) ' Mini-segment number: ', MSNO
/// WRITE (*,*) ' Rate: ', RATE
/// WRITE (*,*) ' Subtype: ', SUBTYP
/// WRITE (*,*) ' Window size: ', WINSIZ
/// WRITE (*,*) ' Interval start: ', IVLBDS(1)
/// WRITE (*,*) ' Interval stop: ', IVLBDS(2)
/// WRITE (*,*) ' Last epoch: ', LSTEPC
/// WRITE (*,*) ' '
///
/// DO RECNO = 1, NREC
///
/// CALL CKGR06 ( HANDLE, DESCR,
/// . MSNO, RECNO, RECORD )
///
/// WRITE (*,*) ' Record number: ', RECNO
/// WRITE (*,*) ' SCLKDP: ', RECORD(1)
/// WRITE (*,*) ' Clock rate: ', RECORD(3)
///
/// IF ( SUBTYP .EQ. C06TP0 ) THEN
///
/// WRITE (*,*) ' Q(0): ', RECORD(4)
/// WRITE (*,*) ' Q(1): ', RECORD(5)
/// WRITE (*,*) ' Q(2): ', RECORD(6)
/// WRITE (*,*) ' Q(3): ', RECORD(7)
/// WRITE (*,*) ' d Q(0)/dt: ', RECORD(8)
/// WRITE (*,*) ' d Q(1)/dt: ', RECORD(9)
/// WRITE (*,*) ' d Q(2)/dt: ', RECORD(10)
/// WRITE (*,*) ' d Q(3)/dt: ', RECORD(11)
///
/// ELSE IF ( SUBTYP .EQ. C06TP1 ) THEN
///
/// WRITE (*,*) ' Q(0): ', RECORD(4)
/// WRITE (*,*) ' Q(1): ', RECORD(5)
/// WRITE (*,*) ' Q(2): ', RECORD(6)
/// WRITE (*,*) ' Q(3): ', RECORD(7)
///
/// ELSE IF ( SUBTYP .EQ. C06TP2 ) THEN
///
/// WRITE (*,*) ' Q(0): ', RECORD(4)
/// WRITE (*,*) ' Q(1): ', RECORD(5)
/// WRITE (*,*) ' Q(2): ', RECORD(6)
/// WRITE (*,*) ' Q(3): ', RECORD(7)
/// WRITE (*,*) ' d Q(0)/dt: ', RECORD(8)
/// WRITE (*,*) ' d Q(1)/dt: ', RECORD(9)
/// WRITE (*,*) ' d Q(2)/dt: ', RECORD(10)
/// WRITE (*,*) ' d Q(3)/dt: ', RECORD(11)
/// WRITE (*,*) ' AV(1): ', RECORD(12)
/// WRITE (*,*) ' AV(2): ', RECORD(13)
/// WRITE (*,*) ' AV(3): ', RECORD(14)
/// WRITE (*,*) ' d AV(1)/dt: ', RECORD(15)
/// WRITE (*,*) ' d AV(2)/dt: ', RECORD(16)
/// WRITE (*,*) ' d AV(3)/dt: ', RECORD(17)
///
/// ELSE IF ( SUBTYP .EQ. C06TP3 ) THEN
///
/// WRITE (*,*) ' Q(0): ', RECORD(4)
/// WRITE (*,*) ' Q(1): ', RECORD(5)
/// WRITE (*,*) ' Q(2): ', RECORD(6)
/// WRITE (*,*) ' Q(3): ', RECORD(7)
/// WRITE (*,*) ' AV(1): ', RECORD(8)
/// WRITE (*,*) ' AV(2): ', RECORD(9)
/// WRITE (*,*) ' AV(3): ', RECORD(10)
///
/// ELSE
/// CALL SETMSG ( 'Subtype # is not '
/// . // 'recognized.' )
/// CALL ERRINT ( '#', SUBTYP )
/// CALL SIGERR ( 'SPICE(NOTSUPPORTED)' )
/// END IF
///
/// WRITE (*,*) ' '
///
/// END DO
///
/// END DO
///
/// CALL DAFFNA ( FOUND )
///
/// END DO
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, using the Rosetta CK file named
/// RATT_DV_257_02_01_T6_00344.BC, the output was:
///
///
/// Enter name of CK to dump > RATT_DV_257_02_01_T6_00344.BC
///
///
/// Segment number: 1
///
/// Mini-segment number: 1
/// Rate: 1.5258789062500000E-005
/// Subtype: 1
/// Window size: 10
/// Interval start: 24471796593941.691
/// Interval stop: 24472844252095.523
/// Last epoch: 24472844252095.523
///
/// Record number: 1
/// SCLKDP: 24471796593941.691
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.95514652599900884
/// Q(1): 0.16277660709912350
/// Q(2): 0.11688592199582469
/// Q(3): -0.21802883133317097
///
/// Record number: 2
/// SCLKDP: 24472234538651.801
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.95746293340938016
/// Q(1): 0.14880147654385018
/// Q(2): 0.12021705739210503
/// Q(3): -0.21603405018065600
///
/// Record number: 3
/// SCLKDP: 24472676416997.039
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.95956954083287593
/// Q(1): 0.13478976855182764
/// Q(2): 0.12355113537344563
/// Q(3): -0.21399329790313779
///
/// Record number: 4
/// SCLKDP: 24472844252095.523
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96030932381589129
/// Q(1): 0.12949634043544370
/// Q(2): 0.12480922302154081
/// Q(3): -0.21321200307405938
///
///
/// Mini-segment number: 2
/// Rate: 1.5258789062500000E-005
/// Subtype: 1
/// Window size: 10
/// Interval start: 24472844252095.523
/// Interval stop: 24472863912889.105
/// Last epoch: 24472863912889.105
///
/// Record number: 1
/// SCLKDP: 24472844252095.523
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96030932403888680
/// Q(1): 0.12949633879120778
/// Q(2): 0.12480922338599261
/// Q(3): -0.21321200285498659
///
/// Record number: 2
/// SCLKDP: 24472851309816.297
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96035266600496283
/// Q(1): 0.12922730685291675
/// Q(2): 0.12480259688433022
/// Q(3): -0.21318389214860939
///
/// Record number: 3
/// SCLKDP: 24472859879905.805
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96041575813224878
/// Q(1): 0.12886248165419970
/// Q(2): 0.12474605317805663
/// Q(3): -0.21315359384649502
///
/// Record number: 4
/// SCLKDP: 24472863912889.105
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96043784177251290
/// Q(1): 0.12871819083493355
/// Q(2): 0.12475418449192528
/// Q(3): -0.21313651233726627
///
///
/// Mini-segment number: 3
/// Rate: 1.5258789062500000E-005
/// Subtype: 1
/// Window size: 10
/// Interval start: 24472863912889.105
/// Interval stop: 24473139163999.207
/// Last epoch: 24473139163999.207
///
/// Record number: 1
/// SCLKDP: 24472863912889.105
/// Clock rate: 1.5258789062500000E-005
/// Q(0): -0.96043784177455394
/// Q(1): 0.12871819083614683
///
/// [...]
///
///
/// Warning: incomplete output. Only 100 out of 2378824 lines have
/// been provided.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// J.M. Lynch (JPL)
/// B.V. Semenov (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.0.1, 12-AUG-2021 (JDR)
///
/// Edited the header to comply with NAIF standard.
///
/// - SPICELIB Version 1.0.0, 14-MAR-2014 (NJB) (JML) (BVS)
/// ```
pub fn cknm06(
ctx: &mut SpiceContext,
handle: i32,
descr: &[f64],
nmini: &mut i32,
) -> crate::Result<()> {
CKNM06(handle, descr, nmini, ctx.raw_context())?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure CKNM06 ( C-kernel, number of mini-segments, type 06 )
pub fn CKNM06(
HANDLE: i32,
DESCR: &[f64],
NMINI: &mut i32,
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let DESCR = DummyArray::new(DESCR, 1..);
let mut DC = StackArray::<f64, 2>::new(1..=ND);
let mut DPDATA = StackArray::<f64, 1>::new(1..=1);
let mut IC = StackArray::<i32, 6>::new(1..=NI);
//
// SPICELIB functions
//
//
// Local parameters
//
// ND is the number of double precision components in an
// unpacked C-kernel descriptor.
//
// NI is the number of integer components in an unpacked
// C-kernel descriptor.
//
// DTYPE is the data type of the segment that this routine
// operates on.
//
//
// Local variables
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
}
CHKIN(b"CKNM06", ctx)?;
//
// The number of discrete pointing instances contained in a data
// type 6 segment is stored in the last double precision word of the
// segment. Since the address of the last word is stored in the
// sixth integer component of the segment descriptor, it is a
// trivial matter to extract the count.
//
// The unpacked descriptor contains the following information
// about the segment:
//
// DC(1) Initial encoded SCLK
// DC(2) Final encoded SCLK
//
// IC(1) CK frame class ID (aka "instrument")
// IC(2) Inertial reference frame
// IC(3) Data type
// IC(4) Angular velocity flag
// IC(5) Initial address of segment data
// IC(6) Final address of segment data
//
//
DAFUS(
DESCR.as_slice(),
ND,
NI,
DC.as_slice_mut(),
IC.as_slice_mut(),
);
//
// If this segment is not of data type 6, then signal an error.
//
if (IC[3] != DTYPE) {
SETMSG(
b"Data type of the segment should be 6: Passed descriptor shows type = #.",
ctx,
);
ERRINT(b"#", IC[3], ctx);
SIGERR(b"SPICE(CKWRONGDATATYPE)", ctx)?;
CHKOUT(b"CKNM06", ctx)?;
return Ok(());
}
//
// The number of mini-segments is the final word in the segment.
//
DAFGDA(HANDLE, IC[6], IC[6], DPDATA.as_slice_mut(), ctx)?;
if FAILED(ctx) {
CHKOUT(b"CKNM06", ctx)?;
return Ok(());
}
*NMINI = intrinsics::IDNINT(DPDATA[1]);
CHKOUT(b"CKNM06", ctx)?;
Ok(())
}