ConvertReferenceCatalogTask¶
ConvertReferenceCatalogTask
converts an external catalog for use as an LSST Science Pipelines reference catalog, using a Hierarchical Triangular Mesh (HTM) indexing scheme. The format and layout of the input data is configurable. The output data is a collection of lsst.afw.table.SimpleCatalog
files identified by their HTM pixel. This task is not available as a pipeline task: see How to generate an LSST reference catalog for how to run the task.
Processing summary¶
ConvertReferenceCatalogTask
uses Python multiprocessing
to ingest multiple files in parallel, configured by n_processes
.
Once it has generated the necessary multiprocessing file locks (one per output file: ~130,000 files for HTM depth=7
), it performs the following steps for each input file:
- Reads the file using the configured
file_reader
subtask (default:ReadTextCatalogTask
). - Indexes the coordinates in the input data to determine which mesh pixel they go with, and thus which output file they will be written to.
- Loops over the output pixels in this input file (where N is the number of sources in this pixel):
- Acquires the lock for this output file.
- Reads an existing output file and appends N new empty rows, or generates a new empty catalog with N rows.
- Fills in the empty rows of the catalog with the converted values from the input data.
- Writes the output file and releases the file lock.
Python API summary¶
from lsst.meas.algorithms.convertReferenceCatalog import ConvertReferenceCatalogTask
-
class
(*, output_dir=None, **kwargs)ConvertReferenceCatalogTask
Class for producing HTM-indexed reference catalogs from external catalog data
...
-
attribute
config
Access configuration fields and retargetable subtasks.
See also
See the ConvertReferenceCatalogTask
API reference for complete details.
Butler datasets¶
ConvertReferenceCatalogTask
does not behave in the same manner as most LSST Tasks.
When run directly through the run
method (e.g. via the convertReferenceCatalog commandline interface), ConvertReferenceCatalogTask
reads input from a collection of non-LSST files, and writes to a specified directory.
Note that configurations for ConvertReferenceCatalogTask
, and its subtasks, affect what the output dataset content is.
Output datasets¶
ref_cat
- An LSST-style reference catalog, consisting of one
lsst.afw.table.SimpleCatalog
per HTM pixel.
Retargetable subtasks¶
file_reader¶
- Default
lsst.meas.algorithms.readTextCatalogTask.ReadTextCatalogTask
- Field type
ConfigurableField
manager¶
- Default
lsst.meas.algorithms.convertRefcatManager.ConvertRefcatManager
- Field type
ConfigurableField
Configuration fields¶
coord_err_unit¶
dataset_config¶
- Data type
lsst.meas.algorithms.convertReferenceCatalog.DatasetConfig
- Field type
ConfigField
epoch_format¶
epoch_scale¶
full_position_information¶
ConvertRefcatManager
class must exist to compute the output covariances.id_name¶
is_photometric_name¶
is_resolved_name¶
is_variable_name¶
mag_column_list¶
mag_err_column_map¶
parallax_scale¶
pm_dec_err_name¶
pm_scale¶
Examples¶
See How to generate an LSST reference catalog for a description of how to run the task to ingest the Gaia DR2 catalog.