You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
657 B
C++

#ifndef GEOSPATIALANALYSIS_H
#define GEOSPATIALANALYSIS_H
/*
* @cbwu
* @brief 空间分析类,实现各种空间分析算法
*/
#include "qmapcontrol.h"
#include "Engine/UGDataset.h"
#include "GridAnalyst/UG3DAnalyst.h"
using namespace UGC;
//MSVC编译器界面显示乱码问题
#if _MSC_VER >= 1600
#pragma execution_character_set("utf-8")
#endif
class GeoSpatialAnalysis
{
public:
GeoSpatialAnalysis();
//两点间的可视性
UG3DAnalyst::SingleResult* DoublePointVisibility(QMapControl* pMapControl,UGPoint2D pntView, UGPoint2D pntObject,double relativeAltitude=0,int tolerance=0);
private:
};
#endif // GEOSPATIALANALYSIS_H