UNCLASSIFIED

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