23__all__ = [
"TractInfo"]
31from .detail
import makeSkyPolygonFromBBox, Index2D
35 """Information about a tract in a SkyMap sky pixelization
42 Object used to compute patch geometry.
44 ICRS sky coordinate of center of inner region of tract; also used as
45 the CRVAL
for the WCS.
47 Vertices that define the boundaries of the inner region.
49 Minimum overlap between adjacent sky tracts; this defines the minimum
50 distance the tract extends beyond the inner region
in all directions.
51 wcs : `lsst.afw.image.SkyWcs`
52 WCS
for tract. The reference pixel will be shifted
as required so that
53 the lower left-hand pixel (index 0,0) has pixel position 0.0, 0.0.
57 The tract
is subdivided into rectangular patches. Each patch has the
60 - An inner region defined by an inner bounding box. The inner regions of
61 the patches exactly tile the tract,
and all inner regions have the same
62 dimensions. The tract
is made larger
as required to make this work.
64 - An outer region defined by an outer bounding box. The outer region
65 extends beyond the inner region by patchBorder pixels
in all directions,
66 except there
is no border at the edges of the tract.
67 Thus patches overlap each other but never extend off the tract.
68 If you do
not want any overlap between adjacent patches then set
71 - An index that consists of a pair of integers:
73 * 0 <= x index < numPatches[0]
75 * 0 <= y index < numPatches[1]
77 Patch 0,0
is at the minimum corner of the tract bounding box.
79 - It
is not enforced that ctrCoord
is the center of vertexCoordList, but
82 def __init__(self, id, tractBuilder, ctrCoord, vertexCoordList, tractOverlap, wcs):
94 """Calculate the minimum bounding box for the tract, given the WCS.
96 The bounding box is created
in the frame of the supplied WCS,
97 so that it
's OK if the coordinates are negative.
99 We compute the bounding box that holds all the vertices and the
106 minBBoxD.include(wcs.skyToPixel(vertexCoord))
109 angleIncr =
geom.Angle(360.0, geom.degrees) / float(numAngles)
110 for i
in range(numAngles):
111 offAngle = angleIncr * i
112 offCoord = vertexCoord.offset(offAngle, halfOverlap)
113 pixPos = wcs.skyToPixel(offCoord)
114 minBBoxD.include(pixPos)
118 """Determine the final orientation
120 We offset everything so the lower-left corner is at 0,0
121 and compute the final Wcs.
126 Current bounding box.
133 Revised bounding box.
140 pixPosOffset =
geom.Extent2D(finalBBox.getMinX() - bbox.getMinX(),
141 finalBBox.getMinY() - bbox.getMinY())
142 wcs = wcs.copyAtShiftedPixelOrigin(pixPosOffset)
143 return finalBBox, wcs
146 """Return a single integer that uniquely identifies
147 the given patch within this tract.
155 sequentialIndex : `int`
160 """Return a single integer that uniquely identifies
161 the patch index within the tract.
169 sequentialIndex : `int`
174 """Convert sequential index into patch index (x,y) pair.
178 sequentialIndex : `int`
187 """Find the patch containing the specified coord.
192 ICRS sky coordinate to search for.
197 PatchInfo of patch whose inner bbox contains the specified coord
202 Raised
if coord
is not in tract
or we cannot determine the
203 pixel coordinate (which likely means the coord
is off the tract).
206 pixel = self.
wcs.skyToPixel(coord)
209 raise LookupError(
"Unable to determine pixel position for coordinate %s" % (coord,))
212 raise LookupError(
"coord %s is not in tract %s" % (coord, self.
tract_id))
219 """Find patches containing the specified list of coords.
224 ICRS sky coordinates to search for.
229 List of PatchInfo
for patches that contain,
or may contain, the
230 specified region. The list will be empty
if there
is no overlap.
236 - This may give incorrect answers on regions that are larger than a
239 - This uses a naive algorithm that may find some patches that do
not
240 overlap the region (especially
if the region
is not a rectangle
241 aligned along patch x,y).
244 for coord
in coordList:
246 pixelPos = self.
wcs.skyToPixel(coord)
251 box2D.include(pixelPos)
254 bbox.clip(self.
_bbox)
261 for xInd
in range(llPatchInd[0], urPatchInd[0]+1)
262 for yInd
in range(llPatchInd[1], urPatchInd[1]+1))
265 """Get bounding box of tract (as an geom.Box2I)
269 bbox = property(getBBox)
272 """Get ICRS sky coordinate of center of tract
277 ctr_coord = property(getCtrCoord)
284 tract_id = property(getId)
287 """Get the number of patches in x, y.
292 The number of patches in x, y
296 num_patches = property(getNumPatches)
301 patch_border = property(getPatchBorder)
304 """Return information for the specified patch.
308 index : `typing.NamedTuple` ['x': `int`,
'y': `int`]
309 Index of patch,
as a pair of ints;
310 or a sequential index
as returned by getSequentialPatchIndex;
311 negative values are
not supported.
316 The patch info
for that index.
321 Raised
if index
is out of range.
326 """Get dimensions of inner region of the patches (all are the same)
330 patch_inner_dimensions = property(getPatchInnerDimensions)
333 """Get minimum overlap of adjacent sky tracts.
337 tract_overlap = property(getTractOverlap)
340 """Get list of ICRS sky coordinates of vertices that define the
341 boundary of the inner region.
345 **warning:** this is not a deep copy.
349 vertex_list = property(getVertexList)
352 """Get inner on-sky region as a sphgeom.ConvexPolygon.
354 skyUnitVectors = [sp.getVector() for sp
in self.
getVertexList()]
355 return ConvexPolygon.convexHull(skyUnitVectors)
357 inner_sky_polygon = property(getInnerSkyPolygon)
360 """Get outer on-sky region as a sphgeom.ConvexPolygon
362 return makeSkyPolygonFromBBox(bbox=self.
getBBox(), wcs=self.
getWcs())
364 outer_sky_polygon = property(getOuterSkyPolygon)
372 The WCS of this tract
376 wcs = property(getWcs)
379 return "TractInfo(id=%s)" % (self.
_id,)
382 return "TractInfo(id=%s, ctrCoord=%s)" % (self.
_id, self.
_ctrCoord.getVector())
386 for y
in range(yNum):
387 for x
in range(xNum):
398 """Does this tract contain the coordinate?"""
400 pixel = self.
getWcs().skyToPixel(coord)
404 if not np.isfinite(pixel.getX())
or not np.isfinite(pixel.getY()):
411 """Information for a tract specified explicitly.
413 A tract is placed at the explicitly defined coordinates,
with the nominated
414 radius. The tracts are square (i.e., the radius
is really a half-size).
416 def __init__(self, id, tractBuilder, ctrCoord, radius, tractOverlap, wcs):
421 super(ExplicitTractInfo, self).
__init__(id, tractBuilder, ctrCoord,
422 vertexList, tractOverlap, wcs)
430 """Calculate the minimum bounding box for the tract, given the WCS, and
431 the nominated radius.
436 pixPos = wcs.skyToPixel(cornerCoord)
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
A class representing an angle.
A floating-point coordinate rectangle geometry.
An integer coordinate rectangle.
Point in an unspecified spherical coordinate system.
Reports arguments outside the domain of an operation.
Reports errors that are due to events beyond the control of the program.
__init__(self, id, tractBuilder, ctrCoord, radius, tractOverlap, wcs)
_minimumBoundingBox(self, wcs)
__init__(self, id, tractBuilder, ctrCoord, vertexCoordList, tractOverlap, wcs)
getPatchInnerDimensions(self)
getSequentialPatchIndexFromPair(self, index)
getSequentialPatchIndex(self, patchInfo)
getPatchInfo(self, index)
_finalOrientation(self, bbox, wcs)
getPatchIndexPair(self, sequentialIndex)
findPatchList(self, coordList)
_minimumBoundingBox(self, wcs)