bundles / astropy latest / astropy / io / fits / hdu / table / _TableBaseHDU
class
astropy.io.fits.hdu.table:_TableBaseHDU
source: /astropy/io/fits/hdu/table.py :262
Signature
class _TableBaseHDU ( data = None , header = None , name = None , uint = False , ver = None , character_as_bytes = False ) Members
-
__init__ -
_clear_table_keywords -
_populate_table_keywords -
_prewriteto -
_summary -
_update_column_attribute_changed -
_update_column_removed -
_verify -
copy -
match_header -
update_header
Summary
FITS table extension base HDU class.
Parameters
data: arrayData to be used.
header: `Header` instanceHeader to be used. If the
datais also specified, header keywords specifically related to defining the table structure (such as the "TXXXn" keywords like TTYPEn) will be overridden by the supplied column definitions, but all other informational and data model-specific keywords are kept.name: strName to be populated in
EXTNAMEkeyword.uint: bool, optionalSet to
Trueif the table contains unsigned integer columns.ver: int > 0 or None, optionalThe ver of the HDU, will be the value of the keyword
EXTVER. If not given or None, it defaults to the value of theEXTVERcard of theheaderor 1. (default: None)character_as_bytes: boolWhether to return bytes for string columns. By default this is
Falseand (unicode) strings are returned, but this does not respect memory mapping and loads the whole column in memory when accessed.
Aliases
-
astropy.io.fits.hdu.table._TableBaseHDU