UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
LocalCartesianParameters.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef LocalCartesianParameters_H
4 #define LocalCartesianParameters_H
5 
7 #include "DtccApi.h"
8 
9 
10 
11 namespace MSP
12 {
13  namespace CCS
14  {
16  {
17  public:
18 
21  LocalCartesianParameters( CoordinateType::Enum _coordinateType, double __longitude, double __latitude, double __height, double __orientation );
23 
25 
26  LocalCartesianParameters& operator=( const LocalCartesianParameters &lcp );
27 
28  void setLongitude( double __centralMeridian );
29  void setLatitude( double __originLatitude );
30  void setHeight( double __height );
31  void setOrientation( double __orientation );
32 
33  double longitude() const;
34  double latitude() const;
35  double height() const;
36  double orientation() const;
37 
38  private:
39 
40  double _longitude;
41  double _latitude;
42  double _height;
43  double _orientation;
44 
45  };
46  }
47 }
48 
49 #endif
50 
51 
52 // CLASSIFICATION: UNCLASSIFIED