Skip to content

Commit

Permalink
update images_file with new format which include a date
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafnuss committed Dec 23, 2024
1 parent 0559ca0 commit 706e74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_wi.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ read_wi <- function(directory = ".") {
assertthat::assert_that(file.exists(cameras_file))
deployments_file <- file.path(directory, "deployments.csv")
assertthat::assert_that(file.exists(deployments_file))
images_file <- file.path(directory, "images.csv")
images_file <- list.files(directory, pattern = "^images_.*\\.csv$", full.names = TRUE)
assertthat::assert_that(file.exists(images_file))

# Read data from files
Expand Down

0 comments on commit 706e74e

Please sign in to comment.