This function takes a set of bases and produces a tour by geodesically interpolating between each basis
interpolate(basis_set, angle = 0.05, cycle = FALSE)
input basis set
target distance (in radians) between bases
For planned_tour
cycle through continuously (TRUE) or stop after first pass (FALSE)
t1 <- save_history(flea[, 1:6], grand_tour(1), max = 10)
#> Converting input data to the required matrix format.
dim(t1)
#> [1] 6 1 10
dim(interpolate(t1, 0.01))
#> [1] 6 1 1156
dim(interpolate(t1, 0.05))
#> [1] 6 1 235
dim(interpolate(t1, 0.1))
#> [1] 6 1 119