UNCLASSIFIED

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