Nothing
# Functionality for completing a space-time-series if the present one is incomplete
#' Convert spacetime object to spacetime cube
#'
#' Given a spacetime object, convert it to a spacetime cube. A spacetime cube
#' ensures that there is a regular time-series for each geometry present.
#'
#' If observations are missing for a time period and location combination,
#' columns will be populated with NAs.
#'
#' See [`is_spacetime_cube()`] for more details on spacetime cubes.
#'
#' @param x a spacetime object.
#' @param ... unused
#' @export
#' @examples
#'
#' df_fp <- system.file("extdata", "bos-ecometric.csv", package = "sfdep")
#' geo_fp <- system.file("extdata", "bos-ecometric.geojson", package = "sfdep")
#'
#' # read in data
#' df <- read.csv(df_fp, colClasses = c("character", "character", "integer", "double", "Date"))
#' geo <- sf::st_read(geo_fp)
#'
#' # Create spacetime object called `bos`
#' bos <- spacetime(df, geo,
#' .loc_col = ".region_id",
#' .time_col = "time_period")
#'
#' # create a sample of data
#' set.seed(0)
#' sample_index <- sample(1:nrow(bos), nrow(bos) * 0.95)
#' incomplete_spt <- bos[sample_index,]
#'
#' # check to see if is spacetime cube
#' is_spacetime_cube(incomplete_spt)
#'
#' # complete it again
#' complete_spacetime_cube(incomplete_spt)
#' @returns
#' A spacetime object that meets the criteria of spacetime cube.
complete_spacetime_cube <- function(x, ...) {
# if already spacetime cube return x
suppressMessages({
if (is_spacetime_cube(x)) return(x)
})
# activate data if not already
if (active(x) == "geometry") x <- activate(x, "data")
.loc_col <- attr(x, "loc_col")
.time_col <- attr(x, "time_col")
locs <- attr(x, "locs")
times <- attr(x, "times")
# if there are more than 1 observation per-time period
# exit as it cannot be regular
if (any(table(x[[.time_col]], x[[.loc_col]]) > 1)) {
cli::cli_abort(c(
"Location and time combinations are not unique.",
i = "There should only be one observation per time and location combination."
))
}
complete_spts <- expand.grid(locs = locs,
times = times,
stringsAsFactors = FALSE)
names(complete_spts) <- c(.loc_col, .time_col)
.data_class <- setdiff(class(x), "spacetime")
res <- merge(complete_spts, x, by = names(complete_spts), all.x = TRUE)
class(res) <- .data_class
new_spacetime(res, attr(x, "geometry"), .loc_col, .time_col)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.