mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-05 15:00:33 +00:00
Better tuning of position KF for moving receivers
This commit is contained in:
parent
84ce3ebc2f
commit
95e6111a46
@ -61,8 +61,8 @@ All notable changes to GNSS-SDR will be documented in this file.
|
||||
covariances with the following optional parameters (here with their default
|
||||
values): `PVT.kf_measures_ecef_pos_sd_m=1.0`, in [m];
|
||||
`PVT.kf_measures_ecef_vel_sd_ms=0.1`, in [m/s];
|
||||
`PVT.kf_system_ecef_pos_sd_m=0.01`, in [m]; and
|
||||
`PVT.kf_system_ecef_vel_sd_ms=0.001`, in [m/s].
|
||||
`PVT.kf_system_ecef_pos_sd_m=2.0`, in [m]; and
|
||||
`PVT.kf_system_ecef_vel_sd_ms=0.5`, in [m/s].
|
||||
|
||||
### Improvements in Scalability:
|
||||
|
||||
|
@ -78,8 +78,8 @@ Rtklib_Pvt::Rtklib_Pvt(const ConfigurationInterface* configuration,
|
||||
pvt_output_parameters.enable_pvt_kf = configuration->property(role + ".enable_pvt_kf", false);
|
||||
pvt_output_parameters.measures_ecef_pos_sd_m = configuration->property(role + ".kf_measures_ecef_pos_sd_m", 1.0);
|
||||
pvt_output_parameters.measures_ecef_vel_sd_ms = configuration->property(role + ".kf_measures_ecef_vel_sd_ms", 0.1);
|
||||
pvt_output_parameters.system_ecef_pos_sd_m = configuration->property(role + ".kf_system_ecef_pos_sd_m", 0.01);
|
||||
pvt_output_parameters.system_ecef_vel_sd_ms = configuration->property(role + ".kf_system_ecef_vel_sd_ms", 0.001);
|
||||
pvt_output_parameters.system_ecef_pos_sd_m = configuration->property(role + ".kf_system_ecef_pos_sd_m", 2.0);
|
||||
pvt_output_parameters.system_ecef_vel_sd_ms = configuration->property(role + ".kf_system_ecef_vel_sd_ms", 0.5);
|
||||
|
||||
// NMEA Printer settings
|
||||
pvt_output_parameters.flag_nmea_tty_port = configuration->property(role + ".flag_nmea_tty_port", false);
|
||||
|
Loading…
Reference in New Issue
Block a user