UNCLASSIFIED

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