00001 // CLASSIFICATION: UNCLASSIFIED 00002 00003 #ifndef MapProjection4Parameters_H 00004 #define MapProjection4Parameters_H 00005 00006 #include "CoordinateSystemParameters.h" 00007 #include "DtccApi.h" 00008 00009 00010 00011 namespace MSP 00012 { 00013 namespace CCS 00014 { 00015 class MSP_DTCC_API MapProjection4Parameters : public CoordinateSystemParameters 00016 { 00017 public: 00018 00019 MapProjection4Parameters(); 00020 MapProjection4Parameters( CoordinateType::Enum _coordinateType ); 00021 MapProjection4Parameters( CoordinateType::Enum _coordinateType, double __centralMeridian, double __originLatitude, double __falseEasting, double __falseNorthing ); 00022 MapProjection4Parameters( const MapProjection4Parameters& p ); 00023 00024 ~MapProjection4Parameters(); 00025 00026 MapProjection4Parameters& operator=( const MapProjection4Parameters &p ); 00027 00028 void setCentralMeridian( double __centralMeridian ); 00029 void setOriginLatitude( double __originLatitude ); 00030 void setFalseEasting( double __falseEasting ); 00031 void setFalseNorthing( double __falseNorthing ); 00032 00033 double centralMeridian() const; 00034 double originLatitude() const; 00035 double falseEasting() const; 00036 double falseNorthing() const; 00037 00038 private: 00039 00040 double _centralMeridian; 00041 double _originLatitude; 00042 double _falseEasting; 00043 double _falseNorthing; 00044 00045 }; 00046 } 00047 } 00048 00049 #endif 00050 00051 00052 // CLASSIFICATION: UNCLASSIFIED