LSSTApplications
12.1-5-gbdcc3ab+2,15.0+13,15.0+26,15.0-1-g19261fa+17,15.0-1-g60afb23+26,15.0-1-g615e0bb+18,15.0-1-g788a293+26,15.0-1-ga91101e+26,15.0-1-gae1598d+12,15.0-1-gd076f1f+24,15.0-1-gdf18595+5,15.0-1-gf4f1c34+12,15.0-11-g7db6e543+4,15.0-12-g3681e7a+4,15.0-15-gc15de322,15.0-16-g83b84f4,15.0-2-g100d730+19,15.0-2-g1f9c9cf+4,15.0-2-g8aea5f4+1,15.0-2-gf38729e+21,15.0-29-ga12a2b06e,15.0-3-g11fe1a0+14,15.0-3-g707930d+3,15.0-3-g9103c06+12,15.0-3-gd3cbb57+3,15.0-4-g2d82b59,15.0-4-g535e784+10,15.0-4-g92ca6c3+4,15.0-4-gf906033+2,15.0-5-g23e394c+14,15.0-5-g4be42a9,15.0-6-g69628aa,15.0-6-g86e3f3d+1,15.0-6-gfa9b38f+4,15.0-7-g949993c+3,15.0-8-g67a62d3+1,15.0-8-gcf05001+1,15.0-9-g1e7c341+1,w.2018.21
LSSTDataManagementBasePackage
|
Point in an unspecified spherical coordinate system. More...
#include <SpherePoint.h>
Public Member Functions | |
SpherePoint (Angle const &longitude, Angle const &latitude) | |
Construct a SpherePoint from a longitude and latitude. More... | |
SpherePoint (double longitude, double latitude, AngleUnit units) | |
Construct a SpherePoint from double longitude and latitude. More... | |
SpherePoint (sphgeom::Vector3d const &vector) | |
Construct a SpherePoint from a vector representing a direction. More... | |
SpherePoint (sphgeom::LonLat const &lonLat) | |
Construct a SpherePoint from a sphgeom::LonLat. More... | |
SpherePoint () | |
Construct a SpherePoint with "nan" for longitude and latitude. More... | |
SpherePoint (SpherePoint const &other) noexcept | |
Create a copy of a SpherePoint. More... | |
SpherePoint (SpherePoint &&other) noexcept | |
Create a copy of a SpherePoint. More... | |
~SpherePoint () | |
SpherePoint & | operator= (SpherePoint const &other) noexcept |
Overwrite this object with the value of another SpherePoint. More... | |
SpherePoint & | operator= (SpherePoint &&other) noexcept |
Overwrite this object with the value of another SpherePoint. More... | |
operator sphgeom::LonLat () const | |
Make SpherePoint implicitly convertible to LonLat. More... | |
Angle | getLongitude () const noexcept |
The longitude of this point. More... | |
Angle | getRa () const noexcept |
Synonym for getLongitude. More... | |
Angle | getLatitude () const noexcept |
The latitude of this point. More... | |
Angle | getDec () const noexcept |
Synonym for getLatitude. More... | |
Point2D | getPosition (AngleUnit unit) const |
Return longitude, latitude as a Point2D object. More... | |
sphgeom::UnitVector3d | getVector () const noexcept |
A unit vector representation of this point. More... | |
Angle | operator[] (size_t index) const |
Longitude and latitude by index. More... | |
bool | atPole () const noexcept |
true if this point is either coordinate pole. More... | |
bool | isFinite () const noexcept |
true if this point is a well-defined position. More... | |
bool | operator== (SpherePoint const &other) const noexcept |
true if two points have the same longitude and latitude. More... | |
bool | operator!= (SpherePoint const &other) const noexcept |
false if two points represent the same position. More... | |
Angle | bearingTo (SpherePoint const &other) const |
Orientation at this point of the great circle arc to another point. More... | |
Angle | separation (SpherePoint const &other) const noexcept |
Angular distance between two points. More... | |
SpherePoint | rotated (SpherePoint const &axis, Angle const &amount) const noexcept |
Return a point rotated from this one around an axis. More... | |
SpherePoint | offset (Angle const &bearing, Angle const &amount) const |
Return a point offset from this one along a great circle. More... | |
std::pair< Angle, Angle > | getTangentPlaneOffset (SpherePoint const &other) const |
Get the offset from a tangent plane centered at this point to another point. More... | |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &os, SpherePoint const &point) |
Print the value of a point to a stream. More... | |
Point in an unspecified spherical coordinate system.
This class represents a point on a sphere in the mathematical rather than the astronomical sense. It does not refer to any astronomical reference frame, nor does it have any concept of (radial) distance.
Points can be represented either as spherical coordinates or as a unit vector. The adopted convention for converting between these two systems is that (0, 0) corresponds to <1, 0, 0>, that (π/2, 0) corresponds to <0, 1, 0>, and that (0, π/2) corresponds to <0, 0, 1>.
To keep usage simple, SpherePoint does not support modification of existing values; transformations of SpherePoints should be expressed as a new object. To support cases where a SpherePoint must be updated in-place, SpherePoint supports assignment to an existing object. One example is in containers of SpherePoints; no STL container has an atomic element-replacement method, so complicated constructions would need to be used if you couldn't overwrite an existing element.
Definition at line 61 of file SpherePoint.h.
Construct a SpherePoint from a longitude and latitude.
longitude | The longitude of the point. +/-inf is treated as nan (because longitude is wrapped to a standard range and infinity cannot be wrapped) |
latitude | The latitude of the point. Must be in the interval [-π/2, π/2] radians. |
pex::exceptions::InvalidParameterError | Thrown if latitude isout of range. |
Definition at line 70 of file SpherePoint.cc.
lsst::afw::geom::SpherePoint::SpherePoint | ( | double | longitude, |
double | latitude, | ||
AngleUnit | units | ||
) |
Construct a SpherePoint from double longitude and latitude.
longitude | The longitude of the point. +/-inf is treated as nan (because longitude is wrapped to a standard range and infinity cannot be wrapped) |
latitude | The latitude of the point. Must be in the interval [-π/2, π/2] radians. |
units | The units of longitude and latitude |
pex::exceptions::InvalidParameterError | Thrown if latitude isout of range. |
Definition at line 67 of file SpherePoint.cc.
|
explicit |
Construct a SpherePoint from a vector representing a direction.
vector | A position whose direction will be stored as a SpherePoint. Must not be the zero vector. Need not be normalized, and the norm will not affect the value of the point. |
pex::exceptions::InvalidParameterError | Thrown if vector is the zero vector. |
Definition at line 78 of file SpherePoint.cc.
lsst::afw::geom::SpherePoint::SpherePoint | ( | sphgeom::LonLat const & | lonLat | ) |
Construct a SpherePoint from a sphgeom::LonLat.
lonLat | The lonLat |
Definition at line 96 of file SpherePoint.cc.
lsst::afw::geom::SpherePoint::SpherePoint | ( | ) |
Construct a SpherePoint with "nan" for longitude and latitude.
Definition at line 110 of file SpherePoint.cc.
|
defaultnoexcept |
Create a copy of a SpherePoint.
other | The point to copy. |
|
defaultnoexcept |
Create a copy of a SpherePoint.
As SpherePoint(SpherePoint const&), except that other
may be left in an unspecified but valid state.
|
default |
|
inlinenoexcept |
true
if this point is either coordinate pole.
true
if this point is at the north or south pole, false
otherwiseDefinition at line 237 of file SpherePoint.h.
Angle lsst::afw::geom::SpherePoint::bearingTo | ( | SpherePoint const & | other | ) | const |
Orientation at this point of the great circle arc to another point.
The orientation is measured in a plane tangent to the sphere at this point, with 0 degrees along the direction of increasing longitude and 90 degrees along the direction of increasing latitude. Thus for any point except the pole, the arc is due east at 0 degrees and due north at 90 degrees. To understand the behavior at the poles it may help to imagine the point has been shifted slightly by decreasing the absolute value of its latitude.
If the points are on opposite sides of the sphere then the returned bearing may be any value.
other | the point to which to measure the bearing |
A
and B
, A.bearingTo(B)
will in general not be 180 degrees away from B.bearingTo(A)
. Definition at line 156 of file SpherePoint.cc.
|
inlinenoexcept |
Synonym for getLatitude.
Definition at line 195 of file SpherePoint.h.
|
inlinenoexcept |
The latitude of this point.
Definition at line 192 of file SpherePoint.h.
|
inlinenoexcept |
The longitude of this point.
Definition at line 180 of file SpherePoint.h.
Return longitude, latitude as a Point2D object.
[in] | unit | Units of returned data. |
Definition at line 131 of file SpherePoint.cc.
|
inlinenoexcept |
Synonym for getLongitude.
Definition at line 183 of file SpherePoint.h.
std::pair< geom::Angle, geom::Angle > lsst::afw::geom::SpherePoint::getTangentPlaneOffset | ( | SpherePoint const & | other | ) | const |
Get the offset from a tangent plane centered at this point to another point.
This is suitable only for small angles.
[in] | other | Coordinate to which to compute offset |
Definition at line 211 of file SpherePoint.cc.
|
noexcept |
A unit vector representation of this point.
Definition at line 126 of file SpherePoint.cc.
|
noexcept |
true
if this point is a well-defined position.
true
if getLongitude(), getLatitude(), and getVector() return finite floating-point values; false
if any return NaN or infinity.Definition at line 146 of file SpherePoint.cc.
SpherePoint lsst::afw::geom::SpherePoint::offset | ( | Angle const & | bearing, |
Angle const & | amount | ||
) | const |
Return a point offset from this one along a great circle.
For any point A
, any angle bearing
and any non-negative angle amount
, if B
= A.offset(bearing, amount)then
A.bearingTo(B) = amountand
A.separationTo(B) = amount. Negative values of
amountare supported in the obvious manner:
A.offset(bearing, delta) = A.offset(bearing + 180*degrees, -delta)`
bearing | the direction in which to move this point, following the conventions described in bearingTo. |
amount | the distance by which to move along the great circle defined by bearing |
Definition at line 182 of file SpherePoint.cc.
lsst::afw::geom::SpherePoint::operator sphgeom::LonLat | ( | ) | const |
Make SpherePoint implicitly convertible to LonLat.
Definition at line 120 of file SpherePoint.cc.
|
noexcept |
false
if two points represent the same position.
This operator shall always return the logical negation of operator==(); see its documentation for a detailed specification.
Definition at line 154 of file SpherePoint.cc.
|
defaultnoexcept |
Overwrite this object with the value of another SpherePoint.
This is the only method that can alter the state of a SpherePoint after its construction, and is provided to allow in-place replacement of SpherePoints where swapping is not possible.
other | The object with which to overwrite this one. |
|
defaultnoexcept |
Overwrite this object with the value of another SpherePoint.
As operator=(SpherePoint const&), except that other
may be left in an unspecified but valid state.
|
noexcept |
true
if two points have the same longitude and latitude.
other | the point to test for equality |
other
, false otherwiseNaN
shall not compare equal to any point, including themselves. This may break algorithms that assume object equality is reflexive; use isFinite() to filter objects if necessary. Definition at line 148 of file SpherePoint.cc.
Longitude and latitude by index.
index | the index of the spherical coordinate to return. Must be either 0 or 1. |
index
= 0, or getLatitude() if index
= 1pex::exceptions::OutOfRangeError | Thrown if index is neither 0 nor 1. |
Definition at line 135 of file SpherePoint.cc.
|
noexcept |
Return a point rotated from this one around an axis.
axis | a point defining the north pole of the rotation axis. |
amount | the amount of rotation, where positive values represent right-handed rotations around axis . |
Definition at line 175 of file SpherePoint.cc.
|
noexcept |
Angular distance between two points.
other | the point to which to measure the separation |
Definition at line 170 of file SpherePoint.cc.
|
related |
Print the value of a point to a stream.
The exact details of the string representation are unspecified and subject to change, but the following may be regarded as typical: "(10.543250, +32.830583)"
.
os | the stream to which to print point |
point | the point to print to the stream |
os
pex::exceptions::std::ostream::failure | Thrown if an I/O state flag was set that was registered with os.exceptions() . See the documentation of std::ostream for more details. |
Definition at line 250 of file SpherePoint.cc.