LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Static Public Attributes | Private Member Functions | List of all members
lsst::sphgeom::Mq3cPixelization Class Reference

Mq3cPixelization provides modified Q3C indexing of points and regions. More...

#include <Mq3cPixelization.h>

Inheritance diagram for lsst::sphgeom::Mq3cPixelization:
lsst::sphgeom::Pixelization

Public Member Functions

 Mq3cPixelization (int level)
 This constructor creates a modified Q3C pixelization of the sphere with the given subdivision level.
 
int getLevel () const
 getLevel returns the subdivision level of this pixelization.
 
RangeSet universe () const override
 universe returns the set of all pixel indexes for this pixelization.
 
std::unique_ptr< Regionpixel (uint64_t i) const override
 pixel returns the spherical region corresponding to the pixel with index i.
 
uint64_t index (UnitVector3d const &v) const override
 index computes the index of the pixel for v.
 
std::string toString (uint64_t i) const override
 toString converts the given pixel index to a human-readable string.
 
RangeSet envelope (Region const &r, size_t maxRanges=0) const
 envelope returns the indexes of the pixels intersecting the spherical region r.
 
RangeSet interior (Region const &r, size_t maxRanges=0) const
 interior returns the indexes of the pixels within the spherical region r.
 

Static Public Member Functions

static int level (uint64_t i)
 level returns the subdivision level of the given modified Q3C index.
 
static ConvexPolygon quad (uint64_t i)
 quad returns the quadrilateral corresponding to the modified Q3C pixel with index i.
 
static std::vector< uint64_t > neighborhood (uint64_t i)
 neighborhood returns the indexes of all pixels that share a vertex with pixel i (including i itself).
 
static std::string asString (uint64_t i)
 toString converts the given modified-Q3C index to a human readable string.
 

Static Public Attributes

static constexpr int MAX_LEVEL = 30
 The maximum supported cube-face grid resolution is 2^30 by 2^30.
 

Private Member Functions

RangeSet _envelope (Region const &r, size_t maxRanges) const override
 
RangeSet _interior (Region const &r, size_t maxRanges) const override
 

Detailed Description

Mq3cPixelization provides modified Q3C indexing of points and regions.

Instances of this class are immutable and very cheap to copy.

Warning
Setting the maxRanges argument for envelope() or interior() to a non-zero value below 4 can result in very poor region pixelizations regardless of region size. For instance, if maxRanges is 1, a non-empty circle centered on an axis will be approximated by the indexes for an entire cube face, even as the circle radius tends to 0.

Definition at line 57 of file Mq3cPixelization.h.

Constructor & Destructor Documentation

◆ Mq3cPixelization()

lsst::sphgeom::Mq3cPixelization::Mq3cPixelization ( int level)
explicit

This constructor creates a modified Q3C pixelization of the sphere with the given subdivision level.

If level ∉ [0, MAX_LEVEL], a std::invalid_argument is thrown.

Definition at line 299 of file Mq3cPixelization.cc.

299 : _level{level} {
300 if (level < 0 || level > MAX_LEVEL) {
302 "Modified-Q3C subdivision level not in [0, 30]");
303 }
304}
static int level(uint64_t i)
level returns the subdivision level of the given modified Q3C index.
static constexpr int MAX_LEVEL
The maximum supported cube-face grid resolution is 2^30 by 2^30.

Member Function Documentation

◆ _envelope()

RangeSet lsst::sphgeom::Mq3cPixelization::_envelope ( Region const & r,
size_t maxRanges ) const
overrideprivatevirtual

Implements lsst::sphgeom::Pixelization.

Definition at line 345 of file Mq3cPixelization.cc.

345 {
346 return detail::findPixels<Mq3cPixelFinder, false>(r, maxRanges, _level);
347}

◆ _interior()

RangeSet lsst::sphgeom::Mq3cPixelization::_interior ( Region const & r,
size_t maxRanges ) const
overrideprivatevirtual

Implements lsst::sphgeom::Pixelization.

Definition at line 349 of file Mq3cPixelization.cc.

349 {
350 return detail::findPixels<Mq3cPixelFinder, true>(r, maxRanges, _level);
351}

◆ asString()

std::string lsst::sphgeom::Mq3cPixelization::asString ( uint64_t i)
static

toString converts the given modified-Q3C index to a human readable string.

The first two characters in the return value are always '+X', '+Y', '+Z', '-X', '-Y', or '-Z'. They give the normal vector of the cube face F containing i. Each subsequent character is a digit in [0-3] corresponding to a child pixel index, so that reading the string from left to right corresponds to descent of the quad-tree overlaid on F.

If i is not a valid modified-Q3C index, a std::invalid_argument is thrown.

Definition at line 277 of file Mq3cPixelization.cc.

277 {
278 static char const FACE_NORM[6][2] = {
279 {'-', 'Z'}, {'+', 'X'}, {'+', 'Y'},
280 {'+', 'Z'}, {'-', 'X'}, {'-', 'Y'},
281 };
282 char s[MAX_LEVEL + 2];
283 int l = level(i);
284 if (l < 0 || l > MAX_LEVEL) {
285 throw std::invalid_argument("Invalid modified-Q3C index");
286 }
287 // Print in base-4, from least to most significant digit.
288 char * p = s + (sizeof(s) - 1);
289 for (; l > 0; --l, --p, i >>= 2) {
290 *p = '0' + (i & 3);
291 }
292 // The remaining bits correspond to the cube face.
293 --p;
294 p[0] = FACE_NORM[i - 10][0];
295 p[1] = FACE_NORM[i - 10][1];
296 return std::string(p, sizeof(s) - static_cast<size_t>(p - s));
297}

◆ envelope()

RangeSet lsst::sphgeom::Pixelization::envelope ( Region const & r,
size_t maxRanges = 0 ) const
inlineinherited

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 138 of file Pixelization.h.

138 {
139 return _envelope(r, maxRanges);
140 }
virtual RangeSet _envelope(Region const &r, size_t maxRanges) const =0

◆ getLevel()

int lsst::sphgeom::Mq3cPixelization::getLevel ( ) const
inline

getLevel returns the subdivision level of this pixelization.

Definition at line 103 of file Mq3cPixelization.h.

103{ return _level; }

◆ index()

uint64_t lsst::sphgeom::Mq3cPixelization::index ( UnitVector3d const & v) const
overridevirtual

index computes the index of the pixel for v.

Implements lsst::sphgeom::Pixelization.

Definition at line 318 of file Mq3cPixelization.cc.

318 {
319 int face = faceNumber(p, FACE_NUM);
320 double w = std::fabs(p(FACE_COMP[face][2]));
321 double u = (p(FACE_COMP[face][0]) / w) * FACE_CONST[face][0];
322 double v = (p(FACE_COMP[face][1]) / w) * FACE_CONST[face][1];
323 std::tie(u, v) = atanApprox(u, v);
324 std::tuple<int32_t, int32_t> g = faceToGrid(_level, u, v);
325 uint64_t h = hilbertIndex(static_cast<uint32_t>(std::get<0>(g)),
326 static_cast<uint32_t>(std::get<1>(g)),
327 _level);
328 return (static_cast<uint64_t>(face + 10) << (2 * _level)) | h;
329 }
T fabs(T... args)
uint64_t hilbertIndex(uint32_t x, uint32_t y, int m)
hilbertIndex returns the index of (x, y) in a 2-D Hilbert curve.
Definition curve.h:356
double w
Definition CoaddPsf.cc:69
T tie(T... args)

◆ interior()

RangeSet lsst::sphgeom::Pixelization::interior ( Region const & r,
size_t maxRanges = 0 ) const
inlineinherited

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 150 of file Pixelization.h.

150 {
151 return _interior(r, maxRanges);
152 }
virtual RangeSet _interior(Region const &r, size_t maxRanges) const =0

◆ level()

int lsst::sphgeom::Mq3cPixelization::level ( uint64_t i)
static

level returns the subdivision level of the given modified Q3C index.

If i is not a valid modified Q3C index, -1 is returned.

Definition at line 243 of file Mq3cPixelization.cc.

243 {
244 // A modified Q3C index consists of 4 bits encoding the root cube face
245 // (10 - 15), followed by 2l bits, where each of the l bit pairs encodes
246 // a child index (0-3), and l is the desired level.
247 int j = log2(i);
248 // The level l is derivable from the index j of the MSB of i. For i to
249 // be valid, j must be an odd integer > 1 and the upper 4 bits of i must
250 // be at least 10.
251 if ((j & 1) == 0 || (j == 1) || ((i >> (j - 3)) < 10)) {
252 return -1;
253 }
254 return (j - 3) >> 1;
255}
uint8_t log2(uint64_t x)
Definition curve.h:105

◆ neighborhood()

std::vector< uint64_t > lsst::sphgeom::Mq3cPixelization::neighborhood ( uint64_t i)
static

neighborhood returns the indexes of all pixels that share a vertex with pixel i (including i itself).

A Q3C pixel has 8 - k adjacent pixels, where k is the number of vertices that are also root pixel vertices (0, 1, or 4).

If i is not a valid modified Q3C index, a std::invalid_argument is thrown.

Definition at line 267 of file Mq3cPixelization.cc.

267 {
268 int l = level(i);
269 if (l < 0 || l > MAX_LEVEL) {
270 throw std::invalid_argument("Invalid modified-Q3C index");
271 }
272 uint64_t indexes[9];
273 int n = findNeighborhood(l, i, indexes);
274 return std::vector<uint64_t>(indexes, indexes + n);
275}

◆ pixel()

std::unique_ptr< Region > lsst::sphgeom::Mq3cPixelization::pixel ( uint64_t i) const
overridevirtual

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.

Implements lsst::sphgeom::Pixelization.

Definition at line 306 of file Mq3cPixelization.cc.

306 {
307 uint64_t f = i >> (2 * _level);
308 if (f < 10 || f > 15) {
309 throw std::invalid_argument("Invalid modified-Q3C index");
310 }
311 UnitVector3d verts[4];
312 makeQuad(i, _level, verts);
314 new ConvexPolygon(verts[0], verts[1], verts[2], verts[3]));
315}

◆ quad()

ConvexPolygon lsst::sphgeom::Mq3cPixelization::quad ( uint64_t i)
static

quad returns the quadrilateral corresponding to the modified Q3C pixel with index i.

If i is not a valid modified Q3C index, a std::invalid_argument is thrown.

Definition at line 257 of file Mq3cPixelization.cc.

257 {
258 int l = level(i);
259 if (l < 0 || l > MAX_LEVEL) {
260 throw std::invalid_argument("Invalid modified-Q3C index");
261 }
262 UnitVector3d verts[4];
263 makeQuad(i, l, verts);
264 return ConvexPolygon(verts[0], verts[1], verts[2], verts[3]);
265}

◆ toString()

std::string lsst::sphgeom::Mq3cPixelization::toString ( uint64_t i) const
inlineoverridevirtual

toString converts the given pixel index to a human-readable string.

Implements lsst::sphgeom::Pixelization.

Definition at line 114 of file Mq3cPixelization.h.

114{ return asString(i); }
static std::string asString(uint64_t i)
toString converts the given modified-Q3C index to a human readable string.

◆ universe()

RangeSet lsst::sphgeom::Mq3cPixelization::universe ( ) const
inlineoverridevirtual

universe returns the set of all pixel indexes for this pixelization.

Implements lsst::sphgeom::Pixelization.

Definition at line 105 of file Mq3cPixelization.h.

105 {
106 return RangeSet(static_cast<uint64_t>(10) << 2 * _level,
107 static_cast<uint64_t>(16) << 2 * _level);
108 }

Member Data Documentation

◆ MAX_LEVEL

constexpr int lsst::sphgeom::Mq3cPixelization::MAX_LEVEL = 30
staticconstexpr

The maximum supported cube-face grid resolution is 2^30 by 2^30.

Definition at line 60 of file Mq3cPixelization.h.


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