UNCLASSIFIED

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