UNCLASSIFIED

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