Create an array from a header description. This is typically how data will be created when reading FITS data from a file where the header is read first. This creates an empty array.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal h As Header _ 
)
C#
public ImageData(
   Header h
)
C++
public:
 ImageData(
   Header h
) sealed 
J#
public ImageData(
   Header h
)
JScript
public function ImageData(
   h : Header
)

Parameters

h
header to be used as a template.

Exceptions

Exception TypeCondition
FitsException FitsException if there was a problem with the header description.

See Also