Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
cspice_dskd02

Table of contents
Abstract
I/O
Parameters
Examples
Particulars
Exceptions
Files
Restrictions
Required_Reading
Literature_References
Author_and_Institution
Version
Index_Entries

Abstract


   CSPICE_DSKD02 fetches double precision data from a type 2 DSK segment.

I/O


   Given:

      handle   the handle of a DSK file containing a type 2
               segment from which data are to be fetched.

               [1,1] = size(handle); int32 = class(handle)

      dladsc   the DLA descriptor associated with the segment from
               which data are to be fetched.

               [SPICE_DLA_DSCSIZ,1]  = size(dladsc)
                               int32 = class(dladsc)

      item     an integer "keyword" parameter designating the double
               precision data item to fetch.

               [1,1] = size(item); int32 = class(item)

               Names, values, and meanings of keyword parameters
               supported by this routine are shown below.

               Use of the names shown here is enabled by calling
               the Mice DSK parameter definition routine as shown:

                  MiceUser;

               This call must be made before the parameter names
               are referenced. See the example program below.

                  Name               Value  Description
                  ----               -----  ----------

                  SPICE_DSK02_KWDSC   15    Array containing contents of
                                            Fortran DSK descriptor of
                                            segment. Note that DSK
                                            descriptors are not to be
                                            confused with DLA descriptors,
                                            which contain segment component
                                            base address and size
                                            information. The dimension of
                                            this array is SPICE_DSK_DSCSIZ.

                  SPICE_DSK02_KWVTBD  16    Vertex bounds. This is an array
                                            of six values giving the minimum
                                            and maximum values of each
                                            component of the vertex set.

                  SPICE_DSK02_KWVXOR  17    Voxel grid origin. This is the
                                            location of the voxel grid origin
                                            in the body-fixed frame
                                            associated with the target body.

                  SPICE_DSK02_KWVXSZ  18    Voxel size. DSK voxels are cubes;
                                            the edge length of each cube is
                                            given by the voxel size. This
                                            size applies to the fine voxel
                                            grid. Units are km.

                  SPICE_DSK02_KWVERT  19    Vertex coordinates.

      start    the start index within the specified data item from which
               data are to be fetched.

               [1,1] = size(start); int32 = class(start)

               The index of the first element of each data item is 1. This
               convention applies uniformly to all data.

      room     the amount of room in the output array.

               [1,1] = size(room); int32 = class(room)

               It is permissible to provide an output array that has too
               little room to fetch an item in one call.

   the call:

      [values] = cspice_dskd02( handle, dladsc, item, start, room )

   returns:

      values   a contiguous set of elements of the item designated by
               `item'.

               [1,n] = size(values); double = class(values)

               The correspondence of `values' with the elements
               of the data item is:

                  values(1)      item(start)
                    ...             ...
                  values(n)      item(start+n-1)

               If an error occurs on the call, `values' is undefined.

               Note, room >= n.

Parameters


   See the parameter definitions file

      MiceDLA.m

   for declarations of DLA descriptor sizes and documentation of the
   contents of DLA descriptors.

   See the parameter definitions file

      MiceDSK.m

   for declarations of DSK descriptor sizes and documentation of the
   contents of DSK descriptors.

   See the parameter definitions file

      MiceDSK.m

   for declarations of DSK data type 2 (plate model) parameters.

Examples


   Any numerical results shown for this example may differ between
   platforms as the results depend on the SPICE kernels used as input
   and the machine specific arithmetic implementation.

   1) Look up all the vertices associated with each plate
      of the model contained in a specified type 2 segment.
      For the first 5 plates, display the plate's vertices.

      For this example, we'll show the context of this look-up:
      opening the DSK file for read access, traversing a trivial,
      one-segment list to obtain the segment of interest.

      Example code begins here.


      function dskd02_ex1( )

         %
         % MiceUser globally defines DSK parameters.
         % For more information, please see MiceDSK.m.
         %
         MiceUser

         %
         % Set the dimensions of the array `vrtces', which
         % will be used later.
         %
         vrtces = zeros(3,3);

         %
         % Prompt for the name of the file to search.
         %
         fname = input( 'Name of DSK file > ', 's' );

         %
         % Open the DSK file for read access.
         % We use the DAS-level interface for
         % this function.
         %
         handle  = cspice_dasopr( fname );

         %
         % Begin a forward search through the
         % kernel, treating the file as a DLA.
         % In this example, it's a very short
         % search.
         %
         [dladsc, found] = cspice_dlabfs( handle );

         if ~found

            %
            % We arrive here only if the kernel
            % contains no segments. This is
            % unexpected, but we're prepared for it.
            %
            fprintf( 'No segments found in DSK file %s\n', fname )
            return

         end

         %
         % If we made it this far, `dladsc' is the
         % DLA descriptor of the first segment.
         %

         %
         % Find the number of plates in the model.
         %
         ival = cspice_dski02( handle, dladsc, SPICE_DSK02_KWNP, 1, 1 );
         fprintf( 'Number of plates: %d\n', ival(1));

         %
         % For the first 5 plates, look up the desired data.
         % Note that plate numbers range from 1 to np.
         %
         np = min(ival(1), 5);
         for  i = 1:np

            %
            % For the Ith plate, find the associated
            % vertex IDs.  We must take into account
            % the fact that each plate has three
            % vertices when we compute the start
            % index.
            %

            start = 3*(i-1) + 1;

            %
            % Fetch the ith plate.
            %
            vrtids = cspice_dski02( handle, dladsc, SPICE_DSK02_KWPLAT, ...
                                    start,  3 );

            for  j = 1:3

               %
               % Fetch the jth vertex of the ith plate.
               %
               start = (vrtids(j)-1) * 3 +1;

               vtemp = cspice_dskd02( handle, dladsc, SPICE_DSK02_KWVERT, ...
                                      start,  3 );

               vrtces(j,:) = vtemp;

            end

            %
            % Display the vertices of the ith plate:
            %
            fprintf( '\n' )
            fprintf( 'Plate number: %d\n', i )

            for  j = 1:3
                 fprintf( 'Vertex %d: (%14.6e %14.6e %14.6e)\n', ...
                                                j, vrtces(j,:) )
            end

         end

         %
         % Close the DSK.
         %
         cspice_dascls( handle );


      When this program was executed on a Mac/Intel/Octave5.x/64-bit
      platform, using the DSK file named phobos512.bds, the output
      was:


      Name of DSK file > phobos512.bds
      Number of plates: 3145728

      Plate number: 1
      Vertex 1: ( -6.774440e+00   6.268150e+00   6.011490e+00)
      Vertex 2: ( -6.762380e+00   6.257280e+00   6.025560e+00)
      Vertex 3: ( -6.757100e+00   6.277540e+00   6.020960e+00)

      Plate number: 2
      Vertex 1: ( -6.774440e+00   6.268150e+00   6.011490e+00)
      Vertex 2: ( -6.779730e+00   6.247900e+00   6.016100e+00)
      Vertex 3: ( -6.762380e+00   6.257280e+00   6.025560e+00)

      Plate number: 3
      Vertex 1: ( -6.779730e+00   6.247900e+00   6.016100e+00)
      Vertex 2: ( -6.767680e+00   6.237010e+00   6.030190e+00)
      Vertex 3: ( -6.762380e+00   6.257280e+00   6.025560e+00)

      Plate number: 4
      Vertex 1: ( -6.779730e+00   6.247900e+00   6.016100e+00)
      Vertex 2: ( -6.784990e+00   6.227620e+00   6.020700e+00)
      Vertex 3: ( -6.767680e+00   6.237010e+00   6.030190e+00)

      Plate number: 5
      Vertex 1: ( -6.784990e+00   6.227620e+00   6.020700e+00)
      Vertex 2: ( -6.772990e+00   6.216740e+00   6.034820e+00)
      Vertex 3: ( -6.767680e+00   6.237010e+00   6.030190e+00)


Particulars


   Most SPICE applications will not need to call this routine. The
   routines cspice_dskv02, cspice_dskp02, and cspice_dskz02 provide
   a higher-level interface for fetching DSK type 2 vertex and plate data.

   DSK files are built using the DLA low-level format and
   the DAS architecture; DLA files are a specialized type of DAS
   file in which data are organized as a doubly linked list of
   segments. Each segment's data belong to contiguous components of
   character, double precision, and integer type.

   Note that the DSK descriptor for the segment is not needed by this
   routine; the DLA descriptor contains the base address and size
   information for the integer, double precision, and character
   components of the segment, and these suffice for the purpose of
   fetching data.

Exceptions


   1)  If the input handle is invalid, an error is signaled by a
       routine in the call tree of this routine.

   2)  If a file read error occurs, the error is signaled by a
       routine in the call tree of this routine.

   3)  If the input DLA descriptor is invalid, the effect of this
       routine is undefined. The error *may* be diagnosed by
       routines in the call tree of this routine, but there are no
       guarantees.

   4)  If `room' is non-positive, the error SPICE(VALUEOUTOFRANGE)
       is signaled by a routine in the call tree of this routine.

   5)  If the coarse voxel scale read from the designated segment is
       less than 1, the error SPICE(VALUEOUTOFRANGE) is signaled by a
       routine in the call tree of this routine.

   6)  If the input keyword parameter is not recognized, the error
       SPICE(NOTSUPPORTED) is signaled by a routine in the call tree
       of this routine.

   7)  If `start' is less than 1 or greater than the size of the
       item to be fetched, the error SPICE(INDEXOUTOFRANGE) is
       signaled by a routine in the call tree of this routine.

   8)  If any of the input arguments, `handle', `dladsc', `item',
       `start' or `room', is undefined, an error is signaled by the
       Matlab error handling system.

   9)  If any of the input arguments, `handle', `dladsc', `item',
       `start' or `room', is not of the expected type, or it does not
       have the expected dimensions and size, an error is signaled by
       the Mice interface.

Files


   See input argument `handle'.

Restrictions


   1)  This routine uses discovery check-in to boost
       execution speed. However, this routine is in
       violation of NAIF standards for use of discovery
       check-in: routines called from this routine may
       signal errors. If errors are signaled in called
       routines, this routine's name will be missing
       from the traceback message.

Required_Reading


   DAS.REQ
   DSK.REQ
   MICE.REQ

Literature_References


   None.

Author_and_Institution


   N.J. Bachman        (JPL)
   J. Diaz del Rio     (ODC Space)
   M. Liukis           (JPL)
   E.D. Wright         (JPL)

Version


   -Mice Version 1.1.0, 07-AUG-2020 (EDW) (JDR)

       Edited the header to comply with NAIF standard. Updated
       code example to prompt for the input DSK file and reduce the
       number of plates whose vertices are shown on output.

       Added -Parameters, -Exceptions, -Files, -Restrictions,
       -Literature_References and -Author_and_Institution sections.

       Eliminated use of "lasterror" in rethrow.

       Removed reference to the function's corresponding CSPICE header from
       -Required_Reading section.

   -Mice Version 1.0.0, 04-APR-2017 (NJB) (EDW) (ML)

Index_Entries


   fetch double precision data from a type 2 DSK segment


Fri Dec 31 18:44:24 2021