void ekuef_c ( SpiceInt handle )
Unload an EK file, making its contents inaccessible to the
EK reader routines, and clearing space in order to allow other
EK files to be loaded.
EK
EK
FILES
Variable I/O Description
-------- --- --------------------------------------------------
handle I Handle of EK file.
handle is a file handle returned by eklef_c.
None. See $Particulars for a description of the effect of this
routine.
None.
1) Unloading a file that is not loaded has no effect.
This routine unloads a binary EK file from the EK query system.
This routine removes information about an EK file from the
EK system, freeing space to increase the number of other EK
files that can be loaded. The file is also unloaded from
the DAS system and closed.
1) Load 25 EK files sequentially, unloading the previous file
before each new file is loaded. Unloading files prevents
them from being searched during query execution.
for ( i = 0; i < 25; i++ )
{
eklef_c ( ek[i], &handle );
[Perform queries]
ekuef_c ( handle );
}
None.
None.
N.J. Bachman (JPL)
-CSPICE Version 1.0.0, 26-JUL-1998 (NJB)
Based on SPICELIB Version 1.0.1, 07-JUL-1996 (NJB)
unload EK file
Link to routine ekuef_c source file ekuef_c.c
|