LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
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
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
#define CONST_PTR(...)
Definition: base.h:47
TransformMap()
null implementation to make SWIG willing to wrap a map that contains these
Class representing an invertible 2D transform.