LSST Applications g02d81e74bb+86cf3d8bc9,g180d380827+7a4e862ed4,g2079a07aa2+86d27d4dc4,g2305ad1205+e1ca1c66fa,g29320951ab+012e1474a1,g295015adf3+341ea1ce94,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+c429d67c83,g48712c4677+f88676dd22,g487adcacf7+27e1e21933,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+b41db86c35,g5a732f18d5+53520f316c,g64a986408d+86cf3d8bc9,g858d7b2824+86cf3d8bc9,g8a8a8dda67+585e252eca,g99cad8db69+84912a7fdc,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+a2b54eae19,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+6681f309db,gc120e1dc64+f0fcc2f6d8,gc28159a63d+0e5473021a,gcf0d15dbbd+c429d67c83,gdaeeff99f8+f9a426f77a,ge6526c86ff+0433e6603d,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+86cf3d8bc9,w.2024.17
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::HtmPixelization Class Reference

HtmPixelization provides HTM indexing of points and regions. More...

#include <HtmPixelization.h>

Inheritance diagram for lsst::sphgeom::HtmPixelization:
lsst::sphgeom::Pixelization

Public Member Functions

 HtmPixelization (int level)
 This constructor creates an HTM 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 &) 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 HTM index.
 
static ConvexPolygon triangle (uint64_t i)
 triangle returns the triangle corresponding to the given HTM index.
 
static std::string asString (uint64_t i)
 asString converts the given HTM index to a human readable string.
 

Static Public Attributes

static constexpr int MAX_LEVEL = 24
 MAX_LEVEL is the maximum supported HTM subdivision level.
 

Private Member Functions

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

Detailed Description

HtmPixelization provides HTM 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 6 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 a hemisphere or the entire unit sphere, even as its radius tends to 0.

Definition at line 57 of file HtmPixelization.h.

Constructor & Destructor Documentation

◆ HtmPixelization()

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

This constructor creates an HTM pixelization of the sphere with the given subdivision level.

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

Definition at line 171 of file HtmPixelization.cc.

171 : _level(level) {
172 if (level < 0 || level > MAX_LEVEL) {
173 throw std::invalid_argument("Invalid HTM subdivision level");
174 }
175}
static constexpr int MAX_LEVEL
MAX_LEVEL is the maximum supported HTM subdivision level.
static int level(uint64_t i)
level returns the subdivision level of the given HTM index.

Member Function Documentation

◆ _envelope()

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

Implements lsst::sphgeom::Pixelization.

Definition at line 226 of file HtmPixelization.cc.

226 {
227 return detail::findPixels<HtmPixelFinder, false>(r, maxRanges, _level);
228}

◆ _interior()

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

Implements lsst::sphgeom::Pixelization.

Definition at line 230 of file HtmPixelization.cc.

230 {
231 return detail::findPixels<HtmPixelFinder, true>(r, maxRanges, _level);
232}

◆ asString()

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

asString converts the given HTM index to a human readable string.

The first character in the return value is always 'N' or 'S', indicating whether the root triangle containing i is in the northern or southern hemisphere. The second character is the index of the root triangle within that hemisphere (a digit in [0-3]). Each subsequent character is a digit in [0-3] corresponding to a child trixel index, so that reading the string from left to right corresponds to descent of the HTM triangle-tree.

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

Definition at line 155 of file HtmPixelization.cc.

155 {
156 char s[MAX_LEVEL + 2];
157 int l = level(i);
158 if (l < 0 || l > MAX_LEVEL) {
159 throw std::invalid_argument("Invalid HTM index");
160 }
161 // Print in base-4, from least to most significant digit.
162 char * p = s + (sizeof(s) - 1);
163 for (; l >= 0; --l, --p, i >>= 2) {
164 *p = '0' + (i & 3);
165 }
166 // The remaining bit corresponds to the hemisphere.
167 *p = (i & 1) == 0 ? 'S' : 'N';
168 return std::string(p, sizeof(s) - static_cast<size_t>(p - s));
169}

◆ 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::HtmPixelization::getLevel ( ) const
inline

getLevel returns the subdivision level of this pixelization.

Definition at line 91 of file HtmPixelization.h.

91{ return _level; }

◆ index()

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

index computes the index of the pixel for v.

Implements lsst::sphgeom::Pixelization.

Definition at line 177 of file HtmPixelization.cc.

177 {
178 // Find the root triangle containing v.
179 uint64_t r;
180 if (v.z() < 0.0) {
181 // v is in the southern hemisphere (root triangle 0, 1, 2, or 3).
182 if (v.y() > 0.0) {
183 r = (v.x() > 0.0) ? 0 : 1;
184 } else if (v.y() == 0.0) {
185 r = (v.x() >= 0.0) ? 0 : 2;
186 } else {
187 r = (v.x() < 0.0) ? 2 : 3;
188 }
189 } else {
190 // v is in the northern hemisphere (root triangle 4, 5, 6, or 7).
191 if (v.y() > 0.0) {
192 r = (v.x() > 0.0) ? 7 : 6;
193 } else if (v.y() == 0.0) {
194 r = (v.x() >= 0.0) ? 7 : 5;
195 } else {
196 r = (v.x() < 0.0) ? 5 : 4;
197 }
198 }
199 UnitVector3d v0 = rootVertex(r, 0);
200 UnitVector3d v1 = rootVertex(r, 1);
201 UnitVector3d v2 = rootVertex(r, 2);
202 uint64_t i = r + 8;
203 for (int l = 0; l < _level; ++l) {
204 UnitVector3d m01 = UnitVector3d(v0 + v1);
205 UnitVector3d m20 = UnitVector3d(v2 + v0);
206 i <<= 2;
207 if (orientation(v, m01, m20) >= 0) {
208 v1 = m01; v2 = m20;
209 continue;
210 }
211 UnitVector3d m12 = UnitVector3d(v1 + v2);
212 if (orientation(v, m12, m01) >= 0) {
213 v0 = v1; v1 = m12; v2 = m01;
214 i += 1;
215 } else if (orientation(v, m20, m12) >= 0) {
216 v0 = v2; v1 = m20; v2 = m12;
217 i += 2;
218 } else {
219 v0 = m12; v1 = m20; v2 = m01;
220 i += 3;
221 }
222 }
223 return i;
224}
int orientation(UnitVector3d const &a, UnitVector3d const &b, UnitVector3d const &c)
orientation computes and returns the orientations of 3 unit vectors a, b and c.

◆ 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::HtmPixelization::level ( uint64_t i)
static

level returns the subdivision level of the given HTM index.

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

Definition at line 117 of file HtmPixelization.cc.

117 {
118 // An HTM index consists of 4 bits encoding the root triangle
119 // number (8 - 15), followed by 2l bits, where each of the l bit pairs
120 // encodes a child triangle number (0-3), and l is the desired level.
121 int j = log2(i);
122 // The level l is derivable from the index j of the MSB of i.
123 // For i to be valid, j must be an odd integer > 1.
124 if ((j & 1) == 0 || (j == 1)) {
125 return -1;
126 }
127 return (j - 3) >> 1;
128}
uint8_t log2(uint64_t x)
Definition curve.h:105

◆ pixel()

std::unique_ptr< Region > lsst::sphgeom::HtmPixelization::pixel ( uint64_t i) const
inlineoverridevirtual

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 98 of file HtmPixelization.h.

98 {
99 return std::unique_ptr<Region>(new ConvexPolygon(triangle(i)));
100 }
static ConvexPolygon triangle(uint64_t i)
triangle returns the triangle corresponding to the given HTM index.

◆ toString()

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

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

Implements lsst::sphgeom::Pixelization.

Definition at line 104 of file HtmPixelization.h.

104{ return asString(i); }
static std::string asString(uint64_t i)
asString converts the given HTM index to a human readable string.

◆ triangle()

ConvexPolygon lsst::sphgeom::HtmPixelization::triangle ( uint64_t i)
static

triangle returns the triangle corresponding to the given HTM index.

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

Definition at line 130 of file HtmPixelization.cc.

130 {
131 int l = level(i);
132 if (l < 0 || l > MAX_LEVEL) {
133 throw std::invalid_argument("Invalid HTM index");
134 }
135 l *= 2;
136 uint64_t r = (i >> l) & 7;
137 UnitVector3d v0 = rootVertex(r, 0);
138 UnitVector3d v1 = rootVertex(r, 1);
139 UnitVector3d v2 = rootVertex(r, 2);
140 for (l -= 2; l >= 0; l -= 2) {
141 int child = (i >> l) & 3;
142 UnitVector3d m12 = UnitVector3d(v1 + v2);
143 UnitVector3d m20 = UnitVector3d(v2 + v0);
144 UnitVector3d m01 = UnitVector3d(v0 + v1);
145 switch (child) {
146 case 0: v1 = m01; v2 = m20; break;
147 case 1: v0 = v1; v1 = m12; v2 = m01; break;
148 case 2: v0 = v2; v1 = m20; v2 = m12; break;
149 case 3: v0 = m12; v1 = m20; v2 = m01; break;
150 }
151 }
152 return ConvexPolygon(v0, v1, v2);
153}

◆ universe()

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

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

Implements lsst::sphgeom::Pixelization.

Definition at line 93 of file HtmPixelization.h.

93 {
94 return RangeSet(static_cast<uint64_t>(8) << 2 * _level,
95 static_cast<uint64_t>(16) << 2 * _level);
96 }

Member Data Documentation

◆ MAX_LEVEL

constexpr int lsst::sphgeom::HtmPixelization::MAX_LEVEL = 24
staticconstexpr

MAX_LEVEL is the maximum supported HTM subdivision level.

Definition at line 60 of file HtmPixelization.h.


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