knowL: Knowledge Libraries
Loading...
Searching...
No Matches
AltitudeReference.h
1#pragma once
2
3#include <QtGlobal>
4
5namespace knowGIS
6{
7 class GeoPoint;
9 {
10 public:
11 enum class Type
12 {
13 WGS84_Ellipsoid,
14 EGM84_Geoid,
15 EGM96_Geoid,
16 EGM2008_Geoid
17 };
18 public:
19 static qreal get(Type _type, const GeoPoint& _geopoint);
20 };
21}
22
Definition AltitudeReference.h:9
Definition GeoPoint.h:14