7 #ifndef __TERRALIB_SRS_INTERNAL_DATUM_H 
    8 #define __TERRALIB_SRS_INTERNAL_DATUM_H 
   51       const std::string& getName() 
const;
 
   57       void setName(
const std::string& name);
 
   75       void setToWGS84Params(
const std::vector<double>& params);
 
   78       const std::vector<double>& getToWGS84Params() 
const;
 
   81       std::string getWKT() 
const;
 
   91 #endif //__TERRALIB_SRS_INTERNAL_DATUM_H 
A geodetic datum defines a reference to measure Earth's surface. 
 
std::vector< double > m_towgs84
To store shifting parametes necessary to execute Datum shifting to a WGS84 Datum. ...
 
std::string m_name
Datum name. 
 
Ellipsoid * m_ellipsoid
Reference ellipsoid. 
 
A reference ellipsoid is an approximation of the Earth's surface as a squashed sphere. 
 
#define TESRSEXPORT
You can use this macro in order to export/import classes and functions from this module.