UNCLASSIFIED

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