LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
Functions | Variables
lsst.synpipe.showFootprints Namespace Reference

Functions

def getMosaic (sources, exposure, idname)
 
def main (root, visit, ccd, fakes=None, blends=False, listobj=16, filt=None)
 

Variables

 parser = argparse.ArgumentParser()
 
 help
 
 type
 
 int
 
 str
 
 default
 
 dest
 
 action
 
 False
 
 args = parser.parse_args()
 
 fakes
 
 fake
 
 listobj
 
 blends
 
 filt
 

Detailed Description

function to show a list of src footprints in a mosaic

Function Documentation

◆ getMosaic()

def lsst.synpipe.showFootprints.getMosaic (   sources,
  exposure,
  idname 
)
make a ds9 mosaic for the given source list from the given exposure

stolen from psfMosaic.py on the sphinx documentation

Definition at line 17 of file showFootprints.py.

17 def getMosaic(sources, exposure, idname):
18  """
19  make a ds9 mosaic for the given source list from the given exposure
20 
21  stolen from psfMosaic.py on the sphinx documentation
22  """
23  img = exposure.getMaskedImage().getImage()
24  subImages = []
25  labels = []
26  for src in sources:
27  footBBox = src.getFootprint().getBBox()
28  subimg = lsst.afw.image.ImageF(img, footBBox,
29  lsst.afw.image.PARENT, True)
30  footMask = lsst.afw.image.ImageU(footBBox)
31  src.getFootprint().insertIntoImage(footMask, 1, footBBox)
32  subimg *= footMask.convertF()
33  subImages.append(subimg)
34  labels.append('ID=%s' % str(src.get(idname)))
35 
37  m.setGutter(2)
38  m.setBackground(0)
39  m.setMode("square")
40 
41  # create the mosaic
42  for img in subImages:
43  m.append(img)
44  mosaic = m.makeMosaic()
45 
46  # display it with labels in ds9
47  ds9.mtv(mosaic)
48  m.drawLabels(labels)
49 
50 
def getMosaic(sources, exposure, idname)

◆ main()

def lsst.synpipe.showFootprints.main (   root,
  visit,
  ccd,
  fakes = None,
  blends = False,
  listobj = 16,
  filt = None 
)

Definition at line 51 of file showFootprints.py.

51 def main(root, visit, ccd, fakes=None, blends=False, listobj=16, filt=None):
52 
53  butler = lsst.daf.persistence.Butler(root)
54  dataId = {'visit': visit,
55  'ccd': int(ccd)} if filt is None else {'tract': visit,
56  'patch': ccd,
57  'filter': filt}
58 
59  if fakes is not None:
60  src = matchFakes.getFakeSources(butler, dataId,
61  extraCols=('zeropoint'),
62  radecMatch=fakes)
63  else:
64  src = butler.get('src' if filt is None else 'deepCoadd-src', dataId)
65  if not blends:
66  src = [s for s in src if ((s.get('deblend.nchild') == 0) &
67  (s.get('parent') == 0))]
68  else:
69  src = [s for s in src if (s.get('deblend.nchild') == 0)]
70 
71  exposure = butler.get('calexp' if filt is None else 'deepCoadd', dataId)
72 
73  if type(listobj) is int:
74  listobj = numpy.random.choice(list(range(len(src))), listobj, False)
75 
76  srcList = [src[i] for i in listobj]
77 
78  getMosaic(srcList, exposure, 'fakeId' if fakes else 'id')
79 
80 
def getMosaic(sources, exposure, idname)
table::Key< int > type
Definition: Detector.cc:164
def main(root, visit, ccd, fakes=None, blends=False, listobj=16, filt=None)
daf::base::PropertyList * list
Definition: fits.cc:833

Variable Documentation

◆ action

lsst.synpipe.showFootprints.action

Definition at line 93 of file showFootprints.py.

◆ args

lsst.synpipe.showFootprints.args = parser.parse_args()

Definition at line 96 of file showFootprints.py.

◆ blends

lsst.synpipe.showFootprints.blends

Definition at line 100 of file showFootprints.py.

◆ default

lsst.synpipe.showFootprints.default

Definition at line 86 of file showFootprints.py.

◆ dest

lsst.synpipe.showFootprints.dest

Definition at line 90 of file showFootprints.py.

◆ fake

lsst.synpipe.showFootprints.fake

Definition at line 99 of file showFootprints.py.

◆ fakes

lsst.synpipe.showFootprints.fakes

Definition at line 99 of file showFootprints.py.

◆ False

lsst.synpipe.showFootprints.False

Definition at line 94 of file showFootprints.py.

◆ filt

lsst.synpipe.showFootprints.filt

Definition at line 100 of file showFootprints.py.

◆ help

lsst.synpipe.showFootprints.help

Definition at line 83 of file showFootprints.py.

◆ int

lsst.synpipe.showFootprints.int

Definition at line 84 of file showFootprints.py.

◆ listobj

lsst.synpipe.showFootprints.listobj

Definition at line 99 of file showFootprints.py.

◆ parser

lsst.synpipe.showFootprints.parser = argparse.ArgumentParser()

Definition at line 82 of file showFootprints.py.

◆ str

lsst.synpipe.showFootprints.str

Definition at line 85 of file showFootprints.py.

◆ type

lsst.synpipe.showFootprints.type

Definition at line 84 of file showFootprints.py.