UNCLASSIFIED

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