Bases: pyfits.hdu.image._ImageBaseHDU, pyfits.hdu.base.ExtensionHDU
FITS image extension HDU class.
Construct an image HDU.
Parameters: | |
---|---|
data : array
header : Header instance
name : str, optional
do_not_scale_image_data : bool, optional
uint : bool, optional
scale_back : bool, optional
|
alias of ImageExtensionSchema
Add the CHECKSUM and DATASUM cards to this HDU with the values set to the checksum calculated for the HDU and the data respectively. The addition of the DATASUM card may be overridden.
Parameters: | |
---|---|
when : str, optional
override_datasum : bool, optional
blocking: str, optional :
checksum_keyword: str, optional :
datasum_keyword: str, optional :
|
Notes
For testing purposes, first call add_datasum with a when argument, then call add_checksum with a when argument and override_datasum set to True. This will provide consistent comments for both cards and enable the generation of a CHECKSUM card with a consistent value.
Add the DATASUM card to this HDU with the value set to the checksum calculated for the data.
Parameters: | |
---|---|
when : str, optional
blocking: str, optional :
datasum_keyword: str, optional :
|
|
Returns: | |
checksum : int
|
Notes
For testing purposes, provide a when argument to enable the comment value in the card to remain consistent. This will enable the generation of a CHECKSUM card with a consistent value.
Make a copy of the HDU, both header and data are copied.
Calculates and returns the number of bytes that this HDU will write to a file.
Returns a dictionary detailing information about the locations of this HDU within any associated file. The values are only valid after a read or write of the associated file with no intervening changes to the HDUList.
Returns: | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dict or None :
|
Creates a new HDU object of the appropriate type from a string containing the HDU’s entire header and, optionally, its data.
Note: When creating a new HDU from a string without a backing file object, the data of that HDU may be read-only. It depends on whether the underlying string was an immutable Python str/bytes object, or some kind of read-write memory buffer such as a memoryview.
Parameters: | |
---|---|
data : str, bytearray, memoryview, ndarray
fileobj : file, optional
offset : int, optional
checksum : bool, optional
ignore_missing_end : bool, optional
kwargs : optional
|
Read the HDU from a file. Normally an HDU should be opened with pyfits.open which reads the entire HDU list in a FITS file. But this method is still provided for symmetry with writeto.
Parameters: | |
---|---|
fileobj : file object or file-like object
checksum : bool
ignore_missing_end : bool
|
Check the existence, location, and value of a required Card.
Parameters: | |
---|---|
keyword : str
pos : int, callable
test : callable fix_value : str, int, float, complex, bool, None
option : str
errlist : list
|
Notes
If pos=None, the card can be anywhere in the header. If the card does not exist, the new card will have the fix_value as its value when created. Also check the card’s value by using the test argument.
Execute the verification with selected option.
Scale image data by using BSCALE/BZERO.
Call to this method will scale data and update the keywords of BSCALE and BZERO in the HDU’s header. This method should only be used right before writing to the output file, as the data will be scaled and is therefore not very usable after the call.
Parameters: | |
---|---|
type : str, optional
option : str
bscale, bzero : int, optional
|
Deprecated since version 3.2: Use the .name attribute or Header.set instead.
Update the extension name associated with the HDU.
If the keyword already exists in the Header, it’s value and/or comment will be updated. If it does not exist, a new card will be created and it will be placed before or after the specified location. If no before or after is specified, it will be appended at the end.
Parameters: | |
---|---|
value : str
comment : str, optional
before : str or int, optional
after : str or int, optional
savecomment : bool, optional
|
Deprecated since version 3.2: Use the .ver attribute or Header.set instead.
Update the extension version associated with the HDU.
If the keyword already exists in the Header, it’s value and/or comment will be updated. If it does not exist, a new card will be created and it will be placed before or after the specified location. If no before or after is specified, it will be appended at the end.
Parameters: | |
---|---|
value : str
comment : str, optional
before : str or int, optional
after : str or int, optional
savecomment : bool, optional
|
Update the header keywords to agree with the data.
Verify all values in the instance.
Parameters: | |
---|---|
option : str
|
Verify that the value in the CHECKSUM keyword matches the value calculated for the current HDU CHECKSUM.
Returns: | |
---|---|
valid : int
|
Verify that the value in the DATASUM keyword matches the value calculated for the DATASUM of the current HDU data.
Returns: | |
---|---|
valid : int
|
Works similarly to the normal writeto(), but prepends a default PrimaryHDU are required by extension HDUs (which cannot stand on their own).
Image/array data as a ndarray.
Please remember that the order of axes on an Numpy array are opposite of the order specified in the FITS file. For example for a 2D image the “rows” or y-axis are the first dimension, and the “columns” or x-axis are the second dimension.
If the data is scaled using the BZERO and BSCALE parameters, this attribute returns the data scaled to its physical values unless the file was opened with do_not_scale_image_data=True.
Access a section of the image array without loading the entire array into memory. The Section object returned by this attribute is not meant to be used directly by itself. Rather, slices of the section return the appropriate slice of the data, and loads only that section into memory.
Sections are mostly obsoleted by memmap support, but should still be used to deal with very large scaled images. See the Data Sections section of the PyFITS documentation for more details.
Shape of the image array–should be equivalent to self.data.shape.
Size (in bytes) of the data portion of the HDU.
Bases: pyfits.hdu.table.BinTableHDU
Compressed Image HDU class.
Parameters: | |
---|---|
data : array, optional
header : Header instance, optional
name : str, optional
compression_type : str, optional
tile_size : int, optional
hcomp_scale : float, optional
hcomp_smooth : float, optional
quantize_level : float, optional
quantize_method : int, optional
dither_seed : int, optional
|
Notes
The pyfits module supports 2 methods of image compression.
- The entire FITS file may be externally compressed with the gzip or pkzip utility programs, producing a *.gz or *.zip file, respectively. When reading compressed files of this type, pyfits first uncompresses the entire file into a temporary file before performing the requested read operations. The pyfits module does not support writing to these types of compressed files. This type of compression is supported in the _File class, not in the CompImageHDU class. The file compression type is recognized by the .gz or .zip file name extension.
- The CompImageHDU class supports the FITS tiled image compression convention in which the image is subdivided into a grid of rectangular tiles, and each tile of pixels is individually compressed. The details of this FITS compression convention are described at the FITS Support Office web site. Basically, the compressed image tiles are stored in rows of a variable length arrray column in a FITS binary table. The pyfits module recognizes that this binary table extension contains an image and treats it as if it were an image extension. Under this tile-compression format, FITS header keywords remain uncompressed. At this time, pyfits does not support the ability to extract and uncompress sections of the image without having to uncompress the entire image.
The pyfits module supports 3 general-purpose compression algorithms plus one other special-purpose compression technique that is designed for data masks with positive integer pixel values. The 3 general purpose algorithms are GZIP, Rice, and HCOMPRESS, and the special-purpose technique is the IRAF pixel list compression technique (PLIO). The compression_type parameter defines the compression algorithm to be used.
The FITS image can be subdivided into any desired rectangular grid of compression tiles. With the GZIP, Rice, and PLIO algorithms, the default is to take each row of the image as a tile. The HCOMPRESS algorithm is inherently 2-dimensional in nature, so the default in this case is to take 16 rows of the image per tile. In most cases, it makes little difference what tiling pattern is used, so the default tiles are usually adequate. In the case of very small images, it could be more efficient to compress the whole image as a single tile. Note that the image dimensions are not required to be an integer multiple of the tile dimensions; if not, then the tiles at the edges of the image will be smaller than the other tiles. The tile_size parameter may be provided as a list of tile sizes, one for each dimension in the image. For example a tile_size value of [100,100] would divide a 300 X 300 image into 9 100 X 100 tiles.
The 4 supported image compression algorithms are all ‘lossless’ when applied to integer FITS images; the pixel values are preserved exactly with no loss of information during the compression and uncompression process. In addition, the HCOMPRESS algorithm supports a ‘lossy’ compression mode that will produce larger amount of image compression. This is achieved by specifying a non-zero value for the hcomp_scale parameter. Since the amount of compression that is achieved depends directly on the RMS noise in the image, it is usually more convenient to specify the hcomp_scale factor relative to the RMS noise. Setting hcomp_scale = 2.5 means use a scale factor that is 2.5 times the calculated RMS noise in the image tile. In some cases it may be desirable to specify the exact scaling to be used, instead of specifying it relative to the calculated noise value. This may be done by specifying the negative of the desired scale value (typically in the range -2 to -100).
Very high compression factors (of 100 or more) can be achieved by using large hcomp_scale values, however, this can produce undesireable ‘blocky’ artifacts in the compressed image. A variation of the HCOMPRESS algorithm (called HSCOMPRESS) can be used in this case to apply a small amount of smoothing of the image when it is uncompressed to help cover up these artifacts. This smoothing is purely cosmetic and does not cause any significant change to the image pixel values. Setting the hcomp_smooth parameter to 1 will engage the smoothing algorithm.
Floating point FITS images (which have BITPIX = -32 or -64) usually contain too much ‘noise’ in the least significant bits of the mantissa of the pixel values to be effectively compressed with any lossless algorithm. Consequently, floating point images are first quantized into scaled integer pixel values (and thus throwing away much of the noise) before being compressed with the specified algorithm (either GZIP, RICE, or HCOMPRESS). This technique produces much higher compression factors than simply using the GZIP utility to externally compress the whole FITS file, but it also means that the original floating point value pixel values are not exactly perserved. When done properly, this integer scaling technique will only discard the insignificant noise while still preserving all the real imformation in the image. The amount of precision that is retained in the pixel values is controlled by the quantize_level parameter. Larger values will result in compressed images whose pixels more closely match the floating point pixel values, but at the same time the amount of compression that is achieved will be reduced. Users should experiment with different values for this parameter to determine the optimal value that preserves all the useful information in the image, without needlessly preserving all the ‘noise’ which will hurt the compression efficiency.
The default value for the quantize_level scale factor is 16, which means that scaled integer pixel values will be quantized such that the difference between adjacent integer values will be 1/16th of the noise level in the image background. An optimized algorithm is used to accurately estimate the noise in the image. As an example, if the RMS noise in the background pixels of an image = 32.0, then the spacing between adjacent scaled integer pixel values will equal 2.0 by default. Note that the RMS noise is independently calculated for each tile of the image, so the resulting integer scaling factor may fluctuate slightly for each tile. In some cases, it may be desireable to specify the exact quantization level to be used, instead of specifying it relative to the calculated noise value. This may be done by specifying the negative of desired quantization level for the value of quantize_level. In the previous example, one could specify quantize_level = -2.0 so that the quantized integer levels differ by 2.0. Larger negative values for quantize_level means that the levels are more coarsely-spaced, and will produce higher compression factors.
The quantization algorithm can also apply one of two random dithering methods in order to reduce bias in the measured intensity of background regions. The default method, specified with the constant SUBTRACTIVE_DITHER_1 adds dithering to the zero-point of the quantization array itself rather than adding noise to the actual image. The random noise is added on a pixel-by-pixel basis, so in order restore each pixel from its integer value to its floating point value it is necessary to replay the same sequence of random numbers for each pixel (see below). The other method, SUBTRACTIVE_DITHER_2, is exactly like the first except that before dithering any pixel with a floating point value of 0.0 is replaced with the special integer value -2147483647. When the image is uncompressed, pixels with this value are restored back to 0.0 exactly. Finally, a value of NO_DITHER disables dithering entirely.
As mentioned above, when using the subtractive dithering algorithm it is necessary to be able to generate a (pseudo-)random sequence of noise for each pixel, and replay that same sequence upon decompressing. To facilitate this, a random seed between 1 and 10000 (inclusive) is used to seed a random number generator, and that seed is stored in the ZDITHER0 keyword in the header of the compressed HDU. In order to use that seed to generate the same sequence of random numbers the same random number generator must be used at compression and decompression time; for that reason the tiled image convention provides an implementation of a very simple pseudo-random number generator. The seed itself can be provided in one of three ways, controllable by the dither_seed argument: It may be specified manually, or it may be generated arbitrarily based on the system’s clock (DITHER_SEED_CLOCK) or based on a checksum of the pixels in the image’s first tile (DITHER_SEED_CHECKSUM). The clock-based method is the default, and is sufficient to ensure that the value is reasonably “arbitrary” and that the same seed is unlikely to be generated sequentially. The checksum method, on the other hand, ensures that the same seed is used every time for a specific image. This is particularly useful for software testing as it ensures that the same image will always use the same seed.
alias of CompImageSchema
Add the CHECKSUM and DATASUM cards to this HDU with the values set to the checksum calculated for the HDU and the data respectively. The addition of the DATASUM card may be overridden.
Parameters: | |
---|---|
when : str, optional
override_datasum : bool, optional
blocking: str, optional :
checksum_keyword: str, optional :
datasum_keyword: str, optional :
|
Notes
For testing purposes, first call add_datasum with a when argument, then call add_checksum with a when argument and override_datasum set to True. This will provide consistent comments for both cards and enable the generation of a CHECKSUM card with a consistent value.
Add the DATASUM card to this HDU with the value set to the checksum calculated for the data.
Parameters: | |
---|---|
when : str, optional
blocking: str, optional :
datasum_keyword: str, optional :
|
|
Returns: | |
checksum : int
|
Notes
For testing purposes, provide a when argument to enable the comment value in the card to remain consistent. This will enable the generation of a CHECKSUM card with a consistent value.
Make a copy of the table HDU, both header and data are copied.
Dump the table HDU to a file in ASCII format. The table may be dumped in three separate files, one containing column definitions, one containing header parameters, and one for table data.
Parameters: | |
---|---|
datafile : file path, file object or file-like object, optional
cdfile : file path, file object or file-like object, optional
hfile : file path, file object or file-like object, optional
clobber : bool
|
Notes
The primary use for the dump method is to allow viewing and editing the table data and parameters in a standard text editor. The load method can be used to create a new table from the three plain text (ASCII) files.
datafile: Each line of the data file represents one row of table data. The data is output one column at a time in column order. If a column contains an array, each element of the column array in the current row is output before moving on to the next column. Each row ends with a new line.
Integer data is output right-justified in a 21-character field followed by a blank. Floating point data is output right justified using ‘g’ format in a 21-character field with 15 digits of precision, followed by a blank. String data that does not contain whitespace is output left-justified in a field whose width matches the width specified in the TFORM header parameter for the column, followed by a blank. When the string data contains whitespace characters, the string is enclosed in quotation marks (""). For the last data element in a row, the trailing blank in the field is replaced by a new line character.
For column data containing variable length arrays (‘P’ format), the array data is preceded by the string 'VLA_Length= ' and the integer length of the array for that row, left-justified in a 21-character field, followed by a blank.
Note
This format does not support variable length arrays using the (‘Q’ format) due to difficult to overcome ambiguities. What this means is that this file format cannot support VLA columns in tables stored in files that are over 2 GB in size.
For column data representing a bit field (‘X’ format), each bit value in the field is output right-justified in a 21-character field as 1 (for true) or 0 (for false).
cdfile: Each line of the column definitions file provides the definitions for one column in the table. The line is broken up into 8, sixteen-character fields. The first field provides the column name (TTYPEn). The second field provides the column format (TFORMn). The third field provides the display format (TDISPn). The fourth field provides the physical units (TUNITn). The fifth field provides the dimensions for a multidimensional array (TDIMn). The sixth field provides the value that signifies an undefined value (TNULLn). The seventh field provides the scale factor (TSCALn). The eighth field provides the offset value (TZEROn). A field value of "" is used to represent the case where no value is provided.
hfile: Each line of the header parameters file provides the definition of a single HDU header card as represented by the card image.
Calculates and returns the number of bytes that this HDU will write to a file.
Returns a dictionary detailing information about the locations of this HDU within any associated file. The values are only valid after a read or write of the associated file with no intervening changes to the HDUList.
Returns: | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dict or None :
|
Given either a ColDefs object, a sequence of Column objects, or another table HDU or table data (a FITS_rec or multi-field numpy.ndarray or numpy.recarray object, return a new table HDU of the class this method was called on using the column definition from the input.
This is an alternative to the now deprecated new_table function, and otherwise accepts the same arguments. See also FITS_rec.from_columns.
Parameters: | |
---|---|
columns : sequence of Column, ColDefs, or other
header : Header
nrows : int
fill : bool |
Notes
Any additional keyword arguments accepted by the HDU class’s __init__ may also be passed in as keyword arguments.
Creates a new HDU object of the appropriate type from a string containing the HDU’s entire header and, optionally, its data.
Note: When creating a new HDU from a string without a backing file object, the data of that HDU may be read-only. It depends on whether the underlying string was an immutable Python str/bytes object, or some kind of read-write memory buffer such as a memoryview.
Parameters: | |
---|---|
data : str, bytearray, memoryview, ndarray
fileobj : file, optional
offset : int, optional
checksum : bool, optional
ignore_missing_end : bool, optional
kwargs : optional
|
Create a table from the input ASCII files. The input is from up to three separate files, one containing column definitions, one containing header parameters, and one containing column data.
The column definition and header parameters files are not required. When absent the column definitions and/or header parameters are taken from the header object given in the header argument; otherwise sensible defaults are inferred (though this mode is not recommended).
Parameters: | |
---|---|
datafile : file path, file object or file-like object
cdfile : file path, file object, file-like object, optional
hfile : file path, file object, file-like object, optional
replace : bool
header : Header object
|
Notes
The primary use for the load method is to allow the input of ASCII data that was edited in a standard text editor of the table data and parameters. The dump method can be used to create the initial ASCII files.
datafile: Each line of the data file represents one row of table data. The data is output one column at a time in column order. If a column contains an array, each element of the column array in the current row is output before moving on to the next column. Each row ends with a new line.
Integer data is output right-justified in a 21-character field followed by a blank. Floating point data is output right justified using ‘g’ format in a 21-character field with 15 digits of precision, followed by a blank. String data that does not contain whitespace is output left-justified in a field whose width matches the width specified in the TFORM header parameter for the column, followed by a blank. When the string data contains whitespace characters, the string is enclosed in quotation marks (""). For the last data element in a row, the trailing blank in the field is replaced by a new line character.
For column data containing variable length arrays (‘P’ format), the array data is preceded by the string 'VLA_Length= ' and the integer length of the array for that row, left-justified in a 21-character field, followed by a blank.
Note
This format does not support variable length arrays using the (‘Q’ format) due to difficult to overcome ambiguities. What this means is that this file format cannot support VLA columns in tables stored in files that are over 2 GB in size.
For column data representing a bit field (‘X’ format), each bit value in the field is output right-justified in a 21-character field as 1 (for true) or 0 (for false).
cdfile: Each line of the column definitions file provides the definitions for one column in the table. The line is broken up into 8, sixteen-character fields. The first field provides the column name (TTYPEn). The second field provides the column format (TFORMn). The third field provides the display format (TDISPn). The fourth field provides the physical units (TUNITn). The fifth field provides the dimensions for a multidimensional array (TDIMn). The sixth field provides the value that signifies an undefined value (TNULLn). The seventh field provides the scale factor (TSCALn). The eighth field provides the offset value (TZEROn). A field value of "" is used to represent the case where no value is provided.
hfile: Each line of the header parameters file provides the definition of a single HDU header card as represented by the card image.
Read the HDU from a file. Normally an HDU should be opened with pyfits.open which reads the entire HDU list in a FITS file. But this method is still provided for symmetry with writeto.
Parameters: | |
---|---|
fileobj : file object or file-like object
checksum : bool
ignore_missing_end : bool
|
Check the existence, location, and value of a required Card.
Parameters: | |
---|---|
keyword : str
pos : int, callable
test : callable fix_value : str, int, float, complex, bool, None
option : str
errlist : list
|
Notes
If pos=None, the card can be anywhere in the header. If the card does not exist, the new card will have the fix_value as its value when created. Also check the card’s value by using the test argument.
Execute the verification with selected option.
Scale image data by using BSCALE and BZERO.
Calling this method will scale self.data and update the keywords of BSCALE and BZERO in self._header and self._image_header. This method should only be used right before writing to the output file, as the data will be scaled and is therefore not very usable after the call.
Parameters: | |
---|---|
type : str, optional
option : str, optional
bscale, bzero : int, optional
|
Update header keywords to reflect recent changes of columns.
Deprecated since version 3.2: Use (refactor your code) instead.
Deprecated since version 3.2: Use (refactor your code) instead.
Deprecated since version 3.2: Use (refactor your code) instead.
Deprecated since version 3.2: Use the .name attribute or Header.set instead.
Update the extension name associated with the HDU.
If the keyword already exists in the Header, it’s value and/or comment will be updated. If it does not exist, a new card will be created and it will be placed before or after the specified location. If no before or after is specified, it will be appended at the end.
Parameters: | |
---|---|
value : str
comment : str, optional
before : str or int, optional
after : str or int, optional
savecomment : bool, optional
|
Deprecated since version 3.2: Use the .ver attribute or Header.set instead.
Update the extension version associated with the HDU.
If the keyword already exists in the Header, it’s value and/or comment will be updated. If it does not exist, a new card will be created and it will be placed before or after the specified location. If no before or after is specified, it will be appended at the end.
Parameters: | |
---|---|
value : str
comment : str, optional
before : str or int, optional
after : str or int, optional
savecomment : bool, optional
|
Verify all values in the instance.
Parameters: | |
---|---|
option : str
|
Verify that the value in the CHECKSUM keyword matches the value calculated for the current HDU CHECKSUM.
Returns: | |
---|---|
valid : int
|
Verify that the value in the DATASUM keyword matches the value calculated for the DATASUM of the current HDU data.
Returns: | |
---|---|
valid : int
|
Works similarly to the normal writeto(), but prepends a default PrimaryHDU are required by extension HDUs (which cannot stand on their own).
Deprecated since version 3.2: Use the compressed_data attribute instead.
Shape of the image array–should be equivalent to self.data.shape.
Size (in bytes) of the data portion of the HDU.
Bases: object
Image section.
Slices of this object load the corresponding section of an image array from the underlying FITS file on disk, and applies any BSCALE/BZERO factors.
Section slices cannot be assigned to, and modifications to a section are not saved back to the underlying file.
See the Data Sections section of the PyFITS documentation for more details.