LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions | Variables
lsst.meas.astrom.verifyWcs Namespace Reference

Functions

 checkMatches (srcMatchSet, exposure, log=None)
 

Variables

 _LOG = logging.getLogger(__name__)
 

Function Documentation

◆ checkMatches()

lsst.meas.astrom.verifyWcs.checkMatches ( srcMatchSet,
exposure,
log = None )
Check astrometric matches and assess Wcs quality by computing statics
over spacial cells in the image.

Parameters
----------
srcMatchSet : `list` of `lsst.afw.table.ReferenceMatch`
    List of matched sources to a reference catalog.
exposure : `lsst.afw.image.Exposure`
    Image the sources in srcMatchSet were detected/measured in.
log : `lsst.log.Log` or `logging.Logger`
    Logger object.

Returns
-------
values : `dict`
    Result dictionary with fields:

    - ``minObjectsPerCell`` : (`int`)
    - ``maxObjectsPerCell`` : (`int`)
    - ``meanObjectsPerCell`` : (`float`)
    - ``stdObjectsPerCell`` : (`float`)

Definition at line 37 of file verifyWcs.py.

37def checkMatches(srcMatchSet, exposure, log=None):
38 """Check astrometric matches and assess Wcs quality by computing statics
39 over spacial cells in the image.
40
41 Parameters
42 ----------
43 srcMatchSet : `list` of `lsst.afw.table.ReferenceMatch`
44 List of matched sources to a reference catalog.
45 exposure : `lsst.afw.image.Exposure`
46 Image the sources in srcMatchSet were detected/measured in.
47 log : `lsst.log.Log` or `logging.Logger`
48 Logger object.
49
50 Returns
51 -------
52 values : `dict`
53 Result dictionary with fields:
54
55 - ``minObjectsPerCell`` : (`int`)
56 - ``maxObjectsPerCell`` : (`int`)
57 - ``meanObjectsPerCell`` : (`float`)
58 - ``stdObjectsPerCell`` : (`float`)
59 """
60 if not exposure:
61 return {}
62
63 if log is None:
64 log = _LOG
65
66 im = exposure.getMaskedImage().getImage()
67 width, height = im.getWidth(), im.getHeight()
68 nx, ny = 3, 3
69 w, h = width//nx, height//ny
70
71 if w == 0:
72 w = 1
73 while nx*w < width:
74 w += 1
75
76 if h == 0:
77 h = 1
78 while ny*h < height:
79 h += 1
80
81 cellSet = afwMath.SpatialCellSet(
82 lsst.geom.Box2I(lsst.geom.Point2I(0, 0), lsst.geom.Extent2I(width, height)), w, h)
83 #
84 # Populate cellSet
85 #
86 i = -1
87 for m in srcMatchSet:
88 i += 1
89
90 src = m.second
91 csrc = afwDetection.Source()
92 csrc.setId(i)
93 csrc.setXAstrom(src.getXAstrom())
94 csrc.setYAstrom(src.getYAstrom())
95
96 try:
97 cellSet.insertCandidate(measAlg.PsfCandidateF(csrc, exposure.getMaskedImage()))
98 except Exception as e:
99 log.warning("%s", e)
100
101 ncell = len(cellSet.getCellList())
102 nobj = np.ndarray(ncell, dtype='i')
103
104 for i in range(ncell):
105 cell = cellSet.getCellList()[i]
106
107 nobj[i] = cell.size()
108
109 dx = np.ndarray(cell.size())
110 dy = np.ndarray(cell.size())
111
112 j = 0
113 for cand in cell:
114 #
115 # Swig doesn't know that we're a SpatialCellImageCandidate; all it knows is that we have
116 # a SpatialCellCandidate so we need an explicit (dynamic) cast
117 #
118 mid = cand.getSource().getId()
119 dx[j] = srcMatchSet[mid].first.getXAstrom() - srcMatchSet[mid].second.getXAstrom()
120 dy[j] = srcMatchSet[mid].first.getYAstrom() - srcMatchSet[mid].second.getYAstrom()
121
122 j += 1
123
124 log.debug("%s %-30s %8s dx,dy = %5.2f,%5.2f rms_x,y = %5.2f,%5.2f",
125 cell.getLabel(), cell.getBBox(), ("nobj=%d" % cell.size()),
126 dx.mean(), dy.mean(), dx.std(), dy.std())
127
128 nobj.sort()
129
130 values = {}
131 values["minObjectsPerCell"] = int(nobj[0]) # otherwise it's a numpy integral type
132 values["maxObjectsPerCell"] = int(nobj[-1])
133 values["meanObjectsPerCell"] = nobj.mean()
134 values["stdObjectsPerCell"] = nobj.std()
135
136 return values
A collection of SpatialCells covering an entire image.
An integer coordinate rectangle.
Definition Box.h:55

Variable Documentation

◆ _LOG

lsst.meas.astrom.verifyWcs._LOG = logging.getLogger(__name__)
protected

Definition at line 34 of file verifyWcs.py.