diff --git a/src/algorithms/PVT/libs/vtl_engine.cc b/src/algorithms/PVT/libs/vtl_engine.cc index b82025950..9d4b0a36d 100755 --- a/src/algorithms/PVT/libs/vtl_engine.cc +++ b/src/algorithms/PVT/libs/vtl_engine.cc @@ -35,7 +35,7 @@ bool Vtl_Engine::vtl_loop(Vtl_Data& new_data) // ################## Kalman filter initialization ###################################### // covariances (static) - kf_P_x = arma::eye(8, 8); //TODO: use a real value. + kf_P_x = arma::eye(8, 8)*1.0; //TODO: use a real value. kf_x = arma::zeros(8, 1); kf_R = arma::zeros(2*new_data.sat_number, 2*new_data.sat_number); double kf_dt=0.1; @@ -58,7 +58,7 @@ bool Vtl_Engine::vtl_loop(Vtl_Data& new_data) counter = counter+1; //uint64_t cout << "counter" << counter<