1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 12:10:34 +00:00

Convert E6 observables

This commit is contained in:
Carles Fernandez 2022-06-04 13:21:32 +02:00
parent 12603c3ca0
commit 807c19b228
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -75,6 +75,10 @@ obsd_t insert_obs_to_rtklib(obsd_t& rtklib_obs, const Gnss_Synchro& gnss_synchro
{
rtklib_obs.code[band] = static_cast<unsigned char>(CODE_L7X);
}
if (sig_ == "E6")
{
rtklib_obs.code[band] = static_cast<unsigned char>(CODE_L6B);
}
break;
case 'R':
rtklib_obs.sat = gnss_synchro.PRN + NSATGPS;