BaseColumnInfo#
- class astropy.utils.data_info.BaseColumnInfo(bound=False)[source]#
Bases:
DataInfo
Base info class for anything that can be a column in an astropy Table.
There are at least two classes that inherit from this:
ColumnInfo: for native astropy Column / MaskedColumn objects MixinInfo: for mixin column objects
Note that this class is defined here so that mixins can use it without importing the table package.
Attributes Summary
Methods Summary
adjust_indices
(index, value, col_len)Adjust info indices after column modification.
Return a list of arrays which can be lexically sorted to represent the order of the parent column.
This is a mixin-safe version of Column.iter_str_vals.
merge_cols_attributes
(cols, ...)Utility method to merge and validate the attributes
attrs
for the input table columnscols
.slice_indices
(col_slice, item, col_len)Given a sliced object, modify its indices to correctly represent the slice.
Attributes Documentation
- attr_names = {'description', 'dtype', 'format', 'indices', 'meta', 'name', 'parent_table', 'unit'}#
- indices#
- parent_table#
Methods Documentation
- get_sortable_arrays()[source]#
Return a list of arrays which can be lexically sorted to represent the order of the parent column.
The base method raises NotImplementedError and must be overridden.
- static merge_cols_attributes(cols, metadata_conflicts, name, attrs)[source]#
Utility method to merge and validate the attributes
attrs
for the input table columnscols
.Note that
dtype
andshape
attributes are handled specially. These should not be passed inattrs
but will always be in the returned dict of merged attributes.