LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
|
A Pixelization
(or partitioning) of the sphere is a mapping between points on the sphere and a set of pixels (a.k.a.
More...
#include <Pixelization.h>
Public Member Functions | |
virtual | ~Pixelization () |
virtual RangeSet | universe () const =0 |
universe returns the set of all pixel indexes for this pixelization. More... | |
virtual std::unique_ptr< Region > | pixel (uint64_t i) const =0 |
pixel returns the spherical region corresponding to the pixel with index i. More... | |
virtual uint64_t | index (UnitVector3d const &v) const =0 |
index computes the index of the pixel for v. More... | |
virtual std::string | toString (uint64_t i) const =0 |
toString converts the given pixel index to a human-readable string. More... | |
RangeSet | envelope (Region const &r, size_t maxRanges=0) const |
envelope returns the indexes of the pixels intersecting the spherical region r. More... | |
RangeSet | interior (Region const &r, size_t maxRanges=0) const |
interior returns the indexes of the pixels within the spherical region r. More... | |
Private Member Functions | |
virtual RangeSet | _envelope (Region const &r, size_t maxRanges) const =0 |
virtual RangeSet | _interior (Region const &r, size_t maxRanges) const =0 |
A Pixelization
(or partitioning) of the sphere is a mapping between points on the sphere and a set of pixels (a.k.a.
cells or partitions) with 64 bit integer labels (indexes), where each point is assigned to exactly one pixel.
A pixelization is capable of:
One use case for pixelizations is spatial search in an RDBMS. Given a table of points in S² indexed by pixel, one can quickly retrieve points inside of a region r by computing the indexes of pixels intersecting r:
RangeSet pixels = pixelization.envelope(r);
and then performing range lookups on the table. The range lookup results may include points outside of r but close to its boundary, so additional filtering is necessary if one wishes to obtain exactly those points inside r.
To mitigate this cost, which can be significant for large regions with complex boundaries, one can compute the indexes of pixels completely contained in R. Only points belonging to pixels in:
RangeSet s = pixelization.envelope(r) - pixelization.interior(r);
must be tested for membership in r. Note that the indexes of pixels disjoint from r can be computed as follows:
RangeSet exterior = pixelization.universe() - pixelization.envelope(r);
Definition at line 77 of file Pixelization.h.
|
inlinevirtual |
Definition at line 79 of file Pixelization.h.
|
privatepure virtual |
|
privatepure virtual |
|
inline |
envelope
returns the indexes of the pixels intersecting the spherical region r.
For hierarchical pixelizations, a good way to implement this is by top down tree traversal. Starting with the root pixels (e.g. Q3C cube faces, or HTM root triangles), a pixel P is tested for intersection with the region r. If P is already at the desired subdivision level and intersects r, its index is added to the output. If r contains P, the indexes of all children of P at the target subdivision level are output. Finally, if P intersects r, then P is subdivided and the algorithm recurses on its child pixels.
Using higher subdivision levels allows a region to be more closely approximated by smaller pixels, but for large input regions the cost of computing and storing their indexes can quickly become prohibitive.
The maxRanges
parameter can be used to limit both these costs - setting it to a non-zero value sets a cap on the number of ranges returned by this method. To meet this constraint, implementations are allowed to return pixels that do not intersect r along with those that do. This allows two ranges [a, b) and [c, d), a < b < c < d, to be merged into one range [a, d) (by adding in the pixels [b, c)). Since simplification proceeds by adding pixels, the return value will always be a superset of the intersecting pixels.
In practice, the implementation of this method for a hierarchical pixelization like Q3C or HTM will lower the subdivision level when too many ranges have been found. Each coarse pixel I at level L - n corresponds to pixels [I*4ⁿ, (I + 1)*4ⁿ) at level L.
Definition at line 131 of file Pixelization.h.
|
pure virtual |
index
computes the index of the pixel for v.
Implemented in lsst::sphgeom::HtmPixelization, lsst::sphgeom::Mq3cPixelization, and lsst::sphgeom::Q3cPixelization.
|
inline |
interior
returns the indexes of the pixels within the spherical region r.
The maxRanges
argument is analogous to the identically named envelope() argument. The only difference is that implementations must remove interior pixels to keep the number of ranges at or below the maximum. The return value is therefore always a subset of the interior pixels.
Definition at line 143 of file Pixelization.h.
|
pure virtual |
pixel
returns the spherical region corresponding to the pixel with index i.
This region will contain all unit vectors v with index(v) == i
. But it may also contain points with index not equal to i. To see why, consider a point that lies on the edge of a polygonal pixel - it is inside the polygons for both pixels sharing the edge, but must be assigned to exactly one pixel by the pixelization.
If i is not a valid pixel index, a std::invalid_argument is thrown.
Implemented in lsst::sphgeom::HtmPixelization, lsst::sphgeom::Mq3cPixelization, and lsst::sphgeom::Q3cPixelization.
|
pure virtual |
toString
converts the given pixel index to a human-readable string.
Implemented in lsst::sphgeom::HtmPixelization, lsst::sphgeom::Mq3cPixelization, and lsst::sphgeom::Q3cPixelization.
|
pure virtual |
universe
returns the set of all pixel indexes for this pixelization.
Implemented in lsst::sphgeom::HtmPixelization, lsst::sphgeom::Mq3cPixelization, and lsst::sphgeom::Q3cPixelization.