uvex_transients.simulation.yield_table.YieldTable.to_ascii#

YieldTable.to_ascii(path: str | Path, overwrite: bool = False) → None[source]#

Write this table to a human-readable, fixed-width ASCII file.

Uses astropy.io.ascii’s fixed_width_two_line format – plain, aligned columns with a header separator line, readable directly in a text editor or terminal – unlike to_disk()’s ECSV (YAML-in-comments, optimized for a clean round trip back into a QTable, not for reading by eye).

Parameters:
  • path (str or Path) – Destination path.

  • overwrite (bool, optional) – Whether to overwrite an existing file at path.