output

add_output_column(name, params)

Add a new set of columns to the output catalog.

Parameters
  • name (str) – Name/prefix of the new set of columns

  • params (list of columns) – List of properties to add to the output with the given name/prefix. They must be subtype of one of the known ones: ParameterBase for model fitting, or Aperture for aperture photometry.

Raises
  • ValueError – If the name has already been used

  • TypeError – If any of the parameters are not of a known type (see params)

See also

aperture.add_aperture_photometry, model_fitting.ParameterBase

print_output_columns(file=<_io.TextIOWrapper name='<stderr>' mode='w' encoding='UTF-8'>)

Print a human-readable representation of the configured output columns.

Parameters

file (file object) – Where to print the representation. Defaults to sys.stderr