Skip to content

Commit

Permalink
fix issue with wrong pasting of comment + add remarks columns in de…
Browse files Browse the repository at this point in the history
…ployments
  • Loading branch information
Rafnuss committed Dec 23, 2024
1 parent 706e74e commit 725dd24
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 @@ -294,7 +294,7 @@ read_wi <- function(directory = ".") {
),
habitat = NA_character_,
tags = .data$subproject_name, # Set subproject as tag
comments = paste(c(.data$event_description, .data$camera_functioning), collapse = " | "), # TODO: check with other dataset
comments = paste(.data$event_description, .data$remarks, .data$camera_functioning, sep = " | "), # TODO: check with other dataset
`_id` = NA_character_
)

Expand Down

0 comments on commit 725dd24

Please sign in to comment.