UNCLASSIFIED

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