Implementation for index_t::getCatalog method.
- Parameters
-
[in] | inds | star kd-trees from astrometry.net |
[in] | ctrCoord | center of search region |
[in] | radius | search radius |
[in] | idCol | name of ID column in astrometry.net data |
[in] | magColInfoList | list of information about magnitude columns in astrometry.net data |
[in] | starGalCol | name of "starGal" column (true if object is a star) in astrometry.net data |
[in] | varCol | name of "var" column (true if brightness is variable) in astrometry.net data |
[in] | uniqueIds | if true then only return unique IDs (the first of each seen) |
Returned schema:
- id
- coord: ICRS sky position (an lsst::afw::geom::SpherePoint)
- centroid: centroid on some exposure, if relevant (an lsst::afw::geom::Point2D); returned value is not set
- hasCentroid: if true then centroid has been set; returned value is false
- filterName_flux: flux in the specified filter (double)
- filterName_fluxSigma: flux uncertainty in the specified filter (double)
- resolved (if starGalCol specified): true if object is not resolved
- variable (if varCol specified): true if brightness is variable
- photometric: true if not resolved (or starGalCol blank) and not variable (or varCol blank); note that if starGalCol and varCol both blank then all objects are claimed to be photometric
Definition at line 59 of file utils.cc.