14 using namespace MSP::CCS;
28 _eastLongitude( 0.0 ),
29 _westLongitude( 0.0 ),
30 _northLatitude( 0.0 ),
31 _southLatitude( 0.0 ),
43 const char* __ellipsoidCode,
49 double __westLongitude,
50 double __eastLongitude,
51 double __southLatitude,
52 double __northLatitude,
53 bool __userDefined ) :
55 _datumType( __datumType ),
59 _westLongitude( __westLongitude ),
60 _eastLongitude( __eastLongitude ),
61 _southLatitude( __southLatitude ),
62 _northLatitude( __northLatitude ),
63 _userDefined( __userDefined )
65 _code =
new char[ strlen( __code ) + 1 ];
66 strcpy( _code, __code );
68 _ellipsoidCode =
new char[ strlen( __ellipsoidCode ) + 1 ];
69 strcpy( _ellipsoidCode, __ellipsoidCode );
71 _name =
new char[ strlen( __name ) + 1 ];
72 strcpy( _name, __name );
81 delete [] _ellipsoidCode;
103 return _ellipsoidCode;
139 return _westLongitude;
145 return _eastLongitude;
151 return _southLatitude;
157 return _northLatitude;