LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
lsst::afw::geom::SpherePointEndpoint Class Referenceabstract

An endpoint for lsst::geom::SpherePoint. More...

#include <Endpoint.h>

Inheritance diagram for lsst::afw::geom::SpherePointEndpoint:
lsst::afw::geom::BaseVectorEndpoint< lsst::geom::SpherePoint > lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >

Public Types

using Array = std::vector< lsst::geom::SpherePoint >
 
using Point = lsst::geom::SpherePoint
 

Public Member Functions

 SpherePointEndpoint (SpherePointEndpoint const &)=default
 
 SpherePointEndpoint (SpherePointEndpoint &&)=default
 
SpherePointEndpointoperator= (SpherePointEndpoint const &)=delete
 
SpherePointEndpointoperator= (SpherePointEndpoint &&)=delete
 
 SpherePointEndpoint ()
 Construct a SpherePointEndpoint. More...
 
 SpherePointEndpoint (int nAxes)
 Construct a SpherePointEndpoint with nAxes specified; nAxes must equal 2. More...
 
 ~SpherePointEndpoint () override=default
 
std::vector< double > dataFromPoint (Point const &point) const override
 
ndarray::Array< double, 2, 2 > dataFromArray (Array const &arr) const override
 
Point pointFromData (std::vector< double > const &data) const override
 Get a single point from raw data. More...
 
Array arrayFromData (ndarray::Array< double, 2, 2 > const &data) const override
 Get an array of points from raw data. More...
 
std::shared_ptr< ast::FramemakeFrame () const override
 Create a Frame that can be used with this end point in a Transform. More...
 
void normalizeFrame (std::shared_ptr< ast::Frame > framePtr) const override
 Check that framePtr points to a SkyFrame and set longitude axis to 0, latitude to 1. More...
 
int getNPoints (Array const &arr) const override
 Return the number of points in an array. More...
 
int getNAxes () const
 
virtual bool operator== (BaseEndpoint const &other) const noexcept
 Determine whether two endpoints represent the same conversion. More...
 
bool operator!= (BaseEndpoint const &other) const noexcept
 Determine whether two endpoints do not represent the same conversion. More...
 
virtual std::vector< double > dataFromPoint (Point const &point) const=0
 Get raw data from a single point. More...
 
virtual ndarray::Array< double, 2, 2 > dataFromArray (Array const &arr) const=0
 Get raw data from an array of points. More...
 

Static Public Member Functions

static std::string getClassPrefix ()
 Get the class name prefix, e.g. "Point2" for "Point2Endpoint". More...
 

Protected Member Functions

void _assertNAxes (int nAxes) const
 
int _getNAxes (ndarray::Array< double, 2, 2 > const &data) const
 
int _getNAxes (ndarray::Array< double, 1, 1 > const &data) const
 
int _getNAxes (std::vector< double > const &data) const
 
int _getNPoints (ndarray::Array< double, 2, 2 > const &data) const
 

Detailed Description

An endpoint for lsst::geom::SpherePoint.

A SpherePointEndpoint always has 2 axes: longitude, latitude

Definition at line 315 of file Endpoint.h.

Member Typedef Documentation

◆ Array

Definition at line 197 of file Endpoint.h.

◆ Point

Definition at line 198 of file Endpoint.h.

Constructor & Destructor Documentation

◆ SpherePointEndpoint() [1/4]

lsst::afw::geom::SpherePointEndpoint::SpherePointEndpoint ( SpherePointEndpoint const &  )
default

◆ SpherePointEndpoint() [2/4]

lsst::afw::geom::SpherePointEndpoint::SpherePointEndpoint ( SpherePointEndpoint &&  )
default

◆ SpherePointEndpoint() [3/4]

lsst::afw::geom::SpherePointEndpoint::SpherePointEndpoint ( )
inlineexplicit

Construct a SpherePointEndpoint.

Definition at line 325 of file Endpoint.h.

325 : BaseVectorEndpoint(2) {}

◆ SpherePointEndpoint() [4/4]

lsst::afw::geom::SpherePointEndpoint::SpherePointEndpoint ( int  nAxes)
explicit

Construct a SpherePointEndpoint with nAxes specified; nAxes must equal 2.

This constructor is primarily used by Transform; other users are encouraged to use the default constructor.

Parameters
[in]nAxesThe number of axes in a point; must equal 2
Exceptions
lsst.pex.exceptions.InvalidParameterErrorif nAxes != 2

Definition at line 170 of file Endpoint.cc.

170  : BaseVectorEndpoint(2) {
171  if (nAxes != 2) {
173  os << "nAxes = " << nAxes << " != 2";
175  }
176 }
T str(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports invalid arguments.
Definition: Runtime.h:66
std::ostream * os
Definition: Schema.cc:746

◆ ~SpherePointEndpoint()

lsst::afw::geom::SpherePointEndpoint::~SpherePointEndpoint ( )
overridedefault

Member Function Documentation

◆ _assertNAxes()

void lsst::afw::geom::BaseEndpoint< Point, Array >::_assertNAxes ( int  nAxes) const
protectedinherited

Definition at line 74 of file Endpoint.cc.

74  {
75  if (nAxes != this->getNAxes()) {
77  os << "number of axes provided " << nAxes << " != " << this->getNAxes() << " required";
78  throw std::invalid_argument(os.str());
79  }
80 }
T str(T... args)
std::ostream * os
Definition: Schema.cc:746

◆ _getNAxes() [1/3]

int lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::_getNAxes ( ndarray::Array< double, 2, 2 > const &  data) const
inlineprotectedinherited

Definition at line 177 of file Endpoint.h.

177 { return data.getSize<0>(); }
char * data
Definition: BaseRecord.cc:62

◆ _getNAxes() [2/3]

int lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::_getNAxes ( ndarray::Array< double, 1, 1 > const &  data) const
inlineprotectedinherited

Definition at line 179 of file Endpoint.h.

179 { return data.getSize<0>(); }
char * data
Definition: BaseRecord.cc:62

◆ _getNAxes() [3/3]

int lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::_getNAxes ( std::vector< double > const &  data) const
inlineprotectedinherited

Definition at line 181 of file Endpoint.h.

181 { return data.size(); }
T size(T... args)

◆ _getNPoints()

int lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::_getNPoints ( ndarray::Array< double, 2, 2 > const &  data) const
inlineprotectedinherited

Definition at line 183 of file Endpoint.h.

183 { return data.getSize<1>(); }
char * data
Definition: BaseRecord.cc:62

◆ arrayFromData()

std::vector< lsst::geom::SpherePoint > lsst::afw::geom::SpherePointEndpoint::arrayFromData ( ndarray::Array< double, 2, 2 > const &  data) const
overridevirtual

Get an array of points from raw data.

Parameters
[in]dataRaw data for an array of points, as a 2-D ndarray array [nPoints, nAxes] in C order, so the in-memory view is, for example, x0, y0, x1, y1, x2, y2, ...
Returns
an array of points
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif the array has the wrong nAxes dimension

Implements lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >.

Definition at line 206 of file Endpoint.cc.

207  {
208  this->_assertNAxes(this->_getNAxes(data));
209  int const nPoints = this->_getNPoints(data);
210  Array array;
211  array.reserve(nPoints);
212  for (auto const& dataCol : data.transpose()) {
213  array.emplace_back(lsst::geom::SpherePoint(dataCol[0], dataCol[1], lsst::geom::radians));
214  }
215  return array;
216 }
std::vector< lsst::geom::SpherePoint > Array
Definition: Endpoint.h:197
AngleUnit constexpr radians
constant with units of radians
Definition: Angle.h:108
char * data
Definition: BaseRecord.cc:62
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57

◆ dataFromArray() [1/2]

virtual ndarray::Array<double, 2, 2> lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::dataFromArray ( Array const &  arr) const
pure virtualinherited

Get raw data from an array of points.

Parameters
[in]arrArray of points
Returns
the data as a 2-D ndarray array [nAxes, nPoints] in C order, so the in-memory view is, for example, x0, x1, x2, ..., y0, y1, y2, ...
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif the array has the wrong nAxes dimension

◆ dataFromArray() [2/2]

ndarray::Array< double, 2, 2 > lsst::afw::geom::SpherePointEndpoint::dataFromArray ( Array const &  arr) const
override

Definition at line 187 of file Endpoint.cc.

187  {
188  const int nAxes = this->getNAxes();
189  const int nPoints = this->getNPoints(arr);
190  ndarray::Array<double, 2, 2> data = ndarray::allocate(ndarray::makeVector(nAxes, nPoints));
191  auto dataColIter = data.transpose().begin();
192  for (auto const& point : arr) {
193  for (int axInd = 0; axInd < nAxes; ++axInd) {
194  (*dataColIter)[axInd] = point[axInd].asRadians();
195  }
196  ++dataColIter;
197  }
198  return data;
199 }
char * data
Definition: BaseRecord.cc:62
int getNPoints(Array const &arr) const override
Definition: Endpoint.cc:83

◆ dataFromPoint() [1/2]

virtual std::vector<double> lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint , std::vector< lsst::geom::SpherePoint > >::dataFromPoint ( Point const &  point) const
pure virtualinherited

Get raw data from a single point.

Parameters
[in]pointdata for a single point
Returns
the values in the point as a vector of size NAxess
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif the point has the wrong number of axes

◆ dataFromPoint() [2/2]

std::vector< double > lsst::afw::geom::SpherePointEndpoint::dataFromPoint ( Point const &  point) const
override

Definition at line 178 of file Endpoint.cc.

178  {
179  const int nAxes = this->getNAxes();
181  for (int axInd = 0; axInd < nAxes; ++axInd) {
182  result[axInd] = point[axInd].asRadians();
183  }
184  return result;
185 }
py::object result
Definition: _schema.cc:429

◆ getClassPrefix()

static std::string lsst::afw::geom::SpherePointEndpoint::getClassPrefix ( )
inlinestatic

Get the class name prefix, e.g. "Point2" for "Point2Endpoint".

Definition at line 356 of file Endpoint.h.

356 { return "SpherePoint"; };

◆ getNAxes()

Definition at line 79 of file Endpoint.h.

79 { return _nAxes; }

◆ getNPoints()

int lsst::afw::geom::BaseVectorEndpoint< Point >::getNPoints ( Array const &  arr) const
overridevirtualinherited

Return the number of points in an array.

Implements lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >.

Definition at line 83 of file Endpoint.cc.

83  {
84  return arr.size();
85 }

◆ makeFrame()

std::shared_ptr< ast::Frame > lsst::afw::geom::SpherePointEndpoint::makeFrame ( ) const
overridevirtual

Create a Frame that can be used with this end point in a Transform.

Reimplemented from lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >.

Definition at line 218 of file Endpoint.cc.

218  {
219  return std::make_shared<ast::SkyFrame>();
220 }

◆ normalizeFrame()

void lsst::afw::geom::SpherePointEndpoint::normalizeFrame ( std::shared_ptr< ast::Frame framePtr) const
overridevirtual

Check that framePtr points to a SkyFrame and set longitude axis to 0, latitude to 1.

Reimplemented from lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >.

Definition at line 222 of file Endpoint.cc.

222  {
223  // use getCurrentFrame because if framePtr points to a FrameSet we want its current frame
224  auto currentFramePtr = getCurrentFrame(framePtr);
225  auto skyFramePtr = std::dynamic_pointer_cast<ast::SkyFrame>(currentFramePtr);
226  if (!skyFramePtr) {
228  os << "frame is a " << currentFramePtr->getClassName() << ", not a SkyFrame";
230  }
231  if (skyFramePtr->getLonAxis() != 1) {
232  // axes are swapped to Lat, Lon; swap them back to the usual Lon, Lat
233  // warning: be sure to call permAxes on the original framePtr argument,
234  // as otherwise it will have no effect if framePtr points to a FrameSet
235  std::vector<int> perm = {2, 1};
236  framePtr->permAxes(perm);
237  }
238 }
SkyFrame is a specialised form of Frame which describes celestial longitude/latitude coordinate syste...
Definition: SkyFrame.h:66
T str(T... args)
T dynamic_pointer_cast(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports invalid arguments.
Definition: Runtime.h:66
std::ostream * os
Definition: Schema.cc:746

◆ operator!=()

Determine whether two endpoints do not represent the same conversion.

Returns
the inverse of operator==. See that operator's documentation for important caveats.

Definition at line 109 of file Endpoint.h.

109 { return !(*this == other); }
ItemVariant const * other
Definition: Schema.cc:56

◆ operator=() [1/2]

SpherePointEndpoint& lsst::afw::geom::SpherePointEndpoint::operator= ( SpherePointEndpoint const &  )
delete

◆ operator=() [2/2]

SpherePointEndpoint& lsst::afw::geom::SpherePointEndpoint::operator= ( SpherePointEndpoint &&  )
delete

◆ operator==()

bool lsst::afw::geom::BaseEndpoint< Point, Array >::operator== ( BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > > const &  other) const
virtualnoexceptinherited

Determine whether two endpoints represent the same conversion.

Parameters
otherthe endpoint to compare
Returns
true iff this object and other are of exactly the same class and all visible properties are identical. This implementation requires that the objects have the same number of axes.
Warning
Two endpoints with different implementation classes will never compare equal, even if one class is conceptually equivalent to the other (e.g., a decorator). This may cause unexpected behavior when mixing related concrete endpoint classes.

Definition at line 64 of file Endpoint.cc.

64  {
65  return this->getNAxes() == other.getNAxes() && typeid(*this) == typeid(other);
66 }
ItemVariant const * other
Definition: Schema.cc:56

◆ pointFromData()

lsst::geom::SpherePoint lsst::afw::geom::SpherePointEndpoint::pointFromData ( std::vector< double > const &  data) const
overridevirtual

Get a single point from raw data.

Parameters
[in]dataData as a vector of length NAxes
Returns
the corresponding point

Implements lsst::afw::geom::BaseEndpoint< lsst::geom::SpherePoint, std::vector< lsst::geom::SpherePoint > >.

Definition at line 201 of file Endpoint.cc.

201  {
202  this->_assertNAxes(this->_getNAxes(data));
203  return lsst::geom::SpherePoint(data[0], data[1], lsst::geom::radians);
204 }
AngleUnit constexpr radians
constant with units of radians
Definition: Angle.h:108
lsst::geom::SpherePoint SpherePoint
Definition: misc.h:35

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