UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
MapProjection3Parameters.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef MapProjection3Parameters_H
4 #define MapProjection3Parameters_H
5 
7 #include "DtccApi.h"
8 
9 
10 
11 namespace MSP
12 {
13  namespace CCS
14  {
16  {
17  public:
18 
21  MapProjection3Parameters( CoordinateType::Enum _coordinateType, double __centralMeridian, double __falseEasting, double __falseNorthing );
23 
25 
27 
28  void setCentralMeridian( double __centralMeridian );
29  void setFalseEasting( double __falseEasting );
30  void setFalseNorthing( double __falseNorthing );
31 
32  double centralMeridian() const;
33  double falseEasting() const;
34  double falseNorthing() const;
35 
36  private:
37 
38  double _centralMeridian;
39  double _falseEasting;
40  double _falseNorthing;
41 
42  };
43  }
44 }
45 
46 #endif
47 
48 
49 // CLASSIFICATION: UNCLASSIFIED