|
SourceXtractorPlusPlus 0.18
SourceXtractor++, the next generation SExtractor
|
Functions | |
| def | print_output_columns (file=sys.stderr) |
| def | add_output_column (name, params) |
Variables | |
| _used_names = set() | |
| list | model_fitting_parameter_columns = [] |
| list | aperture_columns = [] |
| dictionary | _type_column_map |
| def sourcextractor.config.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
Definition at line 54 of file output.py.
Referenced by sourcextractor.config.aperture.add_aperture_photometry(), sourcextractor.config.model_fitting.get_world_parameters(), and sourcextractor.config.model_fitting.get_world_position_parameters().
| def sourcextractor.config.output.print_output_columns | ( | file = sys.stderr | ) |
|
private |