IsolatedStarAssociationConfig#
- class lsst.pipe.tasks.isolatedStarAssociation.IsolatedStarAssociationConfig(*args, **kw)#
Bases:
PipelineTaskConfigConfiguration for IsolatedStarAssociationTask.
Attributes Summary
Name of column with band name (
str, default'band')Ordered list of bands to use for matching/storage.
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
Name of column with declination.
Extra names of columns to read and persist (beyond instFlux and error).
Name of column with source id.
Full name of instFlux field to use for s/n selection and persistence.
Isolation radius (arcseconds).
Match radius (arcseconds) (
float, default1.0)HealPix nside to use for splitting tract for reduced memory.
Name of column with physical filter name (
str, default'physical_filter')Name of column with right ascension.
Flag to enable/disable saving of log output for a task, enabled by default.
How to select sources.
Methods Summary
Subclass hook for computing defaults.
Attributes Documentation
- band_column#
Name of column with band name (
str, default'band')
- band_order#
Ordered list of bands to use for matching/storage. Any bands not listed will not be matched. (
List, default['i', 'z', 'r', 'g', 'y', 'u'])
- connections: pexConfig.ConfigField#
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
- dec_column#
Name of column with declination. (
str, default'dec')
- extra_columns#
Extra names of columns to read and persist (beyond instFlux and error). (
List, default['x', 'y', 'xErr', 'yErr', 'apFlux_12_0_instFlux', 'apFlux_12_0_instFluxErr', 'apFlux_12_0_flag', 'apFlux_17_0_instFlux', 'apFlux_17_0_instFluxErr', 'apFlux_17_0_flag', 'localBackground_instFlux', 'localBackground_flag', 'ixx', 'iyy', 'ixy'])
- id_column#
Name of column with source id. (
str, default'sourceId')
- inst_flux_field#
Full name of instFlux field to use for s/n selection and persistence. The associated flag will be implicity included in bad_flags. Note that this is expected to end in
instFlux. (str, default'normCompTophatFlux_instFlux')
- isolation_radius#
Isolation radius (arcseconds). Any stars with average centroids within this radius of another star will be rejected from the final catalog. This radius should be at least 2x match_radius. (
float, default2.0)
- match_radius#
Match radius (arcseconds) (
float, default1.0)
- nside_split#
HealPix nside to use for splitting tract for reduced memory. Must be power of 2. (
int, default32)
- physical_filter_column#
Name of column with physical filter name (
str, default'physical_filter')
- ra_column#
Name of column with right ascension. (
str, default'ra')
- saveLogOutput#
Flag to enable/disable saving of log output for a task, enabled by default. (
bool, defaultTrue)
- source_selector#
How to select sources. Under normal usage this should not be changed. (
RegistryInstanceDict, default'science')
Methods Documentation