Construct a timing
object controlling the timing and frequencies for navigation, making sure about the consistency and feasibility of provided information.
make_timing(
nav.start = NULL,
nav.end = NULL,
freq.imu = NULL,
freq.gps = NULL,
freq.baro = NULL,
gps.out.start = NULL,
gps.out.end = NULL
)
Time at which navigation starts
Time at which navigation ends
Frequency of generated IMU data (and hence that of navigation)
Frequency of generated GPS data
Frequency of generated Baro data
Time at which GPS outage starts
Time at which GPS outage ends
An object of class timing
containing sensor name and its additive error model along with the frequency associated to that model
timing <- make_timing(
nav.start = 0,
nav.end = 50,
freq.imu = 10,
freq.gps = 1,
freq.baro = 1e-5,
gps.out.start = 25.1,
gps.out.end = 45
)