Description Usage Arguments Value Author(s) See Also Examples
This function adds a progress bar to animation frames created with frames_spatial
.
1 | add_progress(frames, colour = "grey", size = 1.8, verbose = TRUE)
|
frames |
list of |
colour |
character, progress bar colour. |
size |
numeric, progress bar line size.. |
verbose |
logical, if |
List of frames.
Jakob Schwalb-Willmann
frames_spatial
frames_graph
animate_frames
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | library(moveVis)
library(move)
data("move_data", "basemap_data")
m <- align_move(move_data, res = 4, unit = "mins")
# create spatial frames using a custom NDVI base layer
r_list <- basemap_data[[1]]
r_times <- basemap_data[[2]]
frames <- frames_spatial(m, r_list = r_list, r_times = r_times, r_type = "gradient",
fade_raster = TRUE)
# add a progress bar:
frames.a <- add_progress(frames)
frames.a[[100]]
# or in red and larger
frames.b <- add_progress(frames, colour = "red", size = 2.5)
frames.b[[100]]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.