ekuced_c |
Table of contents
Procedureekuced_c ( EK, update d.p. column entry ) void ekuced_c ( SpiceInt handle, SpiceInt segno, SpiceInt recno, ConstSpiceChar * column, SpiceInt nvals, ConstSpiceDouble * dvals, SpiceBoolean isnull ) AbstractUpdate a double precision column entry in a specified EK record. Required_ReadingEK KeywordsEK FILES UTILITY Brief_I/OVARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- handle I Handle attached to EK file. segno I Index of segment containing record. recno I Record in which entry is to be updated. column I Column name. nvals I Number of values in new column entry. dvals I Double precision values comprising new column entry. isnull I Flag indicating whether column entry is null. Detailed_Inputhandle is a file handle attached to an EK open for write access. segno is the index of the segment containing the column entry to be updated. EK segment numbers range from 0 to N-1, where N is the number of segments in the kernel. recno is the index of the record containing the column entry to be updated. This record number is relative to the start of the segment indicated by segno; the first record in the segment has index 0. column is the name of the column containing the entry to be updated. nvals, dvals are, respectively, the number of values to insert into the specified column and the set of values themselves. The data values are written in to the specified column and record. If the column has fixed-size entries, then nvals must equal the entry size for the specified column. For columns with variable-sized entries, the size of the new entry need not match the size of the entry it replaces. In particular, the new entry may be larger. isnull is a logical flag indicating whether the entry is null. If isnull is SPICEFALSE, the column entry defined by nvals and dvals is added to the specified kernel file. If isnull is SPICETRUE, nvals and ivals are ignored. The column entry is marked as a null value. The contents of the column entry are undefined. If the column has fixed-length, variable-size entries, the number of entries is considered to be 1. The new entry may be null even though it replaces a non-null value, and vice versa. Detailed_OutputNone. See -Particulars for a description of the effect of this routine. ParametersNone. Exceptions1) If `handle' is invalid, an error is signaled by a routine in the call tree of this routine. 2) If `segno' is out of range, an error is signaled by a routine in the call tree of this routine. 3) If `column' is not the name of a declared column, an error is signaled by a routine in the call tree of this routine. 4) If `column' specifies a column of whose data type is not DOUBLE PRECISION or TIME, the error SPICE(WRONGDATATYPE) is signaled by a routine in the call tree of this routine. 5) If `recno' is out of range, an error is signaled by a routine in the call tree of this routine. 6) If the specified column has fixed-size entries and `nvals' does not match this size, an error is signaled by a routine in the call tree of this routine. 7) If the specified column has variable-size entries and `nvals' is non-positive, an error is signaled by a routine in the call tree of this routine. 8) If an attempt is made to add a null value to a column that doesn't take null values, an error is signaled by a routine in the call tree of this routine. 9) If `column' specifies a column of whose class is not a double precision class known to this routine, the error SPICE(NOCLASS) is signaled by a routine in the call tree of this routine. 10) If an I/O error occurs while reading or writing the indicated file, the error is signaled by a routine in the call tree of this routine. 11) If the `column' input string pointer is null, the error SPICE(NULLPOINTER) is signaled. 12) If the `column' input string has zero length, the error SPICE(EMPTYSTRING) is signaled. FilesSee the EK Required Reading for a discussion of the EK file format. ParticularsThis routine operates by side effects: it modifies the named EK file by adding data to the specified record in the specified column. Data may be added to a segment in random order; it is not necessary to fill in columns or rows sequentially. Data may only be added one logical element at a time. Partial assignments of logical elements are not supported. Since columns of data type TIME are implemented using double precision column classes, this routine may be used to update columns of type TIME. Examples1) Replace the value in the third record of the column DCOL in the fifth segment of an EK file designated by HANDLE. Set the new value to 999.. #include <SpiceUsr.h> . . . ekuced_c ( handle, 4, 2, "DCOL", 1, 999.0, SPICEFALSE ); 2) Same as (1), but this time add a null value. The argument 999. is ignored because the null flag is set to SPICETRUE #include <SpiceUsr.h> . . . ekuced_c ( handle, 4, 2, "DCOL", 1, 999.0, SPICETRUE ); 3) Replace the entry in the third record of the column DARRAY in the fifth segment of an EK file designated by HANDLE. Set the new value using an array DBUFF of 10 d.p. values. #include <SpiceUsr.h> . . . ekuced_c ( handle, 4, 2, "DARRAY", 10, dbuff, SPICEFALSE ); RestrictionsNone. Literature_ReferencesNone. Author_and_InstitutionN.J. Bachman (JPL) J. Diaz del Rio (ODC Space) Version-CSPICE Version 1.0.1, 13-AUG-2021 (JDR) Edited the header to comply with NAIF standard. -CSPICE Version 1.0.0, 28-AUG-2001 (NJB) Index_Entriesreplace d.p. entry in an EK column replace time entry in an EK column |
Fri Dec 31 18:41:06 2021