1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-10-28 14:07:38 +00:00

Fix ignored value

This commit is contained in:
Carles Fernandez
2021-02-22 20:13:46 +01:00
parent 3dd4021a10
commit a0f10218fd

View File

@@ -184,7 +184,7 @@ double Gnss_Ephemeris::sv_clock_relativistic_term(double transmitTime) const
{ {
n0 = sqrt(GALILEO_GM / (a * a * a)); n0 = sqrt(GALILEO_GM / (a * a * a));
} }
if (this->System == 'E') else if (this->System == 'E')
{ {
n0 = sqrt(BEIDOU_GM / (a * a * a)); n0 = sqrt(BEIDOU_GM / (a * a * a));
} }