LSST Applications g0da5cf3356+25b44625d0,g17e5ecfddb+50a5ac4092,g1c76d35bf8+585f0f68a2,g295839609d+8ef6456700,g2e2c1a68ba+cc1f6f037e,g38293774b4+62d12e78cb,g3b44f30a73+2891c76795,g48ccf36440+885b902d19,g4b2f1765b6+0c565e8f25,g5320a0a9f6+bd4bf1dc76,g56364267ca+403c24672b,g56b687f8c9+585f0f68a2,g5c4744a4d9+78cd207961,g5ffd174ac0+bd4bf1dc76,g6075d09f38+3075de592a,g667d525e37+cacede5508,g6f3e93b5a3+da81c812ee,g71f27ac40c+cacede5508,g7212e027e3+eb621d73aa,g774830318a+18d2b9fa6c,g7985c39107+62d12e78cb,g79ca90bc5c+fa2cc03294,g881bdbfe6c+cacede5508,g91fc1fa0cf+82a115f028,g961520b1fb+2534687f64,g96f01af41f+f2060f23b6,g9ca82378b8+cacede5508,g9d27549199+78cd207961,gb065e2a02a+ad48cbcda4,gb1df4690d6+585f0f68a2,gb35d6563ee+62d12e78cb,gbc3249ced9+bd4bf1dc76,gbec6a3398f+bd4bf1dc76,gd01420fc67+bd4bf1dc76,gd59336e7c4+c7bb92e648,gf46e8334de+81c9a61069,gfed783d017+bd4bf1dc76,v25.0.1.rc3
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | Properties | List of all members
lsst.afw.image.exposure._exposureContinued.Exposure Class Reference
Inheritance diagram for lsst.afw.image.exposure._exposureContinued.Exposure:

Public Member Functions

def __reduce__ (self)
 
def convertF (self)
 
def convertD (self)
 
def getImage (self)
 
def setImage (self, image)
 
def getMask (self)
 
def setMask (self, mask)
 
def getVariance (self)
 
def setVariance (self, variance)
 
def getConvexPolygon (self, padding=10)
 
def containsSkyCoords (self, ra, dec, padding=10)
 

Static Public Attributes

 readFitsWithOptions = classmethod(imageReadFitsWithOptions)
 
 writeFitsWithOptions = exposureWriteFitsWithOptions
 

Properties

 image = property(getImage, setImage)
 
 mask = property(getMask, setMask)
 
 variance = property(getVariance, setVariance)
 
 convex_polygon = property(getConvexPolygon)
 

Detailed Description

Definition at line 35 of file _exposureContinued.py.

Member Function Documentation

◆ __reduce__()

def lsst.afw.image.exposure._exposureContinued.Exposure.__reduce__ (   self)

Definition at line 63 of file _exposureContinued.py.

63 def __reduce__(self):
64 from lsst.afw.fits import reduceToFits
65 return reduceToFits(self)
66

◆ containsSkyCoords()

def lsst.afw.image.exposure._exposureContinued.Exposure.containsSkyCoords (   self,
  ra,
  dec,
  padding = 10 
)
Check if a set of sky positions is in the pixel bounding box.

The default padding size was chosen to be sufficient for the
most warped detectors at the edges of the HyperSuprimeCam focal plane.

Parameters
----------
ra : `astropy.Quantity`, (N,)
    Array of Right Ascension, angular units.
dec : `astropy.Quantity`, (N,)
    Array of Declination, angular units.
padding : `int`, optional
    Pixel padding to ensure that bounding box is entirely contained
    within the sky polygon (see ``getConvexPolygon()``).

Returns
-------
contained : `np.ndarray`, (N,)
    Boolean array indicating which points are contained in the
    bounding box.

Raises
------
ValueError if exposure does not have a valid wcs.

Definition at line 125 of file _exposureContinued.py.

125 def containsSkyCoords(self, ra, dec, padding=10):
126 """Check if a set of sky positions is in the pixel bounding box.
127
128 The default padding size was chosen to be sufficient for the
129 most warped detectors at the edges of the HyperSuprimeCam focal plane.
130
131 Parameters
132 ----------
133 ra : `astropy.Quantity`, (N,)
134 Array of Right Ascension, angular units.
135 dec : `astropy.Quantity`, (N,)
136 Array of Declination, angular units.
137 padding : `int`, optional
138 Pixel padding to ensure that bounding box is entirely contained
139 within the sky polygon (see ``getConvexPolygon()``).
140
141 Returns
142 -------
143 contained : `np.ndarray`, (N,)
144 Boolean array indicating which points are contained in the
145 bounding box.
146
147 Raises
148 ------
149 ValueError if exposure does not have a valid wcs.
150 """
151 if self.wcs is None:
152 raise ValueError("Exposure does not have a valid WCS.")
153
154 return bbox_contains_sky_coords(
155 self.getBBox(),
156 self.wcs,
157 ra,
158 dec,
159 padding=padding)
160

◆ convertD()

def lsst.afw.image.exposure._exposureContinued.Exposure.convertD (   self)

Definition at line 70 of file _exposureContinued.py.

70 def convertD(self):
71 return ExposureD(self, deep=True)
72

◆ convertF()

def lsst.afw.image.exposure._exposureContinued.Exposure.convertF (   self)

Definition at line 67 of file _exposureContinued.py.

67 def convertF(self):
68 return ExposureF(self, deep=True)
69

◆ getConvexPolygon()

def lsst.afw.image.exposure._exposureContinued.Exposure.getConvexPolygon (   self,
  padding = 10 
)
Get the convex polygon associated with the bounding box corners.

The returned polygon has additional padding to ensure that the
bounding box is entirely contained within it.  To ensure a set
of coordinates are entirely contained within an exposure, run
``exposure.containsSkyCoords()``.  The default padding
size was chosen to be sufficient for the most warped detectors at
the edges of the HyperSuprimeCam focal plane.

Parameters
----------
padding : `int`
    Pixel padding to ensure that bounding box is entirely contained
    within the resulting polygon.

Returns
-------
convexPolygon : `lsst.sphgeom.ConvexPolygon`
    Returns `None` if exposure does not have a valid WCS.

Definition at line 97 of file _exposureContinued.py.

97 def getConvexPolygon(self, padding=10):
98 """Get the convex polygon associated with the bounding box corners.
99
100 The returned polygon has additional padding to ensure that the
101 bounding box is entirely contained within it. To ensure a set
102 of coordinates are entirely contained within an exposure, run
103 ``exposure.containsSkyCoords()``. The default padding
104 size was chosen to be sufficient for the most warped detectors at
105 the edges of the HyperSuprimeCam focal plane.
106
107 Parameters
108 ----------
109 padding : `int`
110 Pixel padding to ensure that bounding box is entirely contained
111 within the resulting polygon.
112
113 Returns
114 -------
115 convexPolygon : `lsst.sphgeom.ConvexPolygon`
116 Returns `None` if exposure does not have a valid WCS.
117 """
118 if self.wcs is None:
119 return None
120
121 return bbox_to_convex_polygon(self.getBBox(), self.wcs, padding=padding)
122
ConvexPolygon is a closed convex polygon on the unit sphere.
Definition: ConvexPolygon.h:57

◆ getImage()

def lsst.afw.image.exposure._exposureContinued.Exposure.getImage (   self)

Definition at line 73 of file _exposureContinued.py.

73 def getImage(self):
74 return self.maskedImage.image
75

◆ getMask()

def lsst.afw.image.exposure._exposureContinued.Exposure.getMask (   self)

Definition at line 81 of file _exposureContinued.py.

81 def getMask(self):
82 return self.maskedImage.mask
83

◆ getVariance()

def lsst.afw.image.exposure._exposureContinued.Exposure.getVariance (   self)

Definition at line 89 of file _exposureContinued.py.

89 def getVariance(self):
90 return self.maskedImage.variance
91

◆ setImage()

def lsst.afw.image.exposure._exposureContinued.Exposure.setImage (   self,
  image 
)

Definition at line 76 of file _exposureContinued.py.

76 def setImage(self, image):
77 self.maskedImage.image = image
78

◆ setMask()

def lsst.afw.image.exposure._exposureContinued.Exposure.setMask (   self,
  mask 
)

Definition at line 84 of file _exposureContinued.py.

84 def setMask(self, mask):
85 self.maskedImage.mask = mask
86

◆ setVariance()

def lsst.afw.image.exposure._exposureContinued.Exposure.setVariance (   self,
  variance 
)

Definition at line 92 of file _exposureContinued.py.

92 def setVariance(self, variance):
93 self.maskedImage.variance = variance
94

Member Data Documentation

◆ readFitsWithOptions

lsst.afw.image.exposure._exposureContinued.Exposure.readFitsWithOptions = classmethod(imageReadFitsWithOptions)
static

Definition at line 161 of file _exposureContinued.py.

◆ writeFitsWithOptions

lsst.afw.image.exposure._exposureContinued.Exposure.writeFitsWithOptions = exposureWriteFitsWithOptions
static

Definition at line 163 of file _exposureContinued.py.

Property Documentation

◆ convex_polygon

lsst.afw.image.exposure._exposureContinued.Exposure.convex_polygon = property(getConvexPolygon)
static

Definition at line 123 of file _exposureContinued.py.

◆ image

lsst.afw.image.exposure._exposureContinued.Exposure.image = property(getImage, setImage)
static

Definition at line 79 of file _exposureContinued.py.

◆ mask

lsst.afw.image.exposure._exposureContinued.Exposure.mask = property(getMask, setMask)
static

Definition at line 87 of file _exposureContinued.py.

◆ variance

lsst.afw.image.exposure._exposureContinued.Exposure.variance = property(getVariance, setVariance)
static

Definition at line 95 of file _exposureContinued.py.


The documentation for this class was generated from the following file: