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
//
// GENERATED FILE
//

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

pub const MAXLEN: i32 = 32;

/// SCLK name/ID code translation
///
/// Convert between SCLK name strings and ID codes.
///
/// # Required Reading
///
/// * [SCLK](crate::required_reading::sclk)
///
/// # Brief I/O
///
/// ```text
///  VARIABLE  I/O  ENTRY POINTS
///  --------  ---  --------------------------------------------------
///  CLKNAM    I-O  SCID2N, SCN2ID
///  CLKID     I-O  SCID2N, SCN2ID
///  FOUND      O   SCID2N, SCN2ID
///  MAXLEN     P   All
/// ```
///
/// # Detailed Input
///
/// ```text
///  See the entry points for a discussion of their arguments.
/// ```
///
/// # Detailed Output
///
/// ```text
///  See the entry points for a discussion of their arguments.
/// ```
///
/// # Parameters
///
/// ```text
///  MAXLEN   is the maximum allowed length, in characters, of a
///           string containing the name of a spacecraft clock.
/// ```
///
/// # Exceptions
///
/// ```text
///  See the entry points for a discussion of exceptions specific to
///  those routines.
///
///  1)  This is an umbrella subroutine that contains declarations
///      for its entry points. This routine should never be called
///      directly. If it is, the error SPICE(BOGUSENTRY) is signaled.
/// ```
///
/// # Particulars
///
/// ```text
///  This set of subroutines centralizes the mapping between
///  spacecraft clock names and their corresponding NAIF integer
///  codes. Translation between these names and codes is frequently
///  required by user interface functions.
///
///  The set of supported clocks is identical to the set of spacecraft
///  supported by BODTRN. The mapping may be extended by calling
///  BODDEF.
/// ```
///
/// # Examples
///
/// ```text
///  See the entry points for examples of their usage.
/// ```
///
/// # Author and Institution
///
/// ```text
///  N.J. Bachman       (JPL)
///  J. Diaz del Rio    (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// -    SPICELIB Version 1.2.1, 12-AUG-2021 (JDR)
///
///         Edited the header to comply with NAIF standard.
///
/// -    SPICELIB Version 1.2.0, 29-OCT-2001 (NJB)
///
///         Bug fix: modified algorithm to handle case where string
///         "SCLK" appears in SCLK name.
///
/// -    SPICELIB Version 1.1.0, 25-FEB-2000 (NJB)
///
///         Updated to use BODTRN for SCLK name/code mapping.
///
/// -    SPICELIB Version 1.0.0, 17-NOV-1995 (NJB)
/// ```
///
/// # Revisions
///
/// ```text
/// -    SPICELIB Version 1.2.0, 29-OCT-2001 (NJB)
///
///         Bug fix: modified algorithm to handle case where string
///         "SCLK" appears in SCLK name.  SCN2ID now uses POSR to locate
///         the substring "SCLK" in the input string.
/// ```
pub fn sctran(ctx: &mut SpiceContext, clknam: &str, clkid: i32, found: bool) -> crate::Result<()> {
    SCTRAN(clknam.as_bytes(), clkid, found, ctx.raw_context())?;
    ctx.handle_errors()?;
    Ok(())
}

//$Procedure SCTRAN  ( SCLK name/ID code translation )
pub fn SCTRAN(CLKNAM: &[u8], CLKID: i32, FOUND: bool, ctx: &mut Context) -> f2rust_std::Result<()> {
    //
    // SPICELIB functions
    //

    //
    // Local variables
    //

    //
    // Standard SPICE error handling.
    //
    if RETURN(ctx) {
        return Ok(());
    } else {
        CHKIN(b"SCTRAN", ctx)?;
    }

    SIGERR(b"SPICE(BOGUSENTRY)", ctx)?;

    CHKOUT(b"SCTRAN", ctx)?;
    Ok(())
}

/// SCLK name to ID code
///
/// Convert an SCLK name string to a NAIF integer code.
///
/// # Required Reading
///
/// * [SCLK](crate::required_reading::sclk)
///
/// # Brief I/O
///
/// ```text
///  VARIABLE  I/O  DESCRIPTION
///  --------  ---  --------------------------------------------------
///  CLKNAM     I   String giving spacecraft clock name.
///  CLKID      O   NAIF integer code of spacecraft clock.
///  FOUND      O   Flag indicating whether item was found.
/// ```
///
/// # Detailed Input
///
/// ```text
///  CLKNAM   is a short string identifying the spacecraft
///           clock of interest. The form of the string
///           is:
///
///              <spacecraft name or acronym> SCLK
///
///           for example
///
///              VGR1 SCLK
///              VOYAGER 1 SCLK
///              GLL SCLK
///              GALILEO ORBITER SCLK
///
///           Case and white space (including embedded white
///           space) are not significant.
/// ```
///
/// # Detailed Output
///
/// ```text
///  CLKID    is the NAIF integer code associated with the
///           input clock. CLKID is defined only if the
///           output flag FOUND is returned .TRUE.
///
///  FOUND    is a logical flag indicating whether the input
///           string specified a clock known to this routine.
/// ```
///
/// # Exceptions
///
/// ```text
///  Error free.
///
///  1)  If the input name is not recognized, FOUND is set to .FALSE.
///      CLKID is not modified.
///
///  2)  If the input name is recognized but does not refer to a
///      spacecraft, no error is signaled. For example, the string
///      'JUPITER BARYCENTER SCLK' maps to the code 5.
/// ```
///
/// # Particulars
///
/// ```text
///  SCN2ID provides a means of mapping human-readable clock names
///  to integer codes used by the SPICELIB SCLK routines to
///  identify spacecraft clocks.
/// ```
///
/// # Examples
///
/// ```text
///  1)  Look up the spacecraft clock code for the Galileo orbiter.
///
///         CALL SCN2ID ( 'GLL SCLK', CLKID, FOUND )
///
///      The outputs will be
///
///         CLKID  =  -77
///         FOUND  =  .TRUE.
/// ```
///
/// # Author and Institution
///
/// ```text
///  N.J. Bachman       (JPL)
///  J. Diaz del Rio    (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// -    SPICELIB Version 1.2.1, 12-AUG-2021 (JDR)
///
///         Edited the header to comply with NAIF standard.
///
/// -    SPICELIB Version 1.2.0, 12-AUG-2001 (NJB)
///
///         Bug fix: modified algorithm to handle case where string
///         "SCLK" appears in SCLK name.
///
/// -    SPICELIB Version 1.1.0, 25-FEB-2000 (NJB)
///
///         Updated to use BODTRN for SCLK name/code mapping.
///
/// -    SPICELIB Version 1.0.0, 17-NOV-1995 (NJB)
/// ```
///
/// # Revisions
///
/// ```text
/// -    SPICELIB Version 1.2.0, 12-AUG-2001 (NJB)
///
///         Bug fix: modified algorithm to handle case where string
///         "SCLK" appears in SCLK name.  SCN2ID now uses POSR to locate
///         the substring "SCLK" in the input string.
/// ```
pub fn scn2id(
    ctx: &mut SpiceContext,
    clknam: &str,
    clkid: &mut i32,
    found: &mut bool,
) -> crate::Result<()> {
    SCN2ID(clknam.as_bytes(), clkid, found, ctx.raw_context())?;
    ctx.handle_errors()?;
    Ok(())
}

//$Procedure SCN2ID  ( SCLK name to ID code )
pub fn SCN2ID(
    CLKNAM: &[u8],
    CLKID: &mut i32,
    FOUND: &mut bool,
    ctx: &mut Context,
) -> f2rust_std::Result<()> {
    let mut TMPNAM = [b' '; MAXLEN as usize];
    let mut LOC: i32 = 0;

    //
    // Convert name to upper case.
    //
    UCASE(CLKNAM, &mut TMPNAM, ctx);

    //
    // Remove the final occurrence of the  string 'SCLK' from
    // the input name.
    //
    LOC = POSR(&TMPNAM, b"SCLK", RTRIM(&TMPNAM));

    if (LOC > 0) {
        fstr::assign(fstr::substr_mut(&mut TMPNAM, LOC..=(LOC + 3)), b" ");
    }

    BODN2C(&TMPNAM, CLKID, FOUND, ctx)?;

    Ok(())
}

/// SCLK ID code to name
///
/// Convert a NAIF integer code for a spacecraft clock to an SCLK name
/// string.
///
/// # Required Reading
///
/// * [SCLK](crate::required_reading::sclk)
///
/// # Brief I/O
///
/// ```text
///  VARIABLE  I/O  DESCRIPTION
///  --------  ---  --------------------------------------------------
///  CLKID      I   NAIF integer code of spacecraft clock.
///  CLKNAM     O   String giving spacecraft clock name.
///  FOUND      O   Flag indicating whether item was found.
/// ```
///
/// # Detailed Input
///
/// ```text
///  CLKID    is the NAIF integer code of a spacecraft clock of
///           interest.
/// ```
///
/// # Detailed Output
///
/// ```text
///  CLKNAM   is a short, human-readable string identifying
///           the specified spacecraft clock. The returned
///           string has the form
///
///              <spacecraft name or acronym> SCLK
///
///           where the spacecraft name is the same string
///           returned by BODC2N when CLKID is supplied as the
///           input code.
///
///           CLKNAM is defined only if the output flag FOUND is
///           returned .TRUE.
///
///  FOUND    is a logical flag indicating whether the input
///           code specified a clock known to this routine.
/// ```
///
/// # Exceptions
///
/// ```text
///  Error free.
///
///  1)  If the input code is not recognized, FOUND is set to .FALSE.
///      CLKNAM is not modified.
///
///  2)  If the input code is recognized but does not refer to a
///      spacecraft, no error is signaled. For example, the code
///      5 maps to the string 'JUPITER BARYCENTER SCLK'.
/// ```
///
/// # Particulars
///
/// ```text
///  This routine converts a NAIF spacecraft clock code to a human-
///  readable string. This function is useful for constructing
///  messages.
/// ```
///
/// # Examples
///
/// ```text
///  1)  Look up the spacecraft clock name for code -77.
///
///         CALL SCID2N ( -77, CLKNAM, FOUND )
///
///      The outputs will be
///
///         CLKNAM  =  'GALILEO ORBITER SCLK'
///         FOUND   =  .TRUE.
/// ```
///
/// # Author and Institution
///
/// ```text
///  N.J. Bachman       (JPL)
///  J. Diaz del Rio    (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// -    SPICELIB Version 1.0.1, 12-AUG-2021 (JDR)
///
///         Edited the header to comply with NAIF standard.
///
/// -    SPICELIB Version 1.0.0, 25-FEB-2000 (NJB)
///
///         Updated to use BODTRN for SCLK name/code mapping.
///
/// -    SPICELIB Version 1.0.0, 17-NOV-1995 (NJB)
/// ```
pub fn scid2n(
    ctx: &mut SpiceContext,
    clkid: i32,
    clknam: &mut str,
    found: &mut bool,
) -> crate::Result<()> {
    SCID2N(
        clkid,
        fstr::StrBytes::new(clknam).as_mut(),
        found,
        ctx.raw_context(),
    )?;
    ctx.handle_errors()?;
    Ok(())
}

//$Procedure SCID2N  ( SCLK ID code to name )
pub fn SCID2N(
    CLKID: i32,
    CLKNAM: &mut [u8],
    FOUND: &mut bool,
    ctx: &mut Context,
) -> f2rust_std::Result<()> {
    BODC2N(CLKID, CLKNAM, FOUND, ctx)?;

    if !*FOUND {
        return Ok(());
    }

    SUFFIX(b"SCLK", 1, CLKNAM);

    Ok(())
}