add_timestamps: Add timestamps to frames

Description Usage Arguments Value Author(s) See Also Examples

View source: R/add_timestamps.R

Description

This function adds timestamps to animation frames created with frames_spatial.

Usage

1
add_timestamps(frames, m = NULL, x = NULL, y = NULL, ..., verbose = TRUE)

Arguments

frames

list of ggplot2 objects, crated with frames_spatial.

m

move or moveStack, optional. If defined, timestamps are extracted from m that must be the same object used to create frames with frames_spatial. If undefined (recommended), timestamps are extracted from the attributes of frames directly.

x

numeric, optional, position of timestamps on the x scale. By default, timestamps will be displayed in the top center.

y

numeric, optional, position of timestamps on the y scale.

...

optional, arguments passed to add_text, such as colour, size, type.

verbose

logical, if TRUE, messages and progress information are displayed on the console (default).

Value

List of frames.

Author(s)

Jakob Schwalb-Willmann

See Also

frames_spatial frames_graph animate_frames

Examples

 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 timestamps as text
frames.a <- add_timestamps(frames, type = "text")
frames.a[[100]]

# or use the ggplot2 "label" type:
frames.b <- add_timestamps(frames, type = "label")
frames.b[[100]]

moveVis documentation built on March 31, 2020, 5:08 p.m.