LSSTApplications  19.0.0-14-gb0260a2+4cd158d902,20.0.0+126303c00d,20.0.0+2f3d0e5c40,20.0.0+36ef800059,20.0.0+8d0ab3d2aa,20.0.0+bebc1f60e8,20.0.0+e271cb8385,20.0.0+e2e26847c2,20.0.0+eaf69e532d,20.0.0-1-g10df615+d6cc7df41f,20.0.0-1-g253301a+36ef800059,20.0.0-1-g2b7511a+bebc1f60e8,20.0.0-1-g4d801e7+6fee74fd2f,20.0.0-1-g5b95a8c+6c6c03acd5,20.0.0-1-g660595b+f45b7d88f4,20.0.0-1-gc96f8cb+d4517efcba,20.0.0-1-gd1c87d7+85c46248f3,20.0.0-1-gedffbd8+17eaf5db5c,20.0.0-16-g111fe95+d4517efcba,20.0.0-16-g233ea98+c27695f312,20.0.0-17-ga9337b4+cbc55e0393,20.0.0-19-gcdd82e7+317a1f5500,20.0.0-2-g4dae9ad+d4517efcba,20.0.0-2-g7818986+85c46248f3,20.0.0-2-gec03fae+ff10c6d78d,20.0.0-29-g26d13349+2d5e4f2fd7,20.0.0-3-g4cc78c6+63636aeed8,20.0.0-3-g6a8623c+317a1f5500,20.0.0-3-g750bffe+699cb77157,20.0.0-4-gfea843c+f45b7d88f4,20.0.0-5-g357b56b+f45b7d88f4,20.0.0-5-gfcebe35+ef19f498ed,20.0.0-54-gba713e9+a7d430d1e1,20.0.0-7-gcda7bf1+31d79aecbb,20.0.0-9-g61a2a9a3d+14f89e4eca,20.0.0-9-g70cec07d+482e8042f7,w.2020.40
LSSTDataManagementBasePackage
frame.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  *
4  * This product includes software developed by the
5  * LSST Project (http://www.lsst.org/).
6  * See the COPYRIGHT file
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 <https://www.lsstcorp.org/LegalNotices/>.
21  */
22 #include <pybind11/pybind11.h>
23 #include <pybind11/stl.h>
24 
25 #include <vector>
26 
27 #include "astshim/CmpFrame.h"
28 #include "astshim/Frame.h"
29 #include "astshim/FrameSet.h"
30 #include "astshim/Mapping.h"
31 
32 namespace py = pybind11;
33 using namespace pybind11::literals;
34 
35 namespace ast {
36 namespace {
37 
38 void wrapDirectionPoint(py::module &mod) {
39  py::class_<DirectionPoint> cls(mod, "DirectionPoint");
40 
41  cls.def(py::init<double, PointD>(), "direction"_a, "point"_a);
42 
43  cls.def_readwrite("direction", &DirectionPoint::direction);
44  cls.def_readwrite("point", &DirectionPoint::point);
45 }
46 
47 void wrapNReadValue(py::module &mod) {
48  py::class_<NReadValue> cls(mod, "NReadValue");
49 
50  cls.def(py::init<int, double>(), "nread"_a, "value"_a);
51 
52  cls.def_readwrite("nread", &NReadValue::nread);
53  cls.def_readwrite("value", &NReadValue::value);
54 }
55 
56 void wrapResolvedPoint(py::module &mod) {
57  py::class_<ResolvedPoint> cls(mod, "ResolvedPoint");
58 
59  cls.def(py::init<int>(), "naxes"_a);
60 
61  cls.def_readwrite("point", &ResolvedPoint::point);
62  cls.def_readwrite("d1", &ResolvedPoint::d1);
63  cls.def_readwrite("d2", &ResolvedPoint::d2);
64 }
65 
66 void wrapFrameMapping(py::module &mod) {
67  py::class_<FrameMapping> cls(mod, "FrameMapping");
68 
69  cls.def(py::init<std::shared_ptr<Frame>, std::shared_ptr<Mapping>>(), "frame"_a, "mapping"_a);
70 
71  cls.def_readwrite("frame", &FrameMapping::frame);
72  cls.def_readwrite("mapping", &FrameMapping::mapping);
73 }
74 
75 PYBIND11_MODULE(frame, mod) {
76  py::module::import("astshim.mapping");
77 
78  wrapDirectionPoint(mod);
79  wrapNReadValue(mod);
80  wrapResolvedPoint(mod);
81  wrapFrameMapping(mod);
82 
83  py::class_<Frame, std::shared_ptr<Frame>, Mapping> cls(mod, "Frame");
84 
85  cls.def(py::init<int, std::string const &>(), "naxes"_a, "options"_a = "");
86  cls.def(py::init<Frame const &>());
87 
88  cls.def_property("activeUnit", &Frame::getActiveUnit, &Frame::setActiveUnit);
89  cls.def_property("alignSystem", &Frame::getAlignSystem, &Frame::setAlignSystem);
90  cls.def_property("domain", &Frame::getDomain, &Frame::setDomain);
91  cls.def_property("dut1", &Frame::getDut1, &Frame::setDut1);
92  cls.def_property("epoch", &Frame::getEpoch, py::overload_cast<double>(&Frame::setEpoch));
93  cls.def_property("matchEnd", &Frame::getMatchEnd, &Frame::setMatchEnd);
94  cls.def_property("maxAxes", &Frame::getMaxAxes, &Frame::setMaxAxes);
95  cls.def_property("minAxes", &Frame::getMinAxes, &Frame::setMinAxes);
96  cls.def_property_readonly("nAxes", &Frame::getNAxes);
97  cls.def_property("obsAlt", &Frame::getObsAlt, &Frame::setObsAlt);
98  cls.def_property("obsLat", &Frame::getObsLat, &Frame::setObsLat);
99  cls.def_property("obsLon", &Frame::getObsLon, &Frame::setObsLon);
100  cls.def_property("permute", &Frame::getPermute, &Frame::setPermute);
101  cls.def_property("preserveAxes", &Frame::getPreserveAxes, &Frame::setPreserveAxes);
102  cls.def_property("system", &Frame::getSystem, &Frame::setSystem);
103  cls.def_property("title", &Frame::getTitle, &Frame::setTitle);
104 
105  cls.def("copy", &Frame::copy);
106  cls.def("angle", &Frame::angle, "a"_a, "b"_a, "c"_a);
107  cls.def("axAngle", &Frame::axAngle, "a"_a, "b"_a, "axis"_a);
108  cls.def("axDistance", &Frame::axDistance, "axis"_a, "v1"_a, "v2"_a);
109  cls.def("axOffset", &Frame::axOffset, "axis"_a, "v1"_a, "dist"_a);
110  cls.def("convert", &Frame::convert, "to"_a, "domainlist"_a = "");
111  cls.def("distance", &Frame::distance, "point1"_a, "point2"_a);
112  cls.def("findFrame", &Frame::findFrame, "template"_a, "domainlist"_a = "");
113  cls.def("format", &Frame::format, "axis"_a, "value"_a);
114  cls.def("getBottom", &Frame::getBottom, "axis"_a);
115  cls.def("getDigits", py::overload_cast<>(&Frame::getDigits, py::const_));
116  cls.def("getDigits", py::overload_cast<int>(&Frame::getDigits, py::const_), "axis"_a);
117  cls.def("getDirection", &Frame::getDirection, "axis"_a);
118  cls.def("getFormat", &Frame::getFormat, "axis"_a);
119  cls.def("getInternalUnit", &Frame::getInternalUnit);
120  cls.def("getLabel", &Frame::getLabel);
121  cls.def("getSymbol", &Frame::getSymbol, "axis"_a);
122  cls.def("getNormUnit", &Frame::getNormUnit, "axis"_a);
123  cls.def("getSymbol", &Frame::getSymbol, "axis"_a);
124  cls.def("getTop", &Frame::getTop, "axis"_a);
125  cls.def("getUnit", &Frame::getUnit, "axis"_a);
126  cls.def("intersect", &Frame::intersect, "a1"_a, "a2"_a, "b1"_a, "b2"_a);
127  cls.def("matchAxes", &Frame::matchAxes, "other"_a);
128  cls.def("under", &Frame::under, "next"_a);
129  cls.def("norm", &Frame::norm, "value"_a);
130  cls.def("offset", &Frame::offset, "point1"_a, "point2"_a, "offset"_a);
131  cls.def("offset2", &Frame::offset2, "point1"_a, "angle"_a, "offset"_a);
132  cls.def("permAxes", &Frame::permAxes, "perm"_a);
133  cls.def("pickAxes", &Frame::pickAxes, "axes"_a);
134  cls.def("resolve", &Frame::resolve, "point1"_a, "point2"_a, "point3"_a);
135  cls.def("setDigits", py::overload_cast<int>(&Frame::setDigits), "digits"_a);
136  cls.def("setDigits", py::overload_cast<int, int>(&Frame::setDigits), "axis"_a, "digits"_a);
137  cls.def("setDirection", &Frame::setDirection, "direction"_a, "axis"_a);
138  // keep setEpoch(string); use the epoch property to deal with it as a float
139  cls.def("setEpoch", py::overload_cast<std::string const &>(&Frame::setEpoch), "epoch"_a);
140  cls.def("setFormat", &Frame::setFormat, "axis"_a,
141  "format"_a
142  "format");
143  cls.def("setLabel", &Frame::setLabel, "axis"_a, "label"_a);
144  cls.def("setSymbol", &Frame::setSymbol, "axis"_a, "symbol"_a);
145  cls.def("setTop", &Frame::setTop, "axis"_a, "top"_a);
146  cls.def("setUnit", &Frame::setUnit, "axis"_a, "unit"_a);
147  cls.def("unformat", &Frame::unformat, "axis"_a, "str"_a);
148 }
149 
150 } // namespace
151 } // namespace ast
FrameSet.h
std::shared_ptr
STL class.
Frame.h
lsst::afw::math::details::norm
T norm(const T &x)
Definition: Integrate.h:194
lsst.pex.config.history.format
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
angle
table::Key< double > angle
Definition: FunctionLibrary.cc:22
lsst::afw::geom.transform.transformContinued.cls
cls
Definition: transformContinued.py:33
CmpFrame.h
lsst::afw::table._match.distance
distance
Definition: _match.py:80
cmd.commands.convert
def convert(*args, **kwargs)
Definition: commands.py:61
ast
AST wrapper classes and functions.
Definition: attributes_channel.dox:1
Mapping.h
pybind11
Definition: _GenericMap.cc:40
lsst::utils.tests.init
def init()
Definition: tests.py:59
lsst::meas::modelfit.psf.psfContinued.module
module
Definition: psfContinued.py:42
lsst::afw::cameraGeom::PYBIND11_MODULE
PYBIND11_MODULE(camera, mod)
Definition: camera.cc:133