You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[clap(long, value_parser, help = "Interval (in seconds) between GPS measurements; used to simulate GPS outages")]
23
22
gps_interval:Option<f64>,
24
23
/// Optional: GPS degradation factor
25
-
#[clap(long, value_parser, default_value = "1.0", help = "Factor by which GPS accuracy is degraded. 1.0 is no degradation. >= 1.0 is a degradation factor.")]
26
-
gps_degradation:Option<f32>,
24
+
#[clap(long, value_parser, default_value = "1.0", help = "Factor by which GPS accuracy is degraded. 1.0 is no degradation. >= 1.0 is a degradation factor. This factor is applied as a scalar multiplier to the recorded GPS accuracy.")]
25
+
gps_degradation:Option<f64>,
27
26
/// Optional: GPS spoofing offset
28
27
#[clap(long, value_parser, default_value = "0.0", help = "Offset to apply to GPS coordinates (in meters)")]
0 commit comments