23 lines
316 B
C++
23 lines
316 B
C++
#pragma once
|
|
|
|
#include "standardglobe_global.h"
|
|
|
|
|
|
/// <summary>
|
|
/// WGS84坐标系坐标类型
|
|
/// </summary>
|
|
struct LLAPos {
|
|
double _lon_deg = 0;
|
|
double _lat_deg = 0;
|
|
double _alt_m = 0;
|
|
};
|
|
|
|
/// <summary>
|
|
/// 标准球体坐标转换工具
|
|
/// </summary>
|
|
class STANDARDGLOBE_EXPORT StandardGlobe
|
|
{
|
|
public:
|
|
StandardGlobe();
|
|
};
|