LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
SkyWcs.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2017 AURA/LSST.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #ifndef LSST_AFW_GEOM_SKYWCS_H
25 #define LSST_AFW_GEOM_SKYWCS_H
26 
27 #include <memory>
28 #include <utility>
29 #include <vector>
30 
31 #include "Eigen/Core"
32 #include "astshim.h"
33 #include "ndarray.h"
34 
37 #include "lsst/geom/Angle.h"
38 #include "lsst/geom/Point.h"
39 #include "lsst/afw/geom/Endpoint.h"
43 
44 namespace lsst {
45 namespace afw {
46 namespace geom {
47 
61 Eigen::Matrix2d makeCdMatrix(lsst::geom::Angle const &scale,
63  bool flipX = false);
64 
117 class SkyWcs final : public table::io::PersistableFacade<SkyWcs>, public typehandling::Storable {
118 public:
119  SkyWcs(SkyWcs const &) = default;
120  SkyWcs(SkyWcs &&) = default;
121  SkyWcs &operator=(SkyWcs const &) = delete;
122  SkyWcs &operator=(SkyWcs &&) = delete;
123  ~SkyWcs() override = default;
124 
135  bool operator==(SkyWcs const &other) const;
136  bool operator!=(SkyWcs const &other) const { return !(*this == other); }
137 
149  explicit SkyWcs(daf::base::PropertySet &metadata, bool strip = false);
150 
163  explicit SkyWcs(ast::FrameDict const &frameDict);
164 
173 
190  std::shared_ptr<daf::base::PropertyList> getFitsMetadata(bool precise = false) const;
191 
200 
208  lsst::geom::Angle getPixelScale() const { return _pixelScaleAtOrigin; };
209 
215  lsst::geom::Point2D getPixelOrigin() const { return _pixelOrigin; };
216 
223 
229  Eigen::Matrix2d getCdMatrix(lsst::geom::Point2D const &pixel) const;
230 
236  Eigen::Matrix2d getCdMatrix() const;
237 
242 
252 
258 
266  bool isFlipped() const;
267 
268  bool isPersistable() const noexcept override { return true; }
269 
283  lsst::geom::AngleUnit const &skyUnit) const;
284 
298  lsst::geom::AngleUnit const &skyUnit) const;
299 
313  lsst::geom::AngleUnit const &skyUnit) const;
314 
328  lsst::geom::AngleUnit const &skyUnit) const;
329 
335  return _transform->applyForward(pixel);
336  }
337  lsst::geom::SpherePoint pixelToSky(double x, double y) const {
338  return pixelToSky(lsst::geom::Point2D(x, y));
339  }
341  return _transform->applyForward(pixels);
342  }
344 
350  return _transform->applyInverse(sky);
351  }
353  return _transform->applyInverse(sky);
354  }
356 
358 
364  bool hasFitsApproximation() const { return false; }
365 
371  bool isFits() const;
372 
379 
382 
400  void writeStream(std::ostream &os) const;
401 
403  std::string writeString() const;
404 
405  // Override methods required by afw::typehandling::Storable
406 
409 
411  std::string toString() const override;
412 
418  bool equals(typehandling::Storable const &other) const noexcept override;
419 
420 protected:
421  // Override methods required by afw::table::io::Persistable
422  std::string getPersistenceName() const override;
423  std::string getPythonModule() const override;
424  void write(OutputArchiveHandle &handle) const override;
425 
426 private:
427  /*
428  * Construct a SkyWcs from a shared pointer to an ast::FrameDict
429  *
430  * The frameDict may be modified.
431  */
432  explicit SkyWcs(std::shared_ptr<ast::FrameDict> frameDict);
433 
434  /*
435  * Check a FrameDict to see if it can safely be used for a SkyWcs
436  * Return a copy so that it can be used as an argument to the SkyWcs(shared_ptr<FrameDict>) constructor
437  */
438  std::shared_ptr<ast::FrameDict> _checkFrameDict(ast::FrameDict const &frameDict) const;
439 
440  // the full FrameDict, for operations that need intermediate frames
442  // cached transform from _frameDict, for fast computation of pixels<->sky
444  lsst::geom::Point2D _pixelOrigin; // cached pixel origin
445  lsst::geom::Angle _pixelScaleAtOrigin; // cached pixel scale at pixel origin
446 
447  /*
448  * Implementation for the overloaded public linearizePixelToSky methods, requiring both a pixel coordinate
449  * and the corresponding sky coordinate.
450  */
451  lsst::geom::AffineTransform _linearizePixelToSky(lsst::geom::Point2D const &pix,
452  lsst::geom::SpherePoint const &coord,
453  lsst::geom::AngleUnit const &skyUnit) const;
454 
455  /*
456  * Implementation for the overloaded public linearizeSkyToPixel methods, requiring both a pixel coordinate
457  * and the corresponding sky coordinate.
458  */
459  lsst::geom::AffineTransform _linearizeSkyToPixel(lsst::geom::Point2D const &pix,
460  lsst::geom::SpherePoint const &coord,
461  lsst::geom::AngleUnit const &skyUnit) const;
462 
464  void _computeCache() {
465  _transform = std::make_shared<TransformPoint2ToSpherePoint>(*_frameDict->getMapping(), true);
466  _pixelOrigin = skyToPixel(getSkyOrigin());
467  _pixelScaleAtOrigin = getPixelScale(_pixelOrigin);
468  }
469 };
470 
479 std::shared_ptr<SkyWcs> makeFlippedWcs(SkyWcs const &wcs, bool flipLR, bool flipTB,
480  lsst::geom::Point2D const &center);
481 
509  bool modifyActualPixels);
510 
527 
539  Eigen::Matrix2d const &cdMatrix, std::string const &projection = "TAN");
540 
558  lsst::geom::Angle const &orientation, bool flipX,
559  lsst::geom::SpherePoint const &boresight,
560  std::string const &projection = "TAN");
561 
574  Eigen::Matrix2d const &cdMatrix, Eigen::MatrixXd const &sipA,
575  Eigen::MatrixXd const &sipB);
576 
591  Eigen::Matrix2d const &cdMatrix, Eigen::MatrixXd const &sipA,
592  Eigen::MatrixXd const &sipB, Eigen::MatrixXd const &sipAp,
593  Eigen::MatrixXd const &sipBp);
606 
611  bool simplify = true);
612 
619  bool simplify = true);
620 
627 
628 } // namespace geom
629 } // namespace afw
630 } // namespace lsst
631 
632 #endif
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
std::shared_ptr< SkyWcs > getTanWcs(lsst::geom::Point2D const &pixel) const
Get a local TAN WCS approximation to this WCS at the specified pixel position.
Definition: SkyWcs.cc:205
lsst::geom::Point2D skyToPixel(lsst::geom::SpherePoint const &sky) const
Compute pixel position(s) from sky position(s)
Definition: SkyWcs.h:349
bool isPersistable() const noexcept override
Return true if this particular object can be persisted using afw::table::io.
Definition: SkyWcs.h:268
An object passed to Persistable::write to allow it to persist itself.
An affine coordinate transformation consisting of a linear transformation and an offset.
lsst::geom::SpherePoint pixelToSky(lsst::geom::Point2D const &pixel) const
Compute sky position(s) from pixel position(s)
Definition: SkyWcs.h:334
bool isFits() const
Return true getFitsMetadata(true) will succeed, false if not.
Definition: SkyWcs.cc:248
table::PointKey< double > crpix
Definition: OldWcs.cc:131
Interface supporting iteration over heterogenous containers.
Definition: Storable.h:56
def scale(algorithm, min, max=None, frame=None)
Definition: ds9.py:109
int y
Definition: SpanSet.cc:49
std::shared_ptr< SkyWcs > makeModifiedWcs(TransformPoint2ToPoint2 const &pixelTransform, SkyWcs const &wcs, bool modifyActualPixels)
Create a new SkyWcs whose pixels are transformed by pixelTransform, as described below.
Definition: SkyWcs.cc:451
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
Definition: SkyWcs.cc:344
table::PointKey< double > crval
Definition: OldWcs.cc:130
std::vector< lsst::geom::SpherePoint > pixelToSky(std::vector< lsst::geom::Point2D > const &pixels) const
Compute sky position(s) from pixel position(s)
Definition: SkyWcs.h:340
lsst::geom::SpherePoint getSkyOrigin() const
Get the sky origin, the celestial fiducial point.
Definition: SkyWcs.cc:186
~SkyWcs() override=default
bool equals(typehandling::Storable const &other) const noexcept override
Compare this object to another Storable.
Definition: SkyWcs.cc:338
STL class.
std::shared_ptr< const ast::FrameDict > getFrameDict() const
Get the contained FrameDict.
Definition: SkyWcs.cc:246
A class representing an angle.
Definition: Angle.h:127
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:71
STL class.
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: SkyWcs.cc:342
Eigen::Matrix2d getCdMatrix() const
Get the 2x2 CD matrix at the pixel origin.
Definition: SkyWcs.cc:203
std::shared_ptr< const TransformPoint2ToSpherePoint > getTransform() const
Get a TransformPoint2ToSpherePoint that transforms pixels to sky in the forward direction and sky to ...
Definition: SkyWcs.h:257
AngleUnit constexpr degrees
constant with units of degrees
Definition: Angle.h:109
A base class for image defects.
bool hasFitsApproximation() const
Does this SkyWcs have an approximate SkyWcs that can be represented as standard FITS WCS...
Definition: SkyWcs.h:364
std::shared_ptr< SkyWcs > makeFlippedWcs(SkyWcs const &wcs, bool flipLR, bool flipTB, lsst::geom::Point2D const &center)
Return a copy of a FITS-WCS with pixel positions flipped around a specified center.
Definition: SkyWcs.cc:432
std::string toString() const override
Create a string representation of this object.
Definition: SkyWcs.cc:336
static std::shared_ptr< SkyWcs > readStream(std::istream &is)
Deserialize a SkyWcs from an input stream.
Definition: SkyWcs.cc:288
lsst::geom::AffineTransform linearizePixelToSky(lsst::geom::SpherePoint const &coord, lsst::geom::AngleUnit const &skyUnit) const
Return the local linear approximation to pixelToSky at a point given in sky coordinates.
Definition: SkyWcs.cc:259
std::vector< lsst::geom::Point2D > skyToPixel(std::vector< lsst::geom::SpherePoint > const &sky) const
Compute pixel position(s) from sky position(s)
Definition: SkyWcs.h:352
static std::string getShortClassName()
Definition: SkyWcs.cc:278
std::shared_ptr< TransformPoint2ToPoint2 > getPixelToIntermediateWorldCoords(SkyWcs const &wcs, bool simplify=true)
Return a transform from pixel coordinates to intermediate world coordinates.
Definition: SkyWcs.cc:524
std::shared_ptr< SkyWcs > makeTanSipWcs(lsst::geom::Point2D const &crpix, lsst::geom::SpherePoint const &crval, Eigen::Matrix2d const &cdMatrix, Eigen::MatrixXd const &sipA, Eigen::MatrixXd const &sipB)
Construct a TAN-SIP SkyWcs with forward SIP distortion terms and an iterative inverse.
Definition: SkyWcs.cc:503
std::shared_ptr< TransformPoint2ToSpherePoint > getIntermediateWorldCoordsToSky(SkyWcs const &wcs, bool simplify=true)
Return a transform from intermediate world coordinates to sky.
Definition: SkyWcs.cc:518
double x
std::shared_ptr< typehandling::Storable > cloneStorable() const override
Create a new SkyWcs that is a copy of this one.
Definition: SkyWcs.cc:332
std::shared_ptr< RecordT > src
Definition: Match.cc:48
std::ostream & operator<<(std::ostream &os, Storable const &storable)
Output operator for Storable.
Definition: Storable.h:159
std::shared_ptr< SkyWcs > copyAtShiftedPixelOrigin(lsst::geom::Extent2D const &shift) const
Return a copy of this SkyWcs with the pixel origin shifted by the specified amount.
Definition: SkyWcs.cc:212
bool operator!=(SkyWcs const &other) const
Definition: SkyWcs.h:136
std::shared_ptr< TransformPoint2ToPoint2 > makeWcsPairTransform(SkyWcs const &src, SkyWcs const &dst)
A Transform obtained by putting two SkyWcs objects "back to back".
Definition: SkyWcs.cc:152
STL class.
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
static std::shared_ptr< SkyWcs > readString(std::string &str)
Deserialize a SkyWcs from a string, using the same format as readStream.
Definition: SkyWcs.cc:316
lsst::geom::Point2D getPixelOrigin() const
Get the pixel origin, in pixels, using the LSST convention.
Definition: SkyWcs.h:215
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: SkyWcs.cc:346
SkyWcs(SkyWcs const &)=default
Class for storing generic metadata.
Definition: PropertySet.h:68
std::string writeString() const
Serialize this SkyWcs to a string, using the same format as writeStream.
Definition: SkyWcs.cc:326
std::shared_ptr< SkyWcs > makeSkyWcs(daf::base::PropertySet &metadata, bool strip=false)
Construct a SkyWcs from FITS keywords.
Definition: SkyWcs.cc:486
std::shared_ptr< daf::base::PropertyList > getFitsMetadata(bool precise=false) const
Return the WCS as FITS WCS metadata.
Definition: SkyWcs.cc:217
lsst::geom::SpherePoint pixelToSky(double x, double y) const
Compute sky position(s) from pixel position(s)
Definition: SkyWcs.h:337
Eigen::Matrix2d makeCdMatrix(lsst::geom::Angle const &scale, lsst::geom::Angle const &orientation=0 *lsst::geom::degrees, bool flipX=false)
Make a WCS CD matrix.
Definition: SkyWcs.cc:139
table::PointKey< int > pixel
void writeStream(std::ostream &os) const
Serialize this SkyWcs to an output stream.
Definition: SkyWcs.cc:321
ItemVariant const * other
Definition: Schema.cc:56
bool isFlipped() const
Does the WCS follow the convention of North=Up, East=Left?
Definition: SkyWcs.cc:280
SkyWcs & operator=(SkyWcs const &)=delete
lsst::geom::AffineTransform linearizeSkyToPixel(lsst::geom::SpherePoint const &coord, lsst::geom::AngleUnit const &skyUnit) const
Return the local linear approximation to skyToPixel at a point given in sky coordinates.
Definition: SkyWcs.cc:268
lsst::geom::Angle getPixelScale() const
Get the pixel scale at the pixel origin.
Definition: SkyWcs.h:208
A FrameSet whose frames can be referenced by domain name.
Definition: FrameDict.h:67
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
STL class.
bool operator==(SkyWcs const &other) const
Equality is based on the string representations being equal.
Definition: SkyWcs.cc:162
bool strip
Definition: fits.cc:883
A class used to convert scalar POD types such as double to Angle.
Definition: Angle.h:70
std::ostream * os
Definition: Schema.cc:746
Transform LSST spatial data, such as lsst::geom::Point2D and lsst::geom::SpherePoint, using an AST mapping.
Definition: Transform.h:67