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 | List of all members
lsst::sphgeom::ConvexPolygon Class Reference

ConvexPolygon is a closed convex polygon on the unit sphere. More...

#include <ConvexPolygon.h>

Inheritance diagram for lsst::sphgeom::ConvexPolygon:
lsst::sphgeom::Region

Public Member Functions

 ConvexPolygon (std::vector< UnitVector3d > const &points)
 This constructor creates a convex polygon that is the convex hull of the given set of points.
 
 ConvexPolygon (UnitVector3d const &v0, UnitVector3d const &v1, UnitVector3d const &v2)
 This constructor creates a triangle with the given vertices.
 
 ConvexPolygon (UnitVector3d const &v0, UnitVector3d const &v1, UnitVector3d const &v2, UnitVector3d const &v3)
 This constructor creates a quadrilateral with the given vertices.
 
bool operator== (ConvexPolygon const &p) const
 Two convex polygons are equal iff they contain the same points.
 
bool operator!= (ConvexPolygon const &p) const
 
std::vector< UnitVector3d > const & getVertices () const
 
UnitVector3d getCentroid () const
 The centroid of a polygon is its center of mass projected onto S², assuming a uniform mass distribution over the polygon surface.
 
std::unique_ptr< Regionclone () const override
 clone returns a deep copy of this region.
 
Box getBoundingBox () const override
 getBoundingBox returns a bounding-box for this region.
 
Box3d getBoundingBox3d () const override
 getBoundingBox3d returns a 3-dimensional bounding-box for this region.
 
Circle getBoundingCircle () const override
 getBoundingCircle returns a bounding-circle for this region.
 
Relationship relate (Region const &r) const override
 
Relationship relate (Box const &) const override
 
Relationship relate (Circle const &) const override
 
Relationship relate (ConvexPolygon const &) const override
 
Relationship relate (Ellipse const &) const override
 
std::vector< uint8_t > encode () const override
 encode serializes this region into an opaque byte string.
 
virtual bool contains (UnitVector3d const &) const=0
 contains tests whether the given unit vector is inside this region.
 
bool contains (double x, double y, double z) const
 contains tests whether the unit vector defined by the given (not necessarily normalized) coordinates is inside this region.
 
bool contains (double lon, double lat) const
 contains tests whether the unit vector defined by the given longitude and latitude coordinates (in radians) is inside this region.
 
bool contains (UnitVector3d const &v) const override
 
bool contains (Region const &r) const
 
bool isDisjointFrom (Region const &r) const
 
bool intersects (Region const &r) const
 
bool isWithin (Region const &r) const
 

Static Public Member Functions

static ConvexPolygon convexHull (std::vector< UnitVector3d > const &points)
 convexHull returns the convex hull of the given set of points if it exists and throws an exception otherwise.
 
static std::unique_ptr< ConvexPolygondecode (std::vector< uint8_t > const &s)
 
static std::unique_ptr< ConvexPolygondecode (uint8_t const *buffer, size_t n)
 

Static Public Attributes

static constexpr uint8_t TYPE_CODE = 'p'
 

Detailed Description

ConvexPolygon is a closed convex polygon on the unit sphere.

Its edges are great circles (geodesics), and the shorter of the two great circle segments between any two points on the polygon boundary is contained in the polygon.

The vertices of a convex polygon are distinct and have counter-clockwise orientation when viewed from outside the unit sphere. No three consecutive vertices are coplanar and edges do not intersect except at vertices.

Furthermore, if a convex polygon contains a point p of S², then we require that it be disjoint from point -p. This guarantees the existence of a unique shortest great circle segment between any 2 points contained in the polygon, but means e.g. that hemispheres and lunes cannot be represented by convex polygons.

Currently, the only way to construct a convex polygon is to compute the convex hull of a point set.

Definition at line 64 of file ConvexPolygon.h.

Constructor & Destructor Documentation

◆ ConvexPolygon() [1/3]

lsst::sphgeom::ConvexPolygon::ConvexPolygon ( std::vector< UnitVector3d > const & points)
explicit

This constructor creates a convex polygon that is the convex hull of the given set of points.

Definition at line 262 of file ConvexPolygon.cc.

262 :
263 _vertices(points)
264{
265 computeHull(_vertices);
266}

◆ ConvexPolygon() [2/3]

lsst::sphgeom::ConvexPolygon::ConvexPolygon ( UnitVector3d const & v0,
UnitVector3d const & v1,
UnitVector3d const & v2 )
inline

This constructor creates a triangle with the given vertices.

It is assumed that orientation(v0, v1, v2) = 1. Use with caution - for performance reasons, this is not verified!

Definition at line 84 of file ConvexPolygon.h.

86 :
87 _vertices{v0, v1, v2}
88 {}

◆ ConvexPolygon() [3/3]

lsst::sphgeom::ConvexPolygon::ConvexPolygon ( UnitVector3d const & v0,
UnitVector3d const & v1,
UnitVector3d const & v2,
UnitVector3d const & v3 )
inline

This constructor creates a quadrilateral with the given vertices.

It is assumed that orientation(v0, v1, v2), orientation(v1, v2, v3), orientation(v2, v3, v0), and orientation (v3, v0, v1) are all 1. Use with caution - for performance reasons, this is not verified!

Definition at line 95 of file ConvexPolygon.h.

98 :
99 _vertices{v0, v1, v2, v3}
100 {}

Member Function Documentation

◆ clone()

std::unique_ptr< Region > lsst::sphgeom::ConvexPolygon::clone ( ) const
inlineoverridevirtual

clone returns a deep copy of this region.

Implements lsst::sphgeom::Region.

Definition at line 115 of file ConvexPolygon.h.

115 {
116 return std::unique_ptr<ConvexPolygon>(new ConvexPolygon(*this));
117 }

◆ contains() [1/5]

bool lsst::sphgeom::Region::contains ( double lon,
double lat ) const

contains tests whether the unit vector defined by the given longitude and latitude coordinates (in radians) is inside this region.

Definition at line 111 of file Region.cc.

51 {
52 return contains(UnitVector3d(LonLat::fromRadians(lon, lat)));
53}
bool contains(UnitVector3d const &v) const override
static LonLat fromRadians(double lon, double lat)
Definition LonLat.h:62

◆ contains() [2/5]

bool lsst::sphgeom::Region::contains ( double x,
double y,
double z ) const

contains tests whether the unit vector defined by the given (not necessarily normalized) coordinates is inside this region.

Definition at line 107 of file Region.cc.

47 {
48 return contains(UnitVector3d(x, y, z));
49}
double z
Definition Match.cc:44
int y
Definition SpanSet.cc:48

◆ contains() [3/5]

bool lsst::sphgeom::ConvexPolygon::contains ( Region const & r) const

contains returns true if the intersection of this convex polygon and x is equal to x.

Definition at line 323 of file ConvexPolygon.cc.

323 {
324 return (relate(r) & CONTAINS) != 0;
325}
Relationship relate(Region const &r) const override

◆ contains() [4/5]

virtual bool lsst::sphgeom::Region::contains ( UnitVector3d const & ) const
virtual

contains tests whether the given unit vector is inside this region.

Implements lsst::sphgeom::Region.

◆ contains() [5/5]

bool lsst::sphgeom::ConvexPolygon::contains ( UnitVector3d const & v) const
overridevirtual

contains returns true if the intersection of this convex polygon and x is equal to x.

Implements lsst::sphgeom::Region.

Definition at line 319 of file ConvexPolygon.cc.

319 {
320 return detail::contains(_vertices.begin(), _vertices.end(), v);
321}
bool contains(VertexIterator const begin, VertexIterator const end, UnitVector3d const &v)

◆ convexHull()

static ConvexPolygon lsst::sphgeom::ConvexPolygon::convexHull ( std::vector< UnitVector3d > const & points)
inlinestatic

convexHull returns the convex hull of the given set of points if it exists and throws an exception otherwise.

Though points are supplied in a vector, they really are conceptually a set - the ConvexPolygon returned is invariant under permutation of the input array.

Definition at line 72 of file ConvexPolygon.h.

72 {
73 return ConvexPolygon(points);
74 }

◆ decode() [1/2]

static std::unique_ptr< ConvexPolygon > lsst::sphgeom::ConvexPolygon::decode ( std::vector< uint8_t > const & s)
inlinestatic

decode deserializes a ConvexPolygon from a byte string produced by encode.

Definition at line 164 of file ConvexPolygon.h.

164 {
165 return decode(s.data(), s.size());
166 }
static std::unique_ptr< ConvexPolygon > decode(std::vector< uint8_t > const &s)

◆ decode() [2/2]

std::unique_ptr< ConvexPolygon > lsst::sphgeom::ConvexPolygon::decode ( uint8_t const * buffer,
size_t n )
static

decode deserializes a ConvexPolygon from a byte string produced by encode.

Definition at line 368 of file ConvexPolygon.cc.

370{
371 if (buffer == nullptr || *buffer != TYPE_CODE ||
372 n < 1 + 24*3 || (n - 1) % 24 != 0) {
373 throw std::runtime_error("Byte-string is not an encoded ConvexPolygon");
374 }
375 std::unique_ptr<ConvexPolygon> poly(new ConvexPolygon);
376 ++buffer;
377 size_t nv = (n - 1) / 24;
378 poly->_vertices.reserve(nv);
379 for (size_t i = 0; i < nv; ++i, buffer += 24) {
380 poly->_vertices.push_back(UnitVector3d::fromNormalized(
381 decodeDouble(buffer),
382 decodeDouble(buffer + 8),
383 decodeDouble(buffer + 16)
384 ));
385 }
386 return poly;
387}
static constexpr uint8_t TYPE_CODE
static UnitVector3d fromNormalized(Vector3d const &v)
fromNormalized returns the unit vector equal to v, which is assumed to be normalized.
Low-level polynomials (including special polynomials) in C++.
double decodeDouble(uint8_t const *buffer)
decodeDouble extracts an IEEE double from the 8 byte little-endian byte sequence in buffer.
Definition codec.h:76

◆ encode()

std::vector< uint8_t > lsst::sphgeom::ConvexPolygon::encode ( ) const
overridevirtual

encode serializes this region into an opaque byte string.

Byte strings emitted by encode can be deserialized with decode.

Implements lsst::sphgeom::Region.

Definition at line 355 of file ConvexPolygon.cc.

355 {
357 uint8_t tc = TYPE_CODE;
358 buffer.reserve(1 + 24 * _vertices.size());
359 buffer.push_back(tc);
360 for (UnitVector3d const & v: _vertices) {
361 encodeDouble(v.x(), buffer);
362 encodeDouble(v.y(), buffer);
363 encodeDouble(v.z(), buffer);
364 }
365 return buffer;
366}
void encodeDouble(double item, std::vector< uint8_t > &buffer)
encodeDouble appends an IEEE double in little-endian byte order to the end of buffer.
Definition codec.h:56
T push_back(T... args)
T reserve(T... args)

◆ getBoundingBox()

Box lsst::sphgeom::ConvexPolygon::getBoundingBox ( ) const
overridevirtual

getBoundingBox returns a bounding-box for this region.

Implements lsst::sphgeom::Region.

Definition at line 311 of file ConvexPolygon.cc.

311 {
312 return detail::boundingBox(_vertices.begin(), _vertices.end());
313}
Box boundingBox(VertexIterator const begin, VertexIterator const end)

◆ getBoundingBox3d()

Box3d lsst::sphgeom::ConvexPolygon::getBoundingBox3d ( ) const
overridevirtual

getBoundingBox3d returns a 3-dimensional bounding-box for this region.

Implements lsst::sphgeom::Region.

Definition at line 315 of file ConvexPolygon.cc.

315 {
316 return detail::boundingBox3d(_vertices.begin(), _vertices.end());
317}
Box3d boundingBox3d(VertexIterator const begin, VertexIterator const end)

◆ getBoundingCircle()

Circle lsst::sphgeom::ConvexPolygon::getBoundingCircle ( ) const
overridevirtual

getBoundingCircle returns a bounding-circle for this region.

Implements lsst::sphgeom::Region.

Definition at line 307 of file ConvexPolygon.cc.

307 {
308 return detail::boundingCircle(_vertices.begin(), _vertices.end());
309}
Circle boundingCircle(VertexIterator const begin, VertexIterator const end)

◆ getCentroid()

UnitVector3d lsst::sphgeom::ConvexPolygon::getCentroid ( ) const

The centroid of a polygon is its center of mass projected onto S², assuming a uniform mass distribution over the polygon surface.

Definition at line 303 of file ConvexPolygon.cc.

303 {
304 return detail::centroid(_vertices.begin(), _vertices.end());
305}
UnitVector3d centroid(VertexIterator const begin, VertexIterator const end)

◆ getVertices()

std::vector< UnitVector3d > const & lsst::sphgeom::ConvexPolygon::getVertices ( ) const
inline

Definition at line 106 of file ConvexPolygon.h.

106 {
107 return _vertices;
108 }

◆ intersects()

bool lsst::sphgeom::ConvexPolygon::intersects ( Region const & r) const

intersects returns true if the intersection of this convex polygon and x is non-empty.

Definition at line 331 of file ConvexPolygon.cc.

331 {
332 return !isDisjointFrom(r);
333}
bool isDisjointFrom(Region const &r) const

◆ isDisjointFrom()

bool lsst::sphgeom::ConvexPolygon::isDisjointFrom ( Region const & r) const

isDisjointFrom returns true if the intersection of this convex polygon and x is empty.

Definition at line 327 of file ConvexPolygon.cc.

327 {
328 return (relate(r) & DISJOINT) != 0;
329}

◆ isWithin()

bool lsst::sphgeom::ConvexPolygon::isWithin ( Region const & r) const

isWithin returns true if the intersection of this convex polygon and x is this convex polygon.

Definition at line 335 of file ConvexPolygon.cc.

335 {
336 return (relate(r) & WITHIN) != 0;
337}

◆ operator!=()

bool lsst::sphgeom::ConvexPolygon::operator!= ( ConvexPolygon const & p) const
inline

Definition at line 104 of file ConvexPolygon.h.

104{ return !(*this == p); }

◆ operator==()

bool lsst::sphgeom::ConvexPolygon::operator== ( ConvexPolygon const & p) const

Two convex polygons are equal iff they contain the same points.

Definition at line 268 of file ConvexPolygon.cc.

268 {
269 if (this == &p) {
270 return true;
271 }
272 if (_vertices.size() != p._vertices.size()) {
273 return false;
274 }
275 VertexIterator i = _vertices.begin();
276 VertexIterator f = p._vertices.begin();
277 VertexIterator const ep = p._vertices.end();
278 // Find vertex f of p equal to the first vertex of this polygon.
279 for (; f != ep; ++f) {
280 if (*i == *f) {
281 break;
282 }
283 }
284 if (f == ep) {
285 // No vertex of p is equal to the first vertex of this polygon.
286 return false;
287 }
288 // Now, compare all vertices.
289 ++i;
290 for (VertexIterator j = f + 1; j != ep; ++i, ++j) {
291 if (*i != *j) {
292 return false;
293 }
294 }
295 for (VertexIterator j = p._vertices.begin(); j != f; ++i, ++j) {
296 if (*i != *j) {
297 return false;
298 }
299 }
300 return true;
301}

◆ relate() [1/5]

Relationship lsst::sphgeom::ConvexPolygon::relate ( Box const & ) const
overridevirtual

relate computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:

  • Bit S & DISJOINT is set only if A and B do not have any points in common.
  • Bit S & CONTAINS is set only if A contains all points in B.
  • Bit S & WITHIN is set only if B contains all points in A.

Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.

These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate by replacing itself and/or the argument with a simplified bounding region.

Implements lsst::sphgeom::Region.

Definition at line 339 of file ConvexPolygon.cc.

339 {
340 return detail::relate(_vertices.begin(), _vertices.end(), b);
341}
table::Key< int > b
Relationship relate(VertexIterator const begin, VertexIterator const end, Box const &b)

◆ relate() [2/5]

Relationship lsst::sphgeom::ConvexPolygon::relate ( Circle const & ) const
overridevirtual

relate computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:

  • Bit S & DISJOINT is set only if A and B do not have any points in common.
  • Bit S & CONTAINS is set only if A contains all points in B.
  • Bit S & WITHIN is set only if B contains all points in A.

Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.

These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate by replacing itself and/or the argument with a simplified bounding region.

Implements lsst::sphgeom::Region.

Definition at line 343 of file ConvexPolygon.cc.

343 {
344 return detail::relate(_vertices.begin(), _vertices.end(), c);
345}

◆ relate() [3/5]

Relationship lsst::sphgeom::ConvexPolygon::relate ( ConvexPolygon const & ) const
overridevirtual

relate computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:

  • Bit S & DISJOINT is set only if A and B do not have any points in common.
  • Bit S & CONTAINS is set only if A contains all points in B.
  • Bit S & WITHIN is set only if B contains all points in A.

Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.

These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate by replacing itself and/or the argument with a simplified bounding region.

Implements lsst::sphgeom::Region.

Definition at line 347 of file ConvexPolygon.cc.

347 {
348 return detail::relate(_vertices.begin(), _vertices.end(), p);
349}

◆ relate() [4/5]

Relationship lsst::sphgeom::ConvexPolygon::relate ( Ellipse const & ) const
overridevirtual

relate computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:

  • Bit S & DISJOINT is set only if A and B do not have any points in common.
  • Bit S & CONTAINS is set only if A contains all points in B.
  • Bit S & WITHIN is set only if B contains all points in A.

Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.

These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate by replacing itself and/or the argument with a simplified bounding region.

Implements lsst::sphgeom::Region.

Definition at line 351 of file ConvexPolygon.cc.

351 {
352 return detail::relate(_vertices.begin(), _vertices.end(), e);
353}

◆ relate() [5/5]

Relationship lsst::sphgeom::ConvexPolygon::relate ( Region const & ) const
inlineoverridevirtual

relate computes the spatial relationships between this region A and another region B. The return value S is a bitset with the following properties:

  • Bit S & DISJOINT is set only if A and B do not have any points in common.
  • Bit S & CONTAINS is set only if A contains all points in B.
  • Bit S & WITHIN is set only if B contains all points in A.

Said another way: if the CONTAINS, WITHIN or DISJOINT bit is set, then the corresponding spatial relationship between the two regions holds conclusively. If it is not set, the relationship may or may not hold.

These semantics allow for conservative relationship computations. In particular, a Region may choose to implement relate by replacing itself and/or the argument with a simplified bounding region.

Implements lsst::sphgeom::Region.

Definition at line 150 of file ConvexPolygon.h.

150 {
151 // Dispatch on the type of r.
152 return invert(r.relate(*this));
153 }
Relationship invert(Relationship r)
Given the relationship between two sets A and B (i.e.

Member Data Documentation

◆ TYPE_CODE

constexpr uint8_t lsst::sphgeom::ConvexPolygon::TYPE_CODE = 'p'
staticconstexpr

Definition at line 66 of file ConvexPolygon.h.


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