UNCLASSIFIED

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