LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
transforms.py
Go to the documentation of this file.
1 # This file is part of meas_base.
2 #
3 # Developed for the LSST Data Management System.
4 # This product includes software developed by the LSST Project
5 # (https://www.lsst.org).
6 # See the COPYRIGHT file at the top-level directory of this distribution
7 # for details of code ownership.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <https://www.gnu.org/licenses/>.
21 
22 """Measurement transformations.
23 
24 When a measurement plugin is run, it provides raw, uncalibrated outputs such
25 as pixel positions. A transformation may be run as a post-processing step to
26 convert those outputs to calibrated quantities, such as celestial coordinates.
27 
28 At construction, the transformation is passed the configuration and name of
29 the plugin whose outputs it will be transformaing (all fields in the input
30 table produced by that plugin will have their field names prefixed by the
31 plugin name) and a `~lsst.afw.table.SchemaMapper` which holds the schemata for
32 the input and output catalogs and which may be used to directly map fields
33 between the catalogs.
34 
35 When a transformer is called, it is handed a `~lsst.afw.table.SourceCatalog`
36 containing the measurements to be transformed, a `~lsst.afw.table.BaseCatalog`
37 in which to store results, and information about the WCS and calibration of
38 the data. It may be safely assumed that both are contiguous in memory, thus a
39 ``ColumnView`` may be used for efficient processing. If the transformation is
40 not possible, it should be aborted by throwing an exception; if this happens,
41 the caller should assume that the contents of the output catalog are
42 inconsistent.
43 
44 Transformations can be defined in Python or in C++. Python code should inherit
45 from `MeasurementTransform`, following its interface.
46 """
47 
48 from lsst.afw.table import CoordKey
49 from lsst.pex.exceptions import LengthError
50 from . import CentroidResultKey
51 
52 __all__ = ("MeasurementTransform", "NullTransform", "PassThroughTransform", "SimpleCentroidTransform")
53 
54 
56  """Base class for measurement transformations.
57 
58  Parameters
59  ----------
60  config : subclass of `BasePluginConfig`
61  The configuration of the measurement plugin whose outputs are being
62  transformed.
63  name : `str`
64  The name of the measurement plugin whose outputs are being
65  transformed.
66  mapper : `lsst.afw.table.SchemaMapper`
67  Mapping between the input (pre-transformation) and output
68  (transformed) catalogs.
69 
70  Notes
71  -----
72  Create transformations by deriving from this class, implementing
73  `__call__()` and (optionally) augmenting `__init__()`.
74  """
75 
76  def __init__(self, config, name, mapper):
77  self.namename = name
78  self.configconfig = config
79 
80  def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib):
81  raise NotImplementedError()
82 
83  @staticmethod
84  def _checkCatalogSize(cat1, cat2):
85  if len(cat1) != len(cat2):
86  raise LengthError("Catalog size mismatch")
87 
88 
90  """Null transform which transfers no data from input to output.
91 
92  This is intended as the default for measurements for which no other
93  transformation is specified.
94 
95  Parameters
96  ----------
97  config : subclass of `BasePluginConfig`
98  The configuration of the measurement plugin whose outputs are being
99  transformed.
100  name : `str`
101  The name of the measurement plugin whose outputs are being
102  transformed.
103  mapper : `lsst.afw.table.SchemaMapper`
104  Mapping between the input (pre-transformation) and output
105  (transformed) catalogs.
106  """
107 
108  def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib):
109  self._checkCatalogSize_checkCatalogSize(inputCatalog, outputCatalog)
110 
111 
113  """Copy fields from input to output without transformation.
114 
115  Parameters
116  ----------
117  config : subclass of `BasePluginConfig`
118  The configuration of the measurement plugin whose outputs are being
119  transformed.
120  name : `str`
121  The name of the measurement plugin whose outputs are being
122  transformed.
123  mapper : `lsst.afw.table.SchemaMapper`
124  Mapping between the input (pre-transformation) and output
125  (transformed) catalogs.
126  """
127 
128  def __init__(self, config, name, mapper):
129  MeasurementTransform.__init__(self, config, name, mapper)
130  for key, field in mapper.getInputSchema().extract(name + "*").values():
131  mapper.addMapping(key)
132 
133  def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib):
134  self._checkCatalogSize_checkCatalogSize(inputCatalog, outputCatalog)
135 
136 
138  """Transform pixel centroid, without uncertainty, to celestial coordinates.
139 
140  Parameters
141  ----------
142  config : subclass of `BasePluginConfig`
143  The configuration of the measurement plugin whose outputs are being
144  transformed.
145  name : `str`
146  The name of the measurement plugin whose outputs are being
147  transformed.
148  mapper : `lsst.afw.table.SchemaMapper`
149  Mapping between the input (pre-transformation) and output
150  (transformed) catalogs.
151  """
152 
153  def __init__(self, config, name, mapper):
154  MeasurementTransform.__init__(self, config, name, mapper)
155  self.coordKeycoordKey = CoordKey.addFields(mapper.editOutputSchema(), name, "Position from " + name)
156 
157  def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib):
158  self._checkCatalogSize_checkCatalogSize(inputCatalog, outputCatalog)
159  centroidResultKey = CentroidResultKey(inputCatalog.schema[self.namename])
160  for inSrc, outSrc in zip(inputCatalog, outputCatalog):
161  self.coordKeycoordKey.set(outSrc, wcs.pixelToSky(centroidResultKey.get(inSrc).getCentroid()))
def __init__(self, config, name, mapper)
Definition: transforms.py:76
def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib)
Definition: transforms.py:80
def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib)
Definition: transforms.py:108
def __init__(self, config, name, mapper)
Definition: transforms.py:128
def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib)
Definition: transforms.py:133
def __call__(self, inputCatalog, outputCatalog, wcs, photoCalib)
Definition: transforms.py:157
def __init__(self, config, name, mapper)
Definition: transforms.py:153
Reports attempts to exceed implementation-defined length limits for some classes.
Definition: Runtime.h:76
daf::base::PropertySet * set
Definition: fits.cc:912