LSST Applications 24.1.5,g02d81e74bb+fa3a7a026e,g180d380827+a53a32eff8,g2079a07aa2+86d27d4dc4,g2305ad1205+c0501b3732,g295015adf3+7d3e92f0ec,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+5dd1654d75,g48712c4677+3bf1020dcb,g487adcacf7+065c13d9cf,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+d7ac436cfb,g5a732f18d5+53520f316c,g64a986408d+fa3a7a026e,g858d7b2824+fa3a7a026e,g8a8a8dda67+585e252eca,g99cad8db69+a5a909b84f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+4cf350ccb2,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+f991a0b59f,gc120e1dc64+9ccbfdb8be,gc28159a63d+0e5473021a,gcf0d15dbbd+5dd1654d75,gd96a1ce819+42fd0ee607,gdaeeff99f8+f9a426f77a,ge6526c86ff+0d71447b4b,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+fa3a7a026e
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions
lsst.afw.image.exposure.exposureUtils Namespace Reference

Functions

 bbox_to_convex_polygon (bbox, wcs, padding=10)
 
 bbox_contains_sky_coords (bbox, wcs, ra, dec, padding=10)
 

Function Documentation

◆ bbox_contains_sky_coords()

lsst.afw.image.exposure.exposureUtils.bbox_contains_sky_coords ( bbox,
wcs,
ra,
dec,
padding = 10 )
Check if a set of sky positions are in the bounding box.

This uses a two-step process: first check that the coordinates are
inside a padded version of the bbox projected on the sky, and then
project the remaining points onto the bbox, to avoid inverting
the WCS outside of the valid region. The default padding
size was chosen to be sufficient for the most warped detectors at
the edges of the HyperSuprimeCam focal plane.

Parameters
----------
bbox : `lsst.geom.Box2I`
    Pixel bounding box to check sky positions in.
wcs : `lsst.afw.image.SkyWcs`
    WCS associated with the bounding box.
ra : `astropy.Quantity`, (N,)
    Array of Right Ascension, angular units.
dec : `astropy.Quantity`, (N,)
    Array of Declination, angular units.
padding : `int`
   Pixel padding to ensure that bounding box is entirely contained
   within the resulting polygon.

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

Definition at line 60 of file exposureUtils.py.

60def bbox_contains_sky_coords(bbox, wcs, ra, dec, padding=10):
61 """Check if a set of sky positions are in the bounding box.
62
63 This uses a two-step process: first check that the coordinates are
64 inside a padded version of the bbox projected on the sky, and then
65 project the remaining points onto the bbox, to avoid inverting
66 the WCS outside of the valid region. The default padding
67 size was chosen to be sufficient for the most warped detectors at
68 the edges of the HyperSuprimeCam focal plane.
69
70 Parameters
71 ----------
72 bbox : `lsst.geom.Box2I`
73 Pixel bounding box to check sky positions in.
74 wcs : `lsst.afw.image.SkyWcs`
75 WCS associated with the bounding box.
76 ra : `astropy.Quantity`, (N,)
77 Array of Right Ascension, angular units.
78 dec : `astropy.Quantity`, (N,)
79 Array of Declination, angular units.
80 padding : `int`
81 Pixel padding to ensure that bounding box is entirely contained
82 within the resulting polygon.
83
84 Returns
85 -------
86 contained : `np.ndarray`, (N,)
87 Boolean array indicating which points are contained in the
88 bounding box.
89 """
90 poly = bbox_to_convex_polygon(bbox, wcs, padding=padding)
91
92 _ra = np.atleast_1d(ra.to(units.radian).value).astype(np.float64)
93 _dec = np.atleast_1d(dec.to(units.radian).value).astype(np.float64)
94
95 radec_contained = poly.contains(_ra, _dec)
96
97 x_in, y_in = wcs.skyToPixelArray(_ra, _dec, degrees=False)
98
99 xy_contained = bbox.contains(x_in, y_in)
100
101 return radec_contained & xy_contained

◆ bbox_to_convex_polygon()

lsst.afw.image.exposure.exposureUtils.bbox_to_convex_polygon ( bbox,
wcs,
padding = 10 )
Convert a bounding box and wcs to a convex polygon on the sky, with paddding.

The returned polygon has additional padding to ensure that the
bounding box is entirely contained within it.  The default padding
size was chosen to be sufficient for the most warped detectors at
the edges of the HyperSuprimeCam focal plane.

Parameters
----------
bbox : `lsst.geom.Box2I`
    Bounding box to convert.
wcs : `lsst.afw.image.SkyWcs`
    WCS associated with the bounding box.
padding : `int`
   Pixel padding to ensure that bounding box is entirely contained
   within the resulting polygon.

Returns
-------
convex_polygon : `lsst.sphgeom.ConvexPolygon`
   Will be None if wcs is not valid.

Definition at line 29 of file exposureUtils.py.

29def bbox_to_convex_polygon(bbox, wcs, padding=10):
30 """Convert a bounding box and wcs to a convex polygon on the sky, with paddding.
31
32 The returned polygon has additional padding to ensure that the
33 bounding box is entirely contained within it. The default padding
34 size was chosen to be sufficient for the most warped detectors at
35 the edges of the HyperSuprimeCam focal plane.
36
37 Parameters
38 ----------
39 bbox : `lsst.geom.Box2I`
40 Bounding box to convert.
41 wcs : `lsst.afw.image.SkyWcs`
42 WCS associated with the bounding box.
43 padding : `int`
44 Pixel padding to ensure that bounding box is entirely contained
45 within the resulting polygon.
46
47 Returns
48 -------
49 convex_polygon : `lsst.sphgeom.ConvexPolygon`
50 Will be None if wcs is not valid.
51 """
52 # Convert Box2I to Box2D, without modifying original.
53 _bbox = lsst.geom.Box2D(bbox)
54 _bbox.grow(padding)
55 corners = [wcs.pixelToSky(corner).getVector()
56 for corner in _bbox.getCorners()]
57 return lsst.sphgeom.ConvexPolygon(corners)
58
59
A floating-point coordinate rectangle geometry.
Definition Box.h:413
ConvexPolygon is a closed convex polygon on the unit sphere.