Skip to content
Snippets Groups Projects
Commit aeadde92 authored by Facundo Muñoz's avatar Facundo Muñoz :registered:
Browse files

Submission_3: Update details on culling protocol.

parent 2d9f7539
No related branches found
No related tags found
No related merge requests found
Pipeline #24168 passed
......@@ -1725,6 +1725,9 @@ CSPZ <- function(x, bans) {
#'
#' In addition to standard culling procedure for infected farms.
#'
#' Culling, disinfection and repopulation are delayed 4-6 days with respect to
#' the standard protocol for infected farms.
#'
#' @param x data.frame with outbreak information on pig herds. At least cols ID,
#' DATE.CONF.
#' @param wb data.frame with outbreak information on wild boar. At least cols ID,
......@@ -1755,9 +1758,9 @@ CSWB <- function(x, wb, sites, dist_culling) {
st_drop_geometry() %>%
transmute(
rowid,
culling = DATE.CONF + 6,
disinfection = DATE.CONF + 10,
repopulation = DATE.CONF + 50
culling = DATE.CONF + 1 + 5,
disinfection = DATE.CONF + 10 + 5,
repopulation = DATE.CONF + 50 + 5
),
by = c(wb_idx = "rowid")
) %>%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment