ColumnECSV#

class astropy.io.misc.ecsv.ColumnECSV(name, datatype, subtype=None, unit=None, description=None, format=None, meta=None)[source]#

Bases: object

Class representing attributes of a column in an ECSV header.

Attributes:
namepython:str

The name of the column.

datatypepython:str

The data type of the column as specified in the ECSV header.

subtypepython:str or python:None, optional

The subtype of the column, if applicable.

unitpython:str or python:None, optional

The unit of the column values, if specified.

descriptionpython:str or python:None, optional

A description of the column.

formatpython:str or python:None, optional

The format string for the column values.

metapython:dict or python:None, optional

Additional metadata associated with the column.

Attributes Summary

csv_np_type

Numpy type string describing the column CSV data.

description

dtype

Numpy dtype in the final column data

format

meta

shape

Shape of the column data

subtype

unit

Attributes Documentation

csv_np_type[source]#

Numpy type string describing the column CSV data.

description = None#
dtype[source]#

Numpy dtype in the final column data

format = None#
meta = None#
shape[source]#

Shape of the column data

subtype = None#
unit = None#