LSST Applications g042eb84c57+730a74494b,g04e9c324dd+8c5ae1fdc5,g134cb467dc+1f1e3e7524,g199a45376c+0ba108daf9,g1fd858c14a+fa7d31856b,g210f2d0738+f66ac109ec,g262e1987ae+83a3acc0e5,g29ae962dfc+d856a2cb1f,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+a1e0c9f713,g47891489e3+0d594cb711,g4d44eb3520+c57ec8f3ed,g4d7b6aa1c5+f66ac109ec,g53246c7159+8c5ae1fdc5,g56a1a4eaf3+fd7ad03fde,g64539dfbff+f66ac109ec,g67b6fd64d1+0d594cb711,g67fd3c3899+f66ac109ec,g6985122a63+0d594cb711,g74acd417e5+3098891321,g786e29fd12+668abc6043,g81db2e9a8d+98e2ab9f28,g87389fa792+8856018cbb,g89139ef638+0d594cb711,g8d7436a09f+80fda9ce03,g8ea07a8fe4+760ca7c3fc,g90f42f885a+033b1d468d,g97be763408+a8a29bda4b,g99822b682c+e3ec3c61f9,g9d5c6a246b+0d5dac0c3d,ga41d0fce20+9243b26dd2,gbf99507273+8c5ae1fdc5,gd7ef33dd92+0d594cb711,gdab6d2f7ff+3098891321,ge410e46f29+0d594cb711,geaed405ab2+c4bbc419c6,gf9a733ac38+8c5ae1fdc5,w.2025.38
LSST Data Management Base Package
Loading...
Searching...
No Matches
PixelAreaBoundedField.cc
Go to the documentation of this file.
1/*
2 * This file is part of afw.
3 *
4 * Developed for the LSST Data Management System.
5 * This product includes software developed by the LSST Project
6 * (https://www.lsst.org).
7 * See the COPYRIGHT file at the top-level directory of this distribution
8 * for details of code ownership.
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
28
30
31namespace lsst {
32namespace afw {
33namespace table {
34namespace io {
35
36template std::shared_ptr<math::PixelAreaBoundedField>
38 std::shared_ptr<table::io::Persistable> const&
39 );
40
41} // namespace io
42} // namespace table
43
44namespace math {
45
47 lsst::geom::Box2I const &bbox,
49 lsst::geom::AngleUnit const & unit,
50 double scaling
51) : BoundedField(bbox),
52 _skyWcs(skyWcs),
53 _scaling(scaling)
54{
55 if (_skyWcs == nullptr) {
56 throw LSST_EXCEPT(
58 "SkyWcs passed to PixelAreaBoundedField is null."
59 );
60 }
61 _scaling /= std::pow((1.0*unit).asRadians(), 2);
62}
63
65 return std::pow(_skyWcs->getPixelScale(position).asRadians(), 2) * _scaling;
66}
67
68ndarray::Array<double, 1, 1> PixelAreaBoundedField::evaluate(
69 ndarray::Array<double const, 1> const & x,
70 ndarray::Array<double const, 1> const & y
71) const {
72 if (x.getShape() != y.getShape()) {
73 throw LSST_EXCEPT(
75 (boost::format("Inconsistent shapes in evaluate; %s != %s.") % x.getShape() % y.getShape()).str()
76 );
77 }
78 // Compute _skyWcs->pixelToSky at all of the given points in a single
79 // vectorized call, along with points one pixel away in x and y.
80 double constexpr side = 1.0;
81 std::size_t const n = x.size();
83 pixPoints.reserve(n*3);
84 for (std::size_t i = 0; i < n; ++i) {
85 pixPoints.emplace_back(x[i], y[i]);
86 pixPoints.emplace_back(x[i] + side, y[i]);
87 pixPoints.emplace_back(x[i], y[i] + side);
88 }
89 auto skyPoints = _skyWcs->pixelToSky(pixPoints);
90 // Work in 3-space to avoid RA wrapping and pole issues.
91 ndarray::Array<double, 1, 1> z = ndarray::allocate(x.getShape());
92 for (std::size_t i = 0; i < n; ++i) {
93 std::size_t j = i*3;
94 auto skyLL = skyPoints[j].getVector();
95 auto skyDx = skyPoints[j + 1].getVector() - skyLL;
96 auto skyDy = skyPoints[j + 2].getVector() - skyLL;
97 double skyAreaSq = skyDx.cross(skyDy).getSquaredNorm();
98 z[i] = _scaling * std::sqrt(skyAreaSq) / (side*side);
99 }
100 return z;
101}
102
104 return _skyWcs->isPersistable();
105}
106
110
112 auto rhsCasted = dynamic_cast<PixelAreaBoundedField const *>(&rhs);
113 if (!rhsCasted) return false;
114
115 return getBBox() == rhsCasted->getBBox() && *_skyWcs == *rhsCasted->_skyWcs &&
116 _scaling == rhsCasted->_scaling;
117}
118
121 os << "PixelAreaBoundedField(" << (*_skyWcs) << ", scaling=" << _scaling << ")";
122 return os.str();
123}
124
125
126namespace {
127
128struct PersistenceHelper {
129 table::Schema schema;
130 table::Box2IKey bbox;
131 table::Key<int> wcs;
132 table::Key<double> scaling;
133
134 static PersistenceHelper const & get() {
135 static PersistenceHelper const instance;
136 return instance;
137 }
138
139private:
140 PersistenceHelper() :
141 schema(),
142 bbox(table::Box2IKey::addFields(schema, "bbox", "Bounding box for field.", "pixel")),
143 wcs(schema.addField<int>("wcs", "Archive ID for SkyWcs instance.")),
144 scaling(schema.addField<double>("scaling",
145 "Scaling factor (including any transformation from rad^2."))
146 {}
147 PersistenceHelper(PersistenceHelper const &) = delete;
148 PersistenceHelper(PersistenceHelper &&) = delete;
149 PersistenceHelper & operator=(PersistenceHelper const &) = delete;
150 PersistenceHelper & operator=(PersistenceHelper &&) = delete;
151 ~PersistenceHelper() noexcept = default;
152};
153
154class PixelAreaBoundedFieldFactory : public table::io::PersistableFactory {
155public:
156 explicit PixelAreaBoundedFieldFactory(std::string const& name)
157 : afw::table::io::PersistableFactory(name) {}
158
159 std::shared_ptr<table::io::Persistable> read(InputArchive const& archive,
160 CatalogVector const& catalogs) const override {
161 LSST_ARCHIVE_ASSERT(catalogs.size() == 1u);
162 LSST_ARCHIVE_ASSERT(catalogs.front().size() == 1u);
163 table::BaseRecord const& record = catalogs.front().front();
164 auto const & keys = PersistenceHelper::get();
165 LSST_ARCHIVE_ASSERT(record.getSchema() == keys.schema);
166 lsst::geom::Box2I bbox(record.get(keys.bbox));
167 auto wcs = archive.get<afw::geom::SkyWcs>(record.get(keys.wcs));
168 double scaling = record.get(keys.scaling);
170 }
171};
172
173std::string getPixelAreaBoundedFieldPersistenceName() { return "PixelAreaBoundedField"; }
174
175PixelAreaBoundedFieldFactory registration(getPixelAreaBoundedFieldPersistenceName());
176
177} // namespace
178
180 return getPixelAreaBoundedFieldPersistenceName();
181}
182
183std::string PixelAreaBoundedField::getPythonModule() const { return "lsst.afw.math"; }
184
186 auto const & keys = PersistenceHelper::get();
187 table::BaseCatalog catalog = handle.makeCatalog(keys.schema);
188 std::shared_ptr<table::BaseRecord> record = catalog.addNew();
189 record->set(keys.bbox, getBBox());
190 record->set(keys.wcs, handle.put(_skyWcs));
191 record->set(keys.scaling, _scaling);
192 handle.saveCatalog(catalog);
193}
194
195} // namespace math
196} // namespace afw
197} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
A BoundedField that gives the amount a pixel is distorted at each point.
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition Persistable.h:48
lsst::geom::Box2I getBBox() const
Return the bounding box that defines the region where the field is valid.
BoundedField(BoundedField const &)=default
double evaluate(lsst::geom::Point2D const &position) const override
Evaluate the field at the given point.
std::shared_ptr< BoundedField > operator*(double const scale) const override
Return a scaled BoundedField.
bool isPersistable() const noexcept override
PixelAreaBoundedField is persistable if and only if the nested SkyWcs is.
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
PixelAreaBoundedField(lsst::geom::Box2I const &bbox, std::shared_ptr< geom::SkyWcs const > skyWcs, lsst::geom::AngleUnit const &unit=lsst::geom::radians, double scaling=1.0)
Create a PixelAreaBoundedField from a SkyWcs.
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
bool operator==(BoundedField const &rhs) const override
BoundedFields (of the same sublcass) are equal if their bounding boxes and parameters are equal.
A class used as a handle to a particular field in a table.
Definition Key.h:53
Defines the fields and offsets for a table.
Definition Schema.h:51
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
int put(Persistable const *obj, bool permissive=false)
Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArc...
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
io::OutputArchiveHandle OutputArchiveHandle
A class used to convert scalar POD types such as double to Angle.
Definition Angle.h:71
An integer coordinate rectangle.
Definition Box.h:55
Reports invalid arguments.
Definition Runtime.h:66
T emplace_back(T... args)
T make_shared(T... args)
CatalogT< BaseRecord > BaseCatalog
Definition fwd.h:72
BoxKey< lsst::geom::Box2I > Box2IKey
Definition aggregates.h:283
AngleUnit constexpr radians
constant with units of radians
Definition Angle.h:109
Point< double, 2 > Point2D
Definition Point.h:324
T pow(T... args)
T reserve(T... args)
T sqrt(T... args)
T str(T... args)
std::shared_ptr< table::io::Persistable > read(table::io::InputArchive const &archive, table::io::CatalogVector const &catalogs) const override