Parse the TDIMS value. If the TDIMS value cannot be deciphered a one-d array with the size given in arrsiz is returned.


Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function GetTDims( _ 
   ByVal tdims As String _ 
) As Integer()
C#
public static int[] GetTDims(
   string tdims
)
C++
public:
 static array<int>^ GetTDims(
   String tdims
)
J#
public static int[] GetTDims(
   string tdims
)
JScript
public static  function GetTDims(
   tdims : String
) : int[]

Parameters

tdims
The value of the TDIMSn card.

Return Value

An int array of the desired dimensions. Note that the order of the tdims is the inverse of the order in the TDIMS key.

See Also