LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
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.