diff options
author | Kevin Tang <quic_zhikait@quicinc.com> | 2021-12-09 22:49:45 -0800 |
---|---|---|
committer | Kevin Tang <quic_zhikait@quicinc.com> | 2021-12-09 22:49:45 -0800 |
commit | 6045666b4e3bda561c02262c401b3c6f616910a7 (patch) | |
tree | 86ab11d34edaf8a83ba3a2fcb6fc35d037f5ed9d | |
parent | d9445345a8ae71caf47fa1fc3bd98d20c0fde7c4 (diff) |
move geoidal separation calculation to AP
add getGeoidalSeparation in LocApiBase
Change-Id: If0ee3660b515adb48302d3ae033d73d5ed8f405d
CRs-Fixed: 3062671
-rw-r--r-- | core/LocApiBase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/LocApiBase.h b/core/LocApiBase.h index 121f795..cbe5f9f 100644 --- a/core/LocApiBase.h +++ b/core/LocApiBase.h @@ -101,6 +101,7 @@ public: inline virtual void* getSibling2() { return NULL; } inline virtual double getGloRfLoss(uint32_t left, uint32_t center, uint32_t right, uint8_t gloFrequency) { return 0.0; } + inline virtual float getGeoidalSeparation(double latitude, double longitude) { return 0.0; } }; class LocApiBase { |