diff options
author | Hoss Zhou <quic_zhouh@quicinc.com> | 2021-11-29 16:57:04 +0800 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2021-12-19 22:57:43 -0800 |
commit | cc45ee326b4750b695779f4f1f49b477789c158a (patch) | |
tree | 94e282b4a6b278e3120935a79ba47825f37b75ca | |
parent | 0131ba9e4efce6234f07158e41391aefc713bb1b (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 1a573a1..8fad4a5 100644 --- a/core/LocApiBase.h +++ b/core/LocApiBase.h @@ -106,6 +106,7 @@ public: inline virtual bool getSatellitePVT(GnssSvPolynomial& svPolynomial, GnssSvMeasurementHeader& svMeasSetHeader, GnssMeasurementsData& measurementData) { return false; } + inline virtual float getGeoidalSeparation(double latitude, double longitude) { return 0.0; } }; class LocApiBase { |