diff options
author | qctecmdr <qctecmdr@localhost> | 2022-02-12 21:37:11 -0800 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2022-02-12 21:37:10 -0800 |
commit | b721d6e6b88937ab6cdd8486de677a6c91cf4888 (patch) | |
tree | 5b738415dd104ede73fc0302be693557ad2cc3d5 | |
parent | 1ec396cbb15224022368ec878900b0f3164a6cbc (diff) | |
parent | 6045666b4e3bda561c02262c401b3c6f616910a7 (diff) |
Merge "move geoidal separation calculation to AP"
-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 { |