LSST Applications g180d380827+770a9040cc,g2079a07aa2+86d27d4dc4,g2305ad1205+09cfdadad9,g2bbee38e9b+c6a8a0fb72,g337abbeb29+c6a8a0fb72,g33d1c0ed96+c6a8a0fb72,g3a166c0a6a+c6a8a0fb72,g3ddfee87b4+1ea5e09c42,g48712c4677+7e2ea9cd42,g487adcacf7+301d09421d,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+96fcb956a6,g64a986408d+23540ee355,g858d7b2824+23540ee355,g864b0138d7+aa38e45daa,g95921f966b+d83dc58ecd,g991b906543+23540ee355,g99cad8db69+7f13b58a93,g9c22b2923f+e2510deafe,g9ddcbc5298+9a081db1e4,ga1e77700b3+03d07e1c1f,gb0e22166c9+60f28cb32d,gb23b769143+23540ee355,gba4ed39666+c2a2e4ac27,gbb8dafda3b+49e7449578,gbd998247f1+585e252eca,gc120e1dc64+1bbfa184e1,gc28159a63d+c6a8a0fb72,gc3e9b769f7+385ea95214,gcf0d15dbbd+1ea5e09c42,gdaeeff99f8+f9a426f77a,ge6526c86ff+1bccc98490,ge79ae78c31+c6a8a0fb72,gee10cc3b42+585e252eca,w.2024.18
LSST Data Management Base Package
Loading...
Searching...
No Matches
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>
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
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) {
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
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
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()) {
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
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
T begin(T... args)
static int constexpr 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
T emplace_back(T... args)
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
AngleUnit constexpr radians
constant with units of radians
Definition Angle.h:109
T reserve(T... args)
T size(T... args)
T to_string(T... args)