MatchTractCatalogProbabilisticConfig#
- class lsst.pipe.tasks.match_tract_catalog_probabilistic.MatchTractCatalogProbabilisticConfig(*args, **kw)#
Bases:
MatchProbabilisticConfig,MatchTractCatalogSubConfigConfig class for the MatchTractCatalogSubTask to define methods returning values that depend on multiple config settings.
Attributes Summary
Name of column in reference catalog specifying order for matching Derived from columns_ref_flux if not set.
Reference table columns to copy unchanged into both match tables (
List, default[])List of reference flux columns to nansum total magnitudes from if column_order is None (
List, default[])The reference table columns to compute match likelihoods from (usually centroids and fluxes/magnitudes) (
List)Reference table columns to require to be False for selecting sources (
List, default())Reference table columns to require to be True for selecting sources (
List, default())Target table columns to copy unchanged into both match tables (
List, default[])Target table columns with standard errors (sigma) corresponding to columns_ref_meas (
List)Target table columns with measurements corresponding to columns_ref_meas (
List)Target table columns to require to be False for selecting sources (
List, default('merge_peak_sky',))Target table columns to require to be True for selecting sources (
List, default('detect_isPrimary',))Configuration for coordinate conversion (
ConvertCatalogCoordinatesConfig, default<class 'lsst.meas.astrom.matcher_probabilistic.ConvertCatalogCoordinatesConfig'>)Bright magnitude cutoff for selecting reference sources to match.
Faint magnitude cutoff for selecting reference sources to match.
Maximum match distance.
Minimum number of columns with a finite value to measure match likelihood (
int, default2)Maximum number of spatial matches to consider (in ascending distance order).
Whether to order reference match candidates in ascending order of column_ref_order (should be False if the column is a flux and True if it is a magnitude.
Attributes Documentation
- column_ref_order#
Name of column in reference catalog specifying order for matching Derived from columns_ref_flux if not set. (
str, defaultNone)
- columns_in_ref#
- columns_in_target#
- columns_ref_copy#
Reference table columns to copy unchanged into both match tables (
List, default[])
- columns_ref_flux#
List of reference flux columns to nansum total magnitudes from if column_order is None (
List, default[])
- columns_ref_meas#
The reference table columns to compute match likelihoods from (usually centroids and fluxes/magnitudes) (
List)
- columns_ref_select_false#
Reference table columns to require to be False for selecting sources (
List, default())
- columns_ref_select_true#
Reference table columns to require to be True for selecting sources (
List, default())
- columns_target_copy#
Target table columns to copy unchanged into both match tables (
List, default[])
- columns_target_err#
Target table columns with standard errors (sigma) corresponding to columns_ref_meas (
List)
- columns_target_meas#
Target table columns with measurements corresponding to columns_ref_meas (
List)
- columns_target_select_false#
Target table columns to require to be False for selecting sources (
List, default('merge_peak_sky',))
- columns_target_select_true#
Target table columns to require to be True for selecting sources (
List, default('detect_isPrimary',))
- coord_format#
Configuration for coordinate conversion (
ConvertCatalogCoordinatesConfig, default<class 'lsst.meas.astrom.matcher_probabilistic.ConvertCatalogCoordinatesConfig'>)
- mag_brightest_ref#
Bright magnitude cutoff for selecting reference sources to match. Ignored if column_ref_order is None. (
float, default-inf)
- mag_faintest_ref#
Faint magnitude cutoff for selecting reference sources to match. Ignored if column_ref_order is None. (
float, defaultinf)
- match_dist_max#
Maximum match distance. Units must be arcseconds if coords_spherical, or else match those of column_*_coord[12] multiplied by coords_*_factor. (
float, default0.5)
- match_n_finite_min#
Minimum number of columns with a finite value to measure match likelihood (
int, default2)
- match_n_max#
Maximum number of spatial matches to consider (in ascending distance order). (
int, default10)
- order_ascending#
Whether to order reference match candidates in ascending order of column_ref_order (should be False if the column is a flux and True if it is a magnitude. (
bool, defaultFalse)