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 Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
lsst::afw::geom::Point2Endpoint Class Referenceabstract

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

#include <Endpoint.h>

Inheritance diagram for lsst::afw::geom::Point2Endpoint:
lsst::afw::geom::BaseVectorEndpoint< lsst::geom::Point2D > lsst::afw::geom::BaseEndpoint< PointT, ArrayT >

Public Types

using Array
 
using Point
 

Public Member Functions

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

Static Public Member Functions

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

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::Point2D.

Definition at line 261 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

◆ Point2Endpoint() [1/4]

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

◆ Point2Endpoint() [2/4]

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

◆ Point2Endpoint() [3/4]

lsst::afw::geom::Point2Endpoint::Point2Endpoint ( )
inlineexplicit

Construct a Point2Endpoint.

Definition at line 271 of file Endpoint.h.

271: BaseVectorEndpoint<lsst::geom::Point2D>(2) {}

◆ Point2Endpoint() [4/4]

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

Construct a Point2Endpoint with nAxes specified; nAxes must equal template parameter N.

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 template parameter N
Exceptions
lsst.pex.exceptions.InvalidParameterErrorif nAxes != N

Definition at line 106 of file Endpoint.cc.

106 : BaseVectorEndpoint<lsst::geom::Point2D>(2) {
107 if (nAxes != 2) {
109 os << "nAxes = " << nAxes << " != 2";
111 }
112}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
std::ostream * os
Definition Schema.cc:557
Reports invalid arguments.
Definition Runtime.h:66

◆ ~Point2Endpoint()

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

Member Function Documentation

◆ _assertNAxes()

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

Definition at line 73 of file Endpoint.cc.

73 {
74 if (nAxes != this->getNAxes()) {
76 os << "number of axes provided " << nAxes << " != " << this->getNAxes() << " required";
77 throw std::invalid_argument(os.str());
78 }
79}

◆ _getNAxes() [1/3]

template<typename PointT , typename ArrayT >
int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::_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:61

◆ _getNAxes() [2/3]

template<typename PointT , typename ArrayT >
int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::_getNAxes ( ndarray::Array< double, 2, 2 > const & data) const
inlineprotectedinherited

Definition at line 177 of file Endpoint.h.

177{ return data.getSize<0>(); }

◆ _getNAxes() [3/3]

template<typename PointT , typename ArrayT >
int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::_getNAxes ( std::vector< double > const & data) const
inlineprotectedinherited

Definition at line 181 of file Endpoint.h.

181{ return data.size(); }

◆ _getNPoints()

template<typename PointT , typename ArrayT >
int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::_getNPoints ( ndarray::Array< double, 2, 2 > const & data) const
inlineprotectedinherited

Definition at line 183 of file Endpoint.h.

183{ return data.getSize<1>(); }

◆ arrayFromData()

std::vector< lsst::geom::Point2D > lsst::afw::geom::Point2Endpoint::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< PointT, ArrayT >.

Definition at line 147 of file Endpoint.cc.

148 {
149 this->_assertNAxes(this->_getNAxes(data));
150 int const nPoints = this->_getNPoints(data);
151 Array array;
152 array.reserve(nPoints);
153 for (auto const& dataCol : data.transpose()) {
154 array.emplace_back(dataCol[0], dataCol[1]);
155 }
156 return array;
157}
int _getNPoints(ndarray::Array< double, 2, 2 > const &data) const
Definition Endpoint.h:183
void _assertNAxes(int nAxes) const
Definition Endpoint.cc:73
int _getNAxes(ndarray::Array< double, 2, 2 > const &data) const
Definition Endpoint.h:177

◆ dataFromArray()

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

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

Implements lsst::afw::geom::BaseEndpoint< PointT, ArrayT >.

Definition at line 123 of file Endpoint.cc.

123 {
124 const int nAxes = this->getNAxes();
125 const int nPoints = this->getNPoints(arr);
126 ndarray::Array<double, 2, 2> data = ndarray::allocate(ndarray::makeVector(nAxes, nPoints));
127 auto dataColIter = data.transpose().begin();
128 for (auto const& point : arr) {
129 for (int axInd = 0; axInd < nAxes; ++axInd) {
130 (*dataColIter)[axInd] = point[axInd];
131 }
132 ++dataColIter;
133 }
134 return data;
135}
int getNPoints(Array const &arr) const override
Definition Endpoint.cc:82

◆ dataFromPoint()

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

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

Implements lsst::afw::geom::BaseEndpoint< PointT, ArrayT >.

Definition at line 114 of file Endpoint.cc.

114 {
115 const int nAxes = this->getNAxes();
117 for (int axInd = 0; axInd < nAxes; ++axInd) {
118 result[axInd] = point[axInd];
119 }
120 return result;
121}
py::object result
Definition _schema.cc:429

◆ getClassPrefix()

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

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

Definition at line 307 of file Endpoint.h.

307{ return "Point2"; };

◆ getNAxes()

template<typename PointT , typename ArrayT >
int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::getNAxes ( ) const
inlineinherited

Definition at line 79 of file Endpoint.h.

79{ return _nAxes; }

◆ getNPoints() [1/2]

template<typename PointT , typename ArrayT >
virtual int lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::getNPoints ( Array const & arr) const
pure virtualinherited

Return the number of points in an array.

Implemented in lsst::afw::geom::BaseVectorEndpoint< PointT >, and lsst::afw::geom::GenericEndpoint.

◆ getNPoints() [2/2]

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

Return the number of points in an array.

Definition at line 207 of file Endpoint.cc.

◆ makeFrame()

template<typename Point , typename Array >
std::shared_ptr< ast::Frame > lsst::afw::geom::BaseEndpoint< Point, Array >::makeFrame ( ) const
virtualinherited

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

Reimplemented in lsst::afw::geom::SpherePointEndpoint.

Definition at line 68 of file Endpoint.cc.

68 {
69 return std::make_shared<ast::Frame>(getNAxes());
70}

◆ normalizeFrame()

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

Check that framePtr points to a Frame, not a subclass.

Subclasses are forbidden because lsst::geom::Point2D is assumed to be cartesian and subclasses of Frame are not (e.g. SkyFrame, SpecFrame and TimeFrame). Note that SpecFrame and TimeFrame are 1-dimensional so they cannot be used in any case. A CmpFrame could be cartesian, but we play it safe and reject these (however, a cartesian CmpFrame ought to simplify to a Frame).

Reimplemented from lsst::afw::geom::BaseEndpoint< PointT, ArrayT >.

Definition at line 159 of file Endpoint.cc.

159 {
160 // use getCurrentFrame because if framePtr points to a FrameSet we want the name of its current frame
162 if (className != "Frame") {
164 os << "frame is a " << className << ", not a Frame";
166 }
167}

◆ operator!=()

template<typename PointT , typename ArrayT >
bool lsst::afw::geom::BaseEndpoint< PointT, ArrayT >::operator!= ( BaseEndpoint< PointT, ArrayT > const & other) const
inlinenoexceptinherited

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); }

◆ operator=() [1/2]

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

◆ operator=() [2/2]

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

◆ operator==()

template<typename Point , typename Array >
bool lsst::afw::geom::BaseEndpoint< Point, Array >::operator== ( BaseEndpoint< PointT, ArrayT > 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 63 of file Endpoint.cc.

63 {
64 return this->getNAxes() == other.getNAxes() && typeid(*this) == typeid(other);
65}

◆ pointFromData()

lsst::geom::Point2D lsst::afw::geom::Point2Endpoint::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< PointT, ArrayT >.

Definition at line 137 of file Endpoint.cc.

137 {
138 const int nAxes = this->getNAxes();
139 this->_assertNAxes(this->_getNAxes(data));
141 for (int axInd = 0; axInd < nAxes; ++axInd) {
143 }
144 return result;
145}

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