TimeInfo¶
-
class
astropy.time.TimeInfo(bound=False)[source]¶ Bases:
astropy.utils.data_info.MixinInfoContainer for meta information like name, description, format. This is required when the object is used as a mixin column within a table, but can be used as a general way to store meta information.
Attributes Summary
attr_namesattrs_from_parentmask_valunitMethods Summary
__call__([option, out])Write summary information about data object to the outfilehandle.adjust_indices(index, value, col_len)Adjust info indices after column modification. info_summary_attributes(dat)info_summary_stats(dat)iter_str_vals()This is a mixin-safe version of Column.iter_str_vals. merge_cols_attributes(cols, …)Utility method to merge and validate the attributes attrsfor the input table columnscols.new_like(cols, length[, metadata_conflicts, …])Return a new Time instance which is consistent with the input Time objects colsand haslengthrows.slice_indices(col_slice, item, col_len)Given a sliced object, modify its indices to correctly represent the slice. Attributes Documentation
-
attr_names= {'indices', 'parent_table', 'serialize_method', 'meta', 'unit', 'name', 'format', 'description', 'dtype'}¶
-
attrs_from_parent= {'unit'}¶
-
mask_val= masked¶
-
unit¶
Methods Documentation
-
__call__(option='attributes', out='')¶ Write summary information about data object to the
outfilehandle. By default this prints to standard output via sys.stdout.The
optionargument specifies what type of information to include. This can be a string, a function, or a list of strings or functions. Built-in options are:attributes: data object attributes likedtypeandformatstats: basic statistics: min, mean, and max
If a function is specified then that function will be called with the data object as its single argument. The function must return an OrderedDict containing the information attributes.
If a list is provided then the information attributes will be appended for each of the options, in order.
Parameters: - option : str, function, list of (str or function)
Info option, defaults to ‘attributes’.
- out : file-like object, None
Output destination, defaults to sys.stdout. If None then the OrderedDict with information attributes is returned
Returns: - info : OrderedDict if out==None else None
Examples
>>> from astropy.table import Column >>> c = Column([1, 2], unit='m', dtype='int32') >>> c.info() dtype = int32 unit = m class = Column n_bad = 0 length = 2
>>> c.info(['attributes', 'stats']) dtype = int32 unit = m class = Column mean = 1.5 std = 0.5 min = 1 max = 2 n_bad = 0 length = 2
-
adjust_indices(index, value, col_len)¶ Adjust info indices after column modification.
Parameters: - index : slice, int, list, or ndarray
Element(s) of column to modify. This parameter can be a single row number, a list of row numbers, an ndarray of row numbers, a boolean ndarray (a mask), or a column slice.
- value : int, list, or ndarray
New value(s) to insert
- col_len : int
Length of the column
-
static
info_summary_attributes(dat)¶
-
static
info_summary_stats(dat)¶
-
iter_str_vals()¶ This is a mixin-safe version of Column.iter_str_vals.
-
static
merge_cols_attributes(cols, metadata_conflicts, name, attrs)¶ Utility method to merge and validate the attributes
attrsfor the input table columnscols.Note that
dtypeandshapeattributes are handled specially. These should not be passed inattrsbut will always be in the returned dict of merged attributes.Parameters: - cols : list
List of input Table column objects
- metadata_conflicts : str (‘warn’|’error’|’silent’)
How to handle metadata conflicts
- name : str
Output column name
- attrs : list
List of attribute names to be merged
Returns: - attrs : dict of merged attributes
-
new_like(cols, length, metadata_conflicts='warn', name=None)[source]¶ Return a new Time instance which is consistent with the input Time objects
colsand haslengthrows.This is intended for creating an empty Time instance whose elements can be set in-place for table operations like join or vstack. It checks that the input locations and attributes are consistent. This is used when a Time object is used as a mixin column in an astropy Table.
Parameters: - cols : list
List of input columns (Time objects)
- length : int
Length of the output column object
- metadata_conflicts : str (‘warn’|’error’|’silent’)
How to handle metadata conflicts
- name : str
Output column name
Returns: - col : Time (or subclass)
Empty instance of this class consistent with
cols
-
slice_indices(col_slice, item, col_len)¶ Given a sliced object, modify its indices to correctly represent the slice.
Parameters: - col_slice : Column or mixin
Sliced object
- item : slice, list, or ndarray
Slice used to create col_slice
- col_len : int
Length of original object
-