LSSTApplications  11.0-13-gbb96280,12.1.rc1,12.1.rc1+1,12.1.rc1+2,12.1.rc1+5,12.1.rc1+8,12.1.rc1-1-g06d7636+1,12.1.rc1-1-g253890b+5,12.1.rc1-1-g3d31b68+7,12.1.rc1-1-g3db6b75+1,12.1.rc1-1-g5c1385a+3,12.1.rc1-1-g83b2247,12.1.rc1-1-g90cb4cf+6,12.1.rc1-1-g91da24b+3,12.1.rc1-2-g3521f8a,12.1.rc1-2-g39433dd+4,12.1.rc1-2-g486411b+2,12.1.rc1-2-g4c2be76,12.1.rc1-2-gc9c0491,12.1.rc1-2-gda2cd4f+6,12.1.rc1-3-g3391c73+2,12.1.rc1-3-g8c1bd6c+1,12.1.rc1-3-gcf4b6cb+2,12.1.rc1-4-g057223e+1,12.1.rc1-4-g19ed13b+2,12.1.rc1-4-g30492a7
LSSTDataManagementBasePackage
TransformMap.h
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2014 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 #if !defined(LSST_AFW_GEOM_TRANSFORMMAP_H)
24 #define LSST_AFW_GEOM_TRANSFORMMAP_H
25 
26 #include <string>
27 #include <utility>
28 #include <vector>
29 #include <map>
30 #include "lsst/afw/geom/Point.h"
32 
33 namespace lsst {
34 namespace afw {
35 namespace geom {
36 
64 template<typename CoordSysT>
65 class TransformMap {
66 public:
67  typedef std::map<CoordSysT, CONST_PTR(XYTransform)> Transforms;
68  typedef CoordSysT CoordSys; // needed by SWIG; see TransformMap.i
69 
79  explicit TransformMap(
80  CoordSysT const &nativeCoordSys,
81  Transforms const &transforms
82  );
84 
86  explicit TransformMap();
87 
96  Point2D const &fromPoint,
97  CoordSysT const &fromSys,
98  CoordSysT const &toCoordSys
99  ) const;
100 
106  std::vector<Point2D> transform(
107  std::vector<Point2D> const &pointList,
108  CoordSysT const &fromCoordSys,
109  CoordSysT const &toCoordSys
110  ) const;
111 
112  CoordSysT getNativeCoordSys() const { return _nativeCoordSys; }
113 
119  std::vector<CoordSysT> getCoordSysList() const;
120 
127  bool contains(
128  CoordSysT const &coordSys
129  ) const;
130 
138  CONST_PTR(XYTransform) operator[](
139  CoordSysT const &coordSys
140  ) const;
141 
142  typename Transforms::const_iterator begin() const { return _transforms.begin(); }
143 
144  typename Transforms::const_iterator end() const { return _transforms.end(); }
145 
146  size_t size() const { return _transforms.size(); }
147 
148 private:
149  CoordSysT _nativeCoordSys;
151 };
152 
153 }}}
154 
155 #endif
A coordinate class intended to represent absolute positions.
Transforms _transforms
map of coordSys: XYTransform
Definition: TransformMap.h:150
CoordSysT _nativeCoordSys
native coordinate system
Definition: TransformMap.h:149
std::vector< CoordSysT > getCoordSysList() const
CoordSysT getNativeCoordSys() const
Definition: TransformMap.h:112
bool contains(CoordSysT const &coordSys) const
#define CONST_PTR(...)
Definition: base.h:47
Transforms::const_iterator end() const
Definition: TransformMap.h:144
Point2D transform(Point2D const &fromPoint, CoordSysT const &fromSys, CoordSysT const &toCoordSys) const
std::map< CoordSysT, boost::shared_ptr< XYTransform const > > Transforms
Definition: TransformMap.h:67
Transforms::const_iterator begin() const
Definition: TransformMap.h:142
Virtual base class for 2D transforms.
Definition: XYTransform.h:48
TransformMap()
null implementation to make SWIG willing to wrap a map that contains these
Class representing an invertible 2D transform.