1 
2 ///////////////////////////////////////////////////////////
3 //                                                       //
4 //                         SAGA                          //
5 //                                                       //
6 //      System for Automated Geoscientific Analyses      //
7 //                                                       //
8 //                     Tool Library                      //
9 //                       pj_proj4                        //
10 //                                                       //
11 //-------------------------------------------------------//
12 //                                                       //
13 //                  crs_transform_utm.h                  //
14 //                                                       //
15 //                 Copyright (C) 2017 by                 //
16 //                      Olaf Conrad                      //
17 //                                                       //
18 //-------------------------------------------------------//
19 //                                                       //
20 // This file is part of 'SAGA - System for Automated     //
21 // Geoscientific Analyses'. SAGA is free software; you   //
22 // can redistribute it and/or modify it under the terms  //
23 // of the GNU General Public License as published by the //
24 // Free Software Foundation, either version 2 of the     //
25 // License, or (at your option) any later version.       //
26 //                                                       //
27 // SAGA is distributed in the hope that it will be       //
28 // useful, but WITHOUT ANY WARRANTY; without even the    //
29 // implied warranty of MERCHANTABILITY or FITNESS FOR A  //
30 // PARTICULAR PURPOSE. See the GNU General Public        //
31 // License for more details.                             //
32 //                                                       //
33 // You should have received a copy of the GNU General    //
34 // Public License along with this program; if not, see   //
35 // <http://www.gnu.org/licenses/>.                       //
36 //                                                       //
37 //-------------------------------------------------------//
38 //                                                       //
39 //    e-mail:     oconrad@saga-gis.org                   //
40 //                                                       //
41 //    contact:    Olaf Conrad                            //
42 //                Institute of Geography                 //
43 //                University of Hamburg                  //
44 //                Germany                                //
45 //                                                       //
46 ///////////////////////////////////////////////////////////
47 
48 //---------------------------------------------------------
49 #ifndef HEADER_INCLUDED__crs_transform_utm_H
50 #define HEADER_INCLUDED__crs_transform_utm_H
51 
52 
53 ///////////////////////////////////////////////////////////
54 //														 //
55 //														 //
56 //														 //
57 ///////////////////////////////////////////////////////////
58 
59 //---------------------------------------------------------
60 #include "crs_transform_grid.h"
61 #include "crs_transform_shapes.h"
62 
63 
64 ///////////////////////////////////////////////////////////
65 //														 //
66 //														 //
67 //														 //
68 ///////////////////////////////////////////////////////////
69 
70 //---------------------------------------------------------
71 class CCRS_Transform_UTM_Grids : public CCRS_Transform_Grid
72 {
73 public:
74 	CCRS_Transform_UTM_Grids(bool bList);
75 
Get_MenuPath(void)76 	virtual CSG_String			Get_MenuPath		(void)	{	return( _TL("UTM Projection") );	}
77 
78 
79 protected:
80 
81 	virtual int					On_Parameter_Changed		(CSG_Parameters *pParameters, CSG_Parameter *pParameter);
82 
83 };
84 
85 
86 ///////////////////////////////////////////////////////////
87 //														 //
88 ///////////////////////////////////////////////////////////
89 
90 //---------------------------------------------------------
91 class CCRS_Transform_UTM_Shapes : public CCRS_Transform_Shapes
92 {
93 public:
94 	CCRS_Transform_UTM_Shapes(bool bList);
95 
Get_MenuPath(void)96 	virtual CSG_String			Get_MenuPath		(void)	{	return( _TL("UTM Projection") );	}
97 
98 
99 protected:
100 
101 	virtual int					On_Parameter_Changed		(CSG_Parameters *pParameters, CSG_Parameter *pParameter);
102 
103 };
104 
105 
106 ///////////////////////////////////////////////////////////
107 //														 //
108 //														 //
109 //														 //
110 ///////////////////////////////////////////////////////////
111 
112 //---------------------------------------------------------
113 #endif // #ifndef HEADER_INCLUDED__crs_transform_utm_H
114