LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
Endpoint.cc
Go to the documentation of this file.
1/*
2 * LSST Data Management System
3 * Copyright 2008-2017 LSST Corporation.
4 *
5 * This product includes software developed by the
6 * LSST Project (http://www.lsst.org/).
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the LSST License Statement and
19 * the GNU General Public License along with this program. If not,
20 * see <http://www.lsstcorp.org/LegalNotices/>.
21 */
22
23#include <ostream>
24#include <sstream>
25#include <string>
26#include <memory>
27#include <vector>
28
29#include "astshim.h"
30#include "lsst/geom/Point.h"
33
34namespace lsst {
35namespace afw {
36namespace geom {
37namespace {
38
39/*
40Get a pointer to a frame
41
42If frame is a FrameSet then return a copy of its current frame, else return the original argument
43*/
45 auto frameSetPtr = std::dynamic_pointer_cast<ast::FrameSet>(framePtr);
46 if (frameSetPtr) {
47 return frameSetPtr->getFrame(ast::FrameSet::CURRENT);
48 }
49 return framePtr;
50}
51
52} // namespace
53
54template <typename Point, typename Array>
55BaseEndpoint<Point, Array>::BaseEndpoint(int nAxes) : _nAxes(nAxes) {
56 if (nAxes <= 0) {
58 "nAxes = " + std::to_string(nAxes) + "; must be > 0");
59 }
60}
61
62template <typename Point, typename Array>
63bool BaseEndpoint<Point, Array>::operator==(BaseEndpoint const& other) const noexcept {
64 return this->getNAxes() == other.getNAxes() && typeid(*this) == typeid(other);
65}
66
67template <typename Point, typename Array>
69 return std::make_shared<ast::Frame>(getNAxes());
70}
71
72template <typename Point, typename Array>
74 if (nAxes != this->getNAxes()) {
76 os << "number of axes provided " << nAxes << " != " << this->getNAxes() << " required";
77 throw std::invalid_argument(os.str());
78 }
79}
80
81template <typename Point>
83 return arr.size();
84}
85
87 this->_assertNAxes(_getNAxes(point));
88 return point;
89}
90
91ndarray::Array<double, 2, 2> GenericEndpoint::dataFromArray(Array const& arr) const {
92 this->_assertNAxes(_getNAxes(arr));
93 return ndarray::copy(arr);
94}
95
97 this->_assertNAxes(data.size());
98 return data;
99}
100
101ndarray::Array<double, 2, 2> GenericEndpoint::arrayFromData(ndarray::Array<double, 2, 2> const& data) const {
102 this->_assertNAxes(_getNAxes(data));
103 return ndarray::copy(data);
104}
105
107 if (nAxes != 2) {
109 os << "nAxes = " << nAxes << " != 2";
111 }
112}
113
115 const int nAxes = this->getNAxes();
117 for (int axInd = 0; axInd < nAxes; ++axInd) {
118 result[axInd] = point[axInd];
119 }
120 return result;
121}
122
123ndarray::Array<double, 2, 2> Point2Endpoint::dataFromArray(Array const& arr) const {
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}
136
138 const int nAxes = this->getNAxes();
139 this->_assertNAxes(this->_getNAxes(data));
141 for (int axInd = 0; axInd < nAxes; ++axInd) {
142 result[axInd] = data[axInd];
143 }
144 return result;
145}
146
148 ndarray::Array<double, 2, 2> const& data) const {
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}
158
160 // use getCurrentFrame because if framePtr points to a FrameSet we want the name of its current frame
161 std::string className = getCurrentFrame(framePtr)->getClassName();
162 if (className != "Frame") {
164 os << "frame is a " << className << ", not a Frame";
166 }
167}
168
170 if (nAxes != 2) {
172 os << "nAxes = " << nAxes << " != 2";
174 }
176
178 const int nAxes = this->getNAxes();
180 for (int axInd = 0; axInd < nAxes; ++axInd) {
181 result[axInd] = point[axInd].asRadians();
182 }
183 return result;
184}
185
186ndarray::Array<double, 2, 2> SpherePointEndpoint::dataFromArray(Array const& arr) const {
187 const int nAxes = this->getNAxes();
188 const int nPoints = this->getNPoints(arr);
189 ndarray::Array<double, 2, 2> data = ndarray::allocate(ndarray::makeVector(nAxes, nPoints));
190 auto dataColIter = data.transpose().begin();
191 for (auto const& point : arr) {
192 for (int axInd = 0; axInd < nAxes; ++axInd) {
193 (*dataColIter)[axInd] = point[axInd].asRadians();
194 }
195 ++dataColIter;
196 }
197 return data;
198}
199
201 this->_assertNAxes(this->_getNAxes(data));
203}
204
206 ndarray::Array<double, 2, 2> const& data) const {
207 this->_assertNAxes(this->_getNAxes(data));
208 int const nPoints = this->_getNPoints(data);
209 Array array;
210 array.reserve(nPoints);
211 for (auto const& dataCol : data.transpose()) {
212 array.emplace_back(lsst::geom::SpherePoint(dataCol[0], dataCol[1], lsst::geom::radians));
213 }
214 return array;
215}
216
218 return std::make_shared<ast::SkyFrame>();
219}
220
222 // use getCurrentFrame because if framePtr points to a FrameSet we want its current frame
223 auto currentFramePtr = getCurrentFrame(framePtr);
224 auto skyFramePtr = std::dynamic_pointer_cast<ast::SkyFrame>(currentFramePtr);
225 if (!skyFramePtr) {
227 os << "frame is a " << currentFramePtr->getClassName() << ", not a SkyFrame";
229 }
230 if (skyFramePtr->getLonAxis() != 1) {
231 // axes are swapped to Lat, Lon; swap them back to the usual Lon, Lat
232 // warning: be sure to call permAxes on the original framePtr argument,
233 // as otherwise it will have no effect if framePtr points to a FrameSet
234 std::vector<int> perm = {2, 1};
235 framePtr->permAxes(perm);
236 }
237}
238
240 os << "GenericEndpoint(" << endpoint.getNAxes() << ")";
241 return os;
242}
243
245 os << "Point2Endpoint()";
246 return os;
247}
248
250 os << "SpherePointEndpoint()";
251 return os;
252}
253
254// explicit instantiations
255template class BaseEndpoint<std::vector<double>, ndarray::Array<double, 2, 2>>;
256template class BaseEndpoint<lsst::geom::Point2D, std::vector<lsst::geom::Point2D>>;
257template class BaseEndpoint<lsst::geom::SpherePoint, std::vector<lsst::geom::SpherePoint>>;
258
259template class BaseVectorEndpoint<lsst::geom::Point2D>;
260template class BaseVectorEndpoint<lsst::geom::SpherePoint>;
261
262} // namespace geom
263} // namespace afw
264} // namespace lsst
py::object result
Definition: _schema.cc:429
char * data
Definition: BaseRecord.cc:61
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
std::ostream * os
Definition: Schema.cc:557
static constexpr int CURRENT
index of current frame
Definition: FrameSet.h:105
Virtual base class for endpoints, which are helper classes for Transform.
Definition: Endpoint.h:67
int _getNPoints(ndarray::Array< double, 2, 2 > const &data) const
Definition: Endpoint.h:183
virtual std::shared_ptr< ast::Frame > makeFrame() const
Create a Frame that can be used with this end point in a Transform.
Definition: Endpoint.cc:68
BaseEndpoint(BaseEndpoint const &)=default
virtual bool operator==(BaseEndpoint const &other) const noexcept
Determine whether two endpoints represent the same conversion.
Definition: Endpoint.cc:63
void _assertNAxes(int nAxes) const
Definition: Endpoint.cc:73
int _getNAxes(ndarray::Array< double, 2, 2 > const &data) const
Definition: Endpoint.h:177
Base class for endpoints with Array = std::vector<Point> where Point has 2 dimensions.
Definition: Endpoint.h:195
int getNPoints(Array const &arr) const override
Return the number of points in an array.
Definition: Endpoint.cc:82
A generic endpoint for data in the format used by ast::Mapping.
Definition: Endpoint.h:226
std::vector< double > dataFromPoint(Point const &point) const override
Get raw data from a single point.
Definition: Endpoint.cc:86
Array arrayFromData(ndarray::Array< double, 2, 2 > const &data) const override
Get an array of points from raw data.
Definition: Endpoint.cc:101
Point pointFromData(std::vector< double > const &data) const override
Get a single point from raw data.
Definition: Endpoint.cc:96
ndarray::Array< double, 2, 2 > dataFromArray(Array const &arr) const override
Get raw data from an array of points.
Definition: Endpoint.cc:91
An endpoint for lsst::geom::Point2D.
Definition: Endpoint.h:261
Point2Endpoint()
Construct a Point2Endpoint.
Definition: Endpoint.h:271
ndarray::Array< double, 2, 2 > dataFromArray(Array const &arr) const override
Get raw data from an array of points.
Definition: Endpoint.cc:123
std::vector< double > dataFromPoint(Point const &point) const override
Get raw data from a single point.
Definition: Endpoint.cc:114
Point pointFromData(std::vector< double > const &data) const override
Get a single point from raw data.
Definition: Endpoint.cc:137
Array arrayFromData(ndarray::Array< double, 2, 2 > const &data) const override
Get an array of points from raw data.
Definition: Endpoint.cc:147
void normalizeFrame(std::shared_ptr< ast::Frame > framePtr) const override
Check that framePtr points to a Frame, not a subclass.
Definition: Endpoint.cc:159
An endpoint for lsst::geom::SpherePoint.
Definition: Endpoint.h:315
ndarray::Array< double, 2, 2 > dataFromArray(Array const &arr) const override
Get raw data from an array of points.
Definition: Endpoint.cc:186
std::vector< double > dataFromPoint(Point const &point) const override
Get raw data from a single point.
Definition: Endpoint.cc:177
SpherePointEndpoint()
Construct a SpherePointEndpoint.
Definition: Endpoint.h:325
Array arrayFromData(ndarray::Array< double, 2, 2 > const &data) const override
Get an array of points from raw data.
Definition: Endpoint.cc:205
std::shared_ptr< ast::Frame > makeFrame() const override
Create a Frame that can be used with this end point in a Transform.
Definition: Endpoint.cc:217
Point pointFromData(std::vector< double > const &data) const override
Get a single point from raw data.
Definition: Endpoint.cc:200
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.
Definition: Endpoint.cc:221
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
Reports invalid arguments.
Definition: Runtime.h:66
std::ostream & operator<<(std::ostream &os, GenericEndpoint const &endpoint)
Print "GenericEndpoint(_n_)" to the ostream where _n_ is the number of axes, e.g. "GenericAxes(4)".
Definition: Endpoint.cc:239
lsst::geom::SpherePoint SpherePoint
Definition: misc.h:34
Point< double, 2 > Point2D
Definition: Point.h:324
constexpr AngleUnit radians
constant with units of radians
Definition: Angle.h:109
A base class for image defects.
T size(T... args)
T to_string(T... args)