mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Fix duplicated satellites observables test to not demand true observables file
This commit is contained in:
parent
1302614613
commit
6dd4733606
@ -1763,8 +1763,11 @@ TEST_F(HybridObservablesTest, ValidationOfResults)
|
||||
}
|
||||
else
|
||||
{
|
||||
ASSERT_EQ(ReadRinexObs(&true_obs_vec, gnss_synchro_master), true)
|
||||
<< "Failure reading RINEX file";
|
||||
if (!FLAGS_duplicated_satellites_test)
|
||||
{
|
||||
ASSERT_EQ(ReadRinexObs(&true_obs_vec, gnss_synchro_master), true)
|
||||
<< "Failure reading RINEX file";
|
||||
}
|
||||
}
|
||||
//read measured values
|
||||
observables_dump_reader estimated_observables(tracking_ch_vec.size());
|
||||
@ -1825,10 +1828,13 @@ TEST_F(HybridObservablesTest, ValidationOfResults)
|
||||
measured_obs_vec.at(n).shed_rows(0, index(0));
|
||||
}
|
||||
|
||||
index = arma::find(measured_obs_vec.at(n).col(0) >= true_obs_vec.at(n)(0, 0), 1, "first");
|
||||
if ((index.size() > 0) and (index(0) > 0))
|
||||
if (!FLAGS_duplicated_satellites_test)
|
||||
{
|
||||
measured_obs_vec.at(n).shed_rows(0, index(0));
|
||||
index = arma::find(measured_obs_vec.at(n).col(0) >= true_obs_vec.at(n)(0, 0), 1, "first");
|
||||
if ((index.size() > 0) and (index(0) > 0))
|
||||
{
|
||||
measured_obs_vec.at(n).shed_rows(0, index(0));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user