dmpcoordinatereferencesystem.h
801 Bytes
/**************************************************************************
* file: dmpcoordinatereferencesystem.h
* Author: wanzhongping
* Date: 2021-07-05 17:19:39
* Email: zhongpingw@chinadci.com
* copyright: 广州城市信息研究所有限公司
***************************************************************************/
#ifndef __dmpcoordinatereferencesystem_h__
#define __dmpcoordinatereferencesystem_h__
#include "dmap_core.h"
#include <boost/property_tree/ptree.hpp>
class CORE_EXPORT DmpCoordinateReferenceSystem
{
public:
bool readXml(const boost::property_tree::ptree pNode);
private:
long srid_;
std::string wkt_;
std::string proj4_;
};
#endif //__dmpcoordinatereferencesystem_h__