1 from builtins
import range
2 from builtins
import object
28 from .patchInfo
import PatchInfo
30 __all__ = [
"TractInfo"]
34 """Information about a tract in a SkyMap sky pixelization
36 The tract is subdivided into rectangular patches. Each patch has the following properties:
37 - An inner region defined by an inner bounding. The inner regions of the patches exactly tile the tract,
38 and all inner regions have the same dimensions. The tract is made larger as required to make this work.
39 - An outer region defined by an outer bounding box. The outer region extends beyond the inner region
40 by patchBorder pixels in all directions, except there is no border at the edges of the tract.
41 Thus patches overlap each other but never extend off the tract. If you do not want any overlap
42 between adjacent patches then set patchBorder to 0.
43 - An index that consists of a pair of integers:
44 0 <= x index < numPatches[0]
45 0 <= y index < numPatches[1]
46 Patch 0,0 is at the minimum corner of the tract bounding box.
49 def __init__(self, id, patchInnerDimensions, patchBorder, ctrCoord, vertexCoordList, tractOverlap, wcs):
50 """Construct a TractInfo
52 @param[in] id: tract ID
53 @param[in] patchInnerDimensions: dimensions of inner region of patches (x,y pixels)
54 @param[in] patchBorder: overlap between adjacent patches (in pixels, one int)
55 @param[in] ctrCoord: sky coordinate of center of inner region of tract, as an afwCoord.Coord;
56 also used as the CRVAL for the WCS.
57 @param[in] vertexCoordList: list of sky coordinates (afwCoord.Coord)
58 of vertices that define the boundaries of the inner region
59 @param[in] tractOverlap: minimum overlap between adjacent sky tracts; an afwGeom.Angle;
60 this defines the minimum distance the tract extends beyond the inner region in all directions
61 @param[in,out] wcs: an afwImage.Wcs; the reference pixel will be shifted as required
62 so that the lower left-hand pixel (index 0,0) has pixel position 0.0, 0.0
65 - It is not enforced that ctrCoord is the center of vertexCoordList, but SkyMap relies on it
66 - vertexCoordList will likely become a geom SphericalConvexPolygon someday.
70 assert len(patchInnerDimensions) == 2
73 raise TypeError(
"patchInnerDimensions=%s; must be two ints" % (patchInnerDimensions,))
84 """Calculate the minimum bounding box for the tract, given the WCS
86 The bounding box is created in the frame of the supplied WCS,
87 so that it's OK if the coordinates are negative.
89 We compute the bounding box that holds all the vertices and the
95 vertexDeg = vertexCoord.getPosition(afwGeom.degrees)
97 minBBoxD.include(wcs.skyToPixel(vertexCoord))
100 angleIncr =
afwGeom.Angle(360.0, afwGeom.degrees) / float(numAngles)
101 for i
in range(numAngles):
102 offAngle = angleIncr * i
103 offCoord = vertexCoord.clone()
104 offCoord.offset(offAngle, halfOverlap)
105 pixPos = wcs.skyToPixel(offCoord)
106 minBBoxD.include(pixPos)
110 """Setup for patches of a particular size.
112 We grow the bounding box to hold an exact multiple of
113 the desired size (patchInnerDimensions), while keeping
114 the center roughly the same. We return the final
115 bounding box, and the number of patches in each dimension
118 @param minBBox Minimum bounding box for tract
119 @param wcs Wcs object
120 @return final bounding box, number of patches
123 bboxMin = bbox.getMin()
124 bboxDim = bbox.getDimensions()
127 num = (bboxDim[i] + innerDim - 1) // innerDim
128 deltaDim = (innerDim * num) - bboxDim[i]
130 bboxDim[i] = innerDim * num
131 bboxMin[i] -= deltaDim // 2
134 return bbox, numPatches
137 """Determine the final orientation
139 We offset everything so the lower-left corner is at 0,0
140 and compute the final Wcs.
142 @param bbox Current bounding box
143 @param wcs Current Wcs
144 @return revised bounding box, revised Wcs
150 finalBBox.getMinY() - bbox.getMinY())
151 wcs.shiftReferencePixel(pixPosOffset)
152 return finalBBox, wcs
155 """Find the patch containing the specified coord
157 @param[in] coord: sky coordinate (afwCoord.Coord)
158 @return PatchInfo of patch whose inner bbox contains the specified coord
160 @raise LookupError if coord is not in tract or we cannot determine the
161 pixel coordinate (which likely means the coord is off the tract).
163 @note This routine will be more efficient if coord is ICRS.
165 icrsCoord = coord.toIcrs()
167 pixel = self.
getWcs().skyToPixel(icrsCoord)
168 except (lsst.pex.exceptions.DomainError, lsst.pex.exceptions.RuntimeError):
170 raise LookupError(
"Unable to determine pixel position for coordinate %s" % (coord,))
173 raise LookupError(
"coord %s is not in tract %s" % (coord, self.
getId()))
178 """Find patches containing the specified list of coords
180 @param[in] coordList: list of sky coordinates (afwCoord.Coord)
181 @return list of PatchInfo for patches that contain, or may contain, the specified region.
182 The list will be empty if there is no overlap.
185 * This may give incorrect answers on regions that are larger than a tract
186 * This uses a naive algorithm that may find some patches that do not overlap the region
187 (especially if the region is not a rectangle aligned along patch x,y).
190 for coord
in coordList:
191 icrsCoord = coord.toIcrs()
193 pixelPos = self.
getWcs().skyToPixel(icrsCoord)
194 except (lsst.pex.exceptions.DomainError, lsst.pex.exceptions.RuntimeError):
197 box2D.include(pixelPos)
207 for xInd
in range(llPatchInd[0], urPatchInd[0]+1)
208 for yInd
in range(llPatchInd[1], urPatchInd[1]+1))
211 """Get bounding box of tract (as an afwGeom.Box2I)
216 """Get sky coordinate of center of tract (as an afwCoord.Coord)
226 """Get the number of patches in x, y
228 @return the number of patches in x, y
235 @return patch border (pixels)
240 """Return information for the specified patch
242 @param[in] index: index of patch, as a pair of ints
243 @return patch info, an instance of PatchInfo
245 @raise IndexError if index is out of range
249 raise IndexError(
"Patch index %s is not in range [0-%d, 0-%d]" %
253 if not self._bbox.contains(innerBBox):
255 "Bug: patch index %s valid but inner bbox=%s not contained in tract bbox=%s" %
256 (index, innerBBox, self._bbox))
259 outerBBox.clip(self._bbox)
267 """Get dimensions of inner region of the patches (all are the same)
269 @return dimensions of inner region of the patches (as an afwGeom Extent2I)
274 """Get minimum overlap of adjacent sky tracts
276 @return minimum overlap between adjacent sky tracts, as an afwGeom Angle
281 """Get list of sky coordinates of vertices that define the boundary of the inner region
283 @warning: this is not a deep copy
284 @warning vertexCoordList will likely become a geom SphericalConvexPolygon someday.
291 @warning: this is not a deep copy
296 return "TractInfo(id=%s)" % (self.
_id,)
299 return "TractInfo(id=%s, ctrCoord=%s)" % (self.
_id, self._ctrCoord.getVector())
303 for y
in range(yNum):
304 for x
in range(xNum):
315 """Does this tract contain the coordinate?"""
316 icrsCoord = coord.toIcrs()
318 pixels = self.
getWcs().skyToPixel(icrsCoord)
319 except (lsst.pex.exceptions.DomainError, lsst.pex.exceptions.RuntimeError):
326 """Information for a tract specified explicitly
328 A tract is placed at the explicitly defined coordinates, with the nominated
329 radius. The tracts are square (i.e., the radius is really a half-size).
332 def __init__(self, ident, patchInnerDimensions, patchBorder, ctrCoord, radius, tractOverlap, wcs):
336 super(ExplicitTractInfo, self).
__init__(ident, patchInnerDimensions, patchBorder, ctrCoord,
337 vertexList, tractOverlap, wcs)
342 """The minimum bounding box is calculated using the nominated radius"""
345 coord = self._ctrCoord.clone()
347 pixPos = wcs.skyToPixel(coord)
An integer coordinate rectangle.
A class representing an Angle.
def getPatchInnerDimensions
A floating-point coordinate rectangle geometry.