This function is the back-end of the acoustic-container (AC) and acoustic-container depth-contour (ACDC) algorithms.

.acs(
  acoustics,
  archival = NULL,
  step = 120,
  round_ts = TRUE,
  plot_ts = TRUE,
  bathy,
  map = NULL,
  detection_containers,
  detection_kernels = NULL,
  detection_kernels_overlap = NULL,
  detection_time_window = 5,
  mobility,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2),
  normalise = TRUE,
  chunk = 1L,
  save_record_spatial = 1L,
  write_record_spatial_for_pf = NULL,
  save_args = TRUE,
  verbose = TRUE,
  con = "",
  progress = 1L,
  check = TRUE
)

Arguments

acoustics

A dataframe that contains passive acoustic telemetry detection time series for a specific individual (see dat_acoustics for an example). This should contain the following columns: an integer vector of receiver IDs, named `receiver_id' (that must match that inputted to acs_setup_containers); an integer vector of detection indices, named `index'; a POSIXct vector of time stamps when detections were made, named `timestamp'; and a numeric vector of those time stamps, named `timestamp_num'.

archival

For the ACDC algorithm, archival is a dataframe that contains depth time series for the same individual (see dat_archival for an example). This should contain the following columns: a numeric vector of observed depths, named `depth'; a POSIXct vector of time stamps when observations were made, named `timestamp'; and a numeric vector of those time stamps, named `timestamp_num'. Depths should be recorded in the same units and with the same sign as the bathymetry data (see bathy). Absolute depths (m) are suggested. Unlike the detection time series, archival time stamps are assumed to have occurred at regular intervals.

step

A number that defines the time step length (s) between consecutive detections. If archival is supplied, this is the resolution of the archival data (e.g., 120 s).

round_ts

A logical input that defines whether or not to round the acoustics and/or archival time series to the nearest step/60 minutes. This step is necessary to ensure appropriate alignment between the two time series given the assumption of a constant mobility parameter (see below). For implementations via .acs_pl, this step is implemented in .acs_pl.

plot_ts

A logical input that defines whether or not to the plot movement series before the algorithm is initiated.

bathy

A raster that defines the area (for the AC algorithm) or bathymetry (for the ACDC* algorithm) across the area within which the individual could have moved. For the ACDC algorithm, this must be recorded in the same units and with the same sign as the depth observations (see archival). The coordinate reference system should be the Universal Transverse Mercator system, with distances in metres (see also acs_setup_containers).

map

(optional) A blank raster, with the same properties (i.e., dimensions, resolution, extent and coordinate reference system) as the area/bathymetry raster (see bathy), but in which all values are 0. If NULL, this is computed internally, but supplying a pre-defined raster can be more computationally efficient if the function is applied iteratively (e.g., over different time windows).

detection_containers

A list of detection containers, with one element for each number from 1:max(acoustics$receiver_id), from acs_setup_containers.

detection_kernels

A named list of detection probability kernels, from acs_setup_detection_kernels and created using consistent parameters as specified for other acs_setup_* functions and here (i.e., see the overlaps, calc_detection_pr and map arguments in acs_setup_detection_kernels).

detection_kernels_overlap

(optional) A named list (the `list_by_receiver' element from get_detection_containers_overlap), that defines, for each receiver, for each day over its deployment period, whether or not its detection container overlapped with those of other receivers. If detection_kernels_overlap and detection_time_window (below) are supplied, the implementation of detection probability kernels when a detection is made accounts for overlaps in receivers' detection containers; if unsupplied, receiver detection probability kernels are assumed not to overlap.

detection_time_window

(optional) A number that defines the maximum duration (s) between consecutive detections at different receivers such that they can be said to have occurred at `effectively the same time'. This indicates that the same transmission was detected by multiple receivers. If detection_kernels_overlap (above) and detection_time_window are supplied, the implementation of detection probability kernels when a detection is made accounts for overlaps in receivers' detection containers, by up-weighting overlapping areas between receivers that detected the transmission and down-weighting overlapping areas between receivers that did not detect the transmission (see Details in acs_setup_detection_kernels). Note that the timing of detections is affected by step (see Details).

mobility

A number that defines the distance (m) that an individual could move in the time steps between acoustic detections (see also acs_setup_containers).

calc_depth_error

In the ACDC algorithm, calc_depth_error is function that returns the depth errors around a vector of depths. The function should accept vector of depths (from archival$depth) and return a matrix, with one row for each (lower and upper) error and one one column for each depth (if the error varies with depth). For each depth, the two numbers are added to the observed depth to define the range of depths on the bathymetry raster (bathy) that the individual could plausibly have occupied at any time. Since the depth errors are added to the individual's depth, the first number should be negative (i.e., the individual could have been shallower that observed) and the second positive (i.e., the individual could have been deeper than observed). The appropriate form for calc_depth_error depends on the species (pelagic versus demersal/benthic species), the measurement error for the depth observations in archival and bathymetry (bathy) data, as well as the tidal range (m) across the area (over the duration of observations). For example, for a pelagic species, the constant function calc_depth_error = function(...) matrix(c(-2.5, Inf) implies that the individual could have occupied bathymetric cells that are deeper than the observed depth + (-2.5) m and shallower than Inf m (i.e. the individual could have been in any location in which the depth was deeper than the shallow depth limit for the individual). In contrast, for a benthic species, the constant function calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2) implies that the individual could have occupied bathymetric cells whose depth lies within the interval defined by the observed depth + (-2.5) and + (+2.5) m.

normalise

A logical variable that defines whether or not to normalise the map of possible locations at each time step so that they sum to one.

chunk

An integer that defines the chunk ID (from .acs_pl).

save_record_spatial

An integer vector that defines the time steps for which to save a record of the spatial information from each time step. save_record_spatial = 0 suppresses the return of this information and save_record_spatial = NULL returns this information for all time steps.

write_record_spatial_for_pf

(optional) A named list, passed to writeRaster, to save a subset of the spatial record (specifically the raster of the individual's possible positions at each time step) to file. This forms the basis for extending maps of space use via particle filtering (see pf.) The `filename' argument should be the directory in which to save files. Files are named by chunk ID, acoustic and internal (archival) time steps. For example, the file for the first chunk, the first acoustic time step and the first archival time step is named `chu_1_acc_1_arc_1'.

save_args

A logical input that defines whether or not to include a list of function arguments in the outputs. This can be switched off if the function is applied iteratively.

verbose

A logical variable that defines whether or not to print messages to the console or to file to relay function progress. If con = "", messages are printed to the console; otherwise, they are written to file (see below).

con

If verbose = TRUE, con is character string that defines the full pathway to a .txt file (which can be created on-the-fly) into which messages are written to relay function progress. This approach, rather than printing to the console, is recommended for clarity, speed and debugging.

progress

(optional) If the algorithm is implemented step-wise, progress is an integer (1, 2 or 3) that defines whether or not to display a progress bar in the console as the algorithm moves over acoustic time steps (1), the `archival' time steps between each pair of acoustic detections (2) or both acoustic and archival time steps (3), in which case the overall acoustic progress bar is punctuated by an archival progress bar for each pair of acoustic detections. This option is useful if there is a large number of archival observations between acoustic detections. Any other input will suppress the progress bar. If the algorithm is implemented for chunks, inputs to progress are ignored and a single progress bar is shown of the progress across acoustic chunks.

check

A logical input that defines whether or not to check function inputs. This can be switched off to improve computation time when the function is applied iteratively or via a front-end function (e.g., ac or acdc).

Value

The function returns an acdc_record-class object with the following elements: `map', `record', `time', `args', `chunks' and `simplify'. The main output element is the `map' RasterLayer that shows where the individual could have spent more or less time over the duration of the movement time series. The `record' element records time-specific information on the possible locations of the individual, and can be used to plot maps of specific time points or to produce animations (for the time steps specified by save_record_spatial). The `time' element is a dataframe that defines the times of sequential stages in the algorithm's progression, providing a record of computation time. The `args' element is a named list of user inputs that record the parameters used to generate the outputs (if save_args = TRUE, otherwise the `args' element is NULL).

See also

The front-end functions ac and acdc call .acs_pl which in turn calls this function. acs_setup_containers defines the detection containers required by this function. acs_setup_mobility is used to examine the assumption of the constant `mobility' parameter. acs_setup_detection_kernels produces detection probability kernels for incorporation into the function. For calls via ac and acdc, acdc_simplify simplifies the outputs and acdc_plot_trace, acdc_plot_record and acdc_animate_record visualise the results.

Author

Edward Lavender

Examples

#### Step (1) Prepare study site grid
# Grid resolution needs to be sufficiently high to capture detection probability/movement
# And sufficiently low to minimise computational costs
blank <- raster::raster(raster::extent(dat_gebco), res = c(75, 75))
gebco <- raster::resample(dat_gebco, blank)

#### Step (2) Implement setup_acdc_*() steps
# ... Define detection containers required for algorithm(s) (see acs_setup_containers())

#### Step (3) Prepare movement time series for algorithm(s)
# Add required columns to dataframes:
dat_acoustics$timestamp_num <- as.numeric(dat_acoustics$timestamp)
dat_archival$timestamp_num <- as.numeric(dat_archival$timestamp)
# Focus on an example individual
id <- 25
acc <- dat_acoustics[dat_acoustics$individual_id == id, ]
arc <- dat_archival[dat_archival$individual_id == id, ]
# Focus on the subset of data for which we have both acoustic and archival detections
acc <- acc[acc$timestamp >= min(arc$timestamp) - 2 * 60 &
  acc$timestamp <= max(arc$timestamp) + 2 * 60, ]
arc <- arc[arc$timestamp >= min(acc$timestamp) - 2 * 60 &
  arc$timestamp <= max(acc$timestamp) + 2 * 60, ]
# We'll focus on a one day period with overlapping detection/depth time series for speed
end <- as.POSIXct("2016-03-18")
acc <- acc[acc$timestamp <= end, ]
arc <- arc[arc$timestamp <= end, ]
arc <- arc[arc$timestamp >= min(acc$timestamp) - 2 * 60 &
  arc$timestamp <= max(acc$timestamp) + 2 * 60, ]
# Process time series
# ... Detections should be rounded to the nearest step
# ... Duplicate detections
# ... ... (of the same individual at the same receiver in the same step)
# ... ... should be dropped
# ... This step has already been implemented for dat_acoustics.

#### Example (1) Implement AC algorithm with default arguments
out_acdc_1 <- flapper:::.acs(
  acoustics = acc,
  bathy = gebco,
  detection_containers = dat_containers,
  mobility = 200
)
#> flapper::.acs() called (@ 2023-08-29 15:38:58)... 
#> ... Checking user inputs... 
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others

#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:06) after ~0.14 minutes. 

#### Example (2) Implement ACDC algorithm with default arguments
out_acdc_2 <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:06)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others

#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:15) after ~0.15 minutes. 

#### Example (3) Implement AC or ACDC algorithm with detection probability kernels

## (A) Get detection container overlaps
# Define receiver locations as a SpatialPointsDataFrame object with a UTM CRS
proj_wgs84 <- sp::CRS(SRS_string = "EPSG:4326")
proj_utm <- sp::CRS(SRS_string = "EPSG:32629")
rownames(dat_moorings) <- dat_moorings$receiver_id
xy <- sp::SpatialPoints(
  dat_moorings[, c("receiver_long", "receiver_lat")],
  proj_wgs84
)
xy <- sp::spTransform(xy, proj_utm)
xy <- sp::SpatialPointsDataFrame(xy, dat_moorings[, c(
  "receiver_id",
  "receiver_start_date",
  "receiver_end_date"
)])
# Get detection overlap(s) as a SpatialPolygonsDataFrame
containers <- get_detection_containers(
  xy = sp::SpatialPoints(xy),
  detection_range = 425,
  coastline = dat_coast,
  byid = TRUE
)
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: spgeom1 and spgeom2 have different proj4 strings

containers_df <- dat_moorings[, c(
  "receiver_id",
  "receiver_start_date",
  "receiver_end_date"
)]
row.names(containers_df) <- names(containers)
containers <- sp::SpatialPolygonsDataFrame(containers, containers_df)
overlaps <- get_detection_containers_overlap(containers = containers)

## (B) Define detection probability function based on distance and detection_range
calc_dpr <-
  function(x) {
    ifelse(x <= 425, stats::plogis(2.5 + -0.02 * x), 0)
  }

## (C) Get detection kernels (a slow step)
kernels <- acs_setup_detection_kernels(
  xy = xy,
  containers = dat_containers,
  overlaps = overlaps,
  calc_detection_pr = calc_dpr,
  bathy = gebco
)
#> flapper::acs_setup_detection_kernels() called (@ 2023-08-29 15:39:16)... 
#> ... Setting up function... 
#> ... Getting receiver-specific kernels (for detection)... 
#> 
#> ... ... For receiver 3 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 4 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 7 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 9 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 11 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 12 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 14 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 18 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 20 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 21 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 23 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 24 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 26 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 27 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 29 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 30 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 31 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 33 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 35 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 36 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 37 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 38 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 39 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 40 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 41 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 43 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 44 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 45 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 46 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 47 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 48 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 49 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 50 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 51 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 52 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 53 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 54 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 55 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 56 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> 
#> ... ... For receiver 57 ... 
#> ... ... ... Isolating detection container ... 
#> ... ... ... Calculating distances from the receiver ... 
#> ... ... ... Calculating detection probability ... 
#> ... ... ... Processing kernel ... 
#> ... Getting receiver-specific inverse kernels... 
#> ... Getting area-wide kernels (for non-detection)... 
#> ... ... Get unique array designs... 
#> ... ... Get area wide kernels for each array design... 
#> 
#> ... ... ... For design 1/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 2/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 3/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 4/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 5/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 6/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 7/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 8/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 9/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 10/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 11/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 12/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 13/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 14/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 15/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 16/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 17/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 18/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> 
#> ... ... ... For design 19/19... 
#> ... ... ... ... Extract detection probability kernels for active receivers... 
#> ... ... ... ... Combining detection kernels to calculate the background detection probability surfaces (this is a slow step)... 
#> ... Process detection probability kernels ... 
#> ... flapper::acs_setup_detection_kernels() call completed (@ 2023-08-29 15:39:19) after ~0.05 minutes. 
## (D) Implement algorithm
out_acdc_3 <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  detection_kernels = kernels,
  detection_kernels_overlap = overlaps$list_by_receiver,
  detection_time_window = 10,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:19)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:28) after ~0.16 minutes. 

#### Example (4): Compare outputs with/without detection probability and normalisation
## Without detection kernels
out_acdc_4a <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:28)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others

#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:37) after ~0.14 minutes. 
out_acdc_4b <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  normalise = TRUE,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:37)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:46) after ~0.15 minutes. 
## With detection kernels
out_acdc_4c <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  detection_kernels = kernels,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:46)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:39:57) after ~0.19 minutes. 
out_acdc_4d <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  detection_kernels = kernels, normalise = TRUE,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2)
)
#> flapper::.acs() called (@ 2023-08-29 15:39:57)... 
#> ... Checking user inputs... 
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%... Initiating algorithm: moving over acoustic and internal ('archival') time steps... 
#> ... On acoustic time step ('timestep_detection') 1. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   1%... On acoustic time step ('timestep_detection') 2. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=                                                                     |   2%... On acoustic time step ('timestep_detection') 3. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%... On acoustic time step ('timestep_detection') 4. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===                                                                   |   4%... On acoustic time step ('timestep_detection') 5. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%... On acoustic time step ('timestep_detection') 6. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====                                                                  |   6%... On acoustic time step ('timestep_detection') 7. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====                                                                 |   7%... On acoustic time step ('timestep_detection') 8. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   8%... On acoustic time step ('timestep_detection') 9. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======                                                                |   9%... On acoustic time step ('timestep_detection') 10. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======                                                               |  10%... On acoustic time step ('timestep_detection') 11. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  11%... On acoustic time step ('timestep_detection') 12. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========                                                              |  12%... On acoustic time step ('timestep_detection') 13. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========                                                             |  13%... On acoustic time step ('timestep_detection') 14. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  14%... On acoustic time step ('timestep_detection') 15. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========                                                            |  15%... On acoustic time step ('timestep_detection') 16. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |===========                                                           |  16%... On acoustic time step ('timestep_detection') 17. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============                                                          |  17%... On acoustic time step ('timestep_detection') 18. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%... On acoustic time step ('timestep_detection') 19. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%... On acoustic time step ('timestep_detection') 20. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%... On acoustic time step ('timestep_detection') 21. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%... On acoustic time step ('timestep_detection') 22. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%... On acoustic time step ('timestep_detection') 23. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================                                                      |  23%... On acoustic time step ('timestep_detection') 24. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  24%... On acoustic time step ('timestep_detection') 25. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================                                                     |  25%... On acoustic time step ('timestep_detection') 26. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================                                                    |  26%... On acoustic time step ('timestep_detection') 27. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  27%... On acoustic time step ('timestep_detection') 28. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================                                                   |  28%... On acoustic time step ('timestep_detection') 29. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |====================                                                  |  29%... On acoustic time step ('timestep_detection') 30. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%... On acoustic time step ('timestep_detection') 31. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================                                                 |  31%... On acoustic time step ('timestep_detection') 32. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================                                                |  32%... On acoustic time step ('timestep_detection') 33. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================                                               |  33%... On acoustic time step ('timestep_detection') 34. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  34%... On acoustic time step ('timestep_detection') 35. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================                                              |  35%... On acoustic time step ('timestep_detection') 36. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================                                             |  36%... On acoustic time step ('timestep_detection') 37. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  37%... On acoustic time step ('timestep_detection') 38. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================                                            |  38%... On acoustic time step ('timestep_detection') 39. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%... On acoustic time step ('timestep_detection') 40. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  40%... On acoustic time step ('timestep_detection') 41. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================                                          |  41%... On acoustic time step ('timestep_detection') 42. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%... On acoustic time step ('timestep_detection') 43. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%... On acoustic time step ('timestep_detection') 44. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================                                        |  44%... On acoustic time step ('timestep_detection') 45. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===============================                                       |  45%... On acoustic time step ('timestep_detection') 46. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |================================                                      |  46%... On acoustic time step ('timestep_detection') 47. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%... On acoustic time step ('timestep_detection') 48. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is constant ... 
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%... On acoustic time step ('timestep_detection') 49. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================                                    |  49%... On acoustic time step ('timestep_detection') 50. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================                                   |  50%... On acoustic time step ('timestep_detection') 51. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... On acoustic time step ('timestep_detection') 52. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%... On acoustic time step ('timestep_detection') 53. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%... On acoustic time step ('timestep_detection') 54. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%... On acoustic time step ('timestep_detection') 55. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%... On acoustic time step ('timestep_detection') 56. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is constant ... 
#> 
  |                                                                            
  |=======================================                               |  55%... On acoustic time step ('timestep_detection') 57. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%... On acoustic time step ('timestep_detection') 58. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================                              |  57%... On acoustic time step ('timestep_detection') 59. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%... On acoustic time step ('timestep_detection') 60. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  59%... On acoustic time step ('timestep_detection') 61. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================                            |  60%... On acoustic time step ('timestep_detection') 62. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================                           |  61%... On acoustic time step ('timestep_detection') 63. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  62%... On acoustic time step ('timestep_detection') 64. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |============================================                          |  63%... On acoustic time step ('timestep_detection') 65. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================                         |  64%... On acoustic time step ('timestep_detection') 66. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%... On acoustic time step ('timestep_detection') 67. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%... On acoustic time step ('timestep_detection') 68. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%... On acoustic time step ('timestep_detection') 69. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%... On acoustic time step ('timestep_detection') 70. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%... On acoustic time step ('timestep_detection') 71. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=================================================                     |  70%... On acoustic time step ('timestep_detection') 72. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==================================================                    |  71%... On acoustic time step ('timestep_detection') 73. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===================================================                   |  72%... On acoustic time step ('timestep_detection') 74. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%... On acoustic time step ('timestep_detection') 75. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%... On acoustic time step ('timestep_detection') 76. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%... On acoustic time step ('timestep_detection') 77. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=====================================================                 |  76%... On acoustic time step ('timestep_detection') 78. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |======================================================                |  77%... On acoustic time step ('timestep_detection') 79. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  78%... On acoustic time step ('timestep_detection') 80. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=======================================================               |  79%... On acoustic time step ('timestep_detection') 81. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |========================================================              |  80%... On acoustic time step ('timestep_detection') 82. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=========================================================             |  81%... On acoustic time step ('timestep_detection') 83. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  82%... On acoustic time step ('timestep_detection') 84. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==========================================================            |  83%... On acoustic time step ('timestep_detection') 85. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |===========================================================           |  84%... On acoustic time step ('timestep_detection') 86. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 3. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 4. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 5. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 6. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 7. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 8. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 9. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 10. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 11. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 12. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 13. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 14. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 15. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 16. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 17. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 18. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 19. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 20. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 21. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 22. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 23. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 24. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 25. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 26. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 27. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 28. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 29. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 30. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 31. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 32. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 33. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 34. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 35. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 36. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 37. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 38. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 39. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 40. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 41. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 42. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 43. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 44. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 45. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 46. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 47. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 48. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 49. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 50. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 51. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 52. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 53. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 54. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 55. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 56. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 57. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 58. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 59. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 60. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 61. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 62. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 63. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 64. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 65. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 66. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 67. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 68. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 69. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 70. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 71. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 72. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 73. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 74. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 75. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 76. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 77. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 78. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 79. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 80. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 81. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 82. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 83. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 84. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 85. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 86. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 87. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 88. 
#> ... ... ... Acoustic container is shrinking ... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%... On acoustic time step ('timestep_detection') 87. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%... On acoustic time step ('timestep_detection') 88. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |=============================================================         |  87%... On acoustic time step ('timestep_detection') 89. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  88%... On acoustic time step ('timestep_detection') 90. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> 
  |                                                                            
  |==============================================================        |  89%... On acoustic time step ('timestep_detection') 91. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> ... ... On internal time step ('timestep_archival') 2. 
#> ... ... ... Acoustic container is expanding... 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%... On acoustic time step ('timestep_detection') 92. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%... On acoustic time step ('timestep_detection') 93. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%... On acoustic time step ('timestep_detection') 94. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%... On acoustic time step ('timestep_detection') 95. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%... On acoustic time step ('timestep_detection') 96. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%... On acoustic time step ('timestep_detection') 97. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> ... ... On internal time step ('timestep_archival') 2. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%... On acoustic time step ('timestep_detection') 98. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%... On acoustic time step ('timestep_detection') 99. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%... On acoustic time step ('timestep_detection') 100. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%... On acoustic time step ('timestep_detection') 101. 
#> ... ... On internal time step ('timestep_archival') 1. 
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================================================| 100%
#> ... Movement over acoustic and internal ('archival') time steps has been completed. 
#> ... flapper::.acs() call completed (@ 2023-08-29 15:40:09) after ~0.19 minutes. 
## Comparison of final maps
pp <- par(mfrow = c(2, 2))
raster::plot(out_acdc_4a$map, main = "4a")
raster::plot(out_acdc_4b$map, main = "4b")
raster::plot(out_acdc_4c$map, main = "4c")
raster::plot(out_acdc_4d$map, main = "4d")

par(pp)

#### Example (5): Implement AC or ACDC algorithm and write messages to file via 'con'
out_acdc_5 <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2),
  verbose = TRUE,
  con = paste0(tempdir(), "/", "acdc_log.txt")
)
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%
  |                                                                            
  |=                                                                     |   1%
  |                                                                            
  |=                                                                     |   2%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%
  |                                                                            
  |===                                                                   |   4%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%
  |                                                                            
  |====                                                                  |   6%
  |                                                                            
  |=====                                                                 |   7%
  |                                                                            
  |======                                                                |   8%
  |                                                                            
  |======                                                                |   9%
  |                                                                            
  |=======                                                               |  10%
  |                                                                            
  |========                                                              |  11%
  |                                                                            
  |========                                                              |  12%
  |                                                                            
  |=========                                                             |  13%
  |                                                                            
  |==========                                                            |  14%
  |                                                                            
  |==========                                                            |  15%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========                                                           |  16%
  |                                                                            
  |============                                                          |  17%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%
  |                                                                            
  |================                                                      |  23%
  |                                                                            
  |=================                                                     |  24%
  |                                                                            
  |=================                                                     |  25%
  |                                                                            
  |==================                                                    |  26%
  |                                                                            
  |===================                                                   |  27%
  |                                                                            
  |===================                                                   |  28%
  |                                                                            
  |====================                                                  |  29%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%
  |                                                                            
  |=====================                                                 |  31%
  |                                                                            
  |======================                                                |  32%
  |                                                                            
  |=======================                                               |  33%
  |                                                                            
  |========================                                              |  34%
  |                                                                            
  |========================                                              |  35%
  |                                                                            
  |=========================                                             |  36%
  |                                                                            
  |==========================                                            |  37%
  |                                                                            
  |==========================                                            |  38%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%
  |                                                                            
  |============================                                          |  40%
  |                                                                            
  |============================                                          |  41%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%
  |                                                                            
  |==============================                                        |  44%
  |                                                                            
  |===============================                                       |  45%
  |                                                                            
  |================================                                      |  46%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%
  |                                                                            
  |==================================                                    |  49%
  |                                                                            
  |===================================                                   |  50%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=======================================                               |  55%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%
  |                                                                            
  |========================================                              |  57%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%
  |                                                                            
  |==========================================                            |  59%
  |                                                                            
  |==========================================                            |  60%
  |                                                                            
  |===========================================                           |  61%
  |                                                                            
  |============================================                          |  62%
  |                                                                            
  |============================================                          |  63%
  |                                                                            
  |=============================================                         |  64%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%
  |                                                                            
  |=================================================                     |  70%
  |                                                                            
  |==================================================                    |  71%
  |                                                                            
  |===================================================                   |  72%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%
  |                                                                            
  |=====================================================                 |  76%
  |                                                                            
  |======================================================                |  77%
  |                                                                            
  |=======================================================               |  78%
  |                                                                            
  |=======================================================               |  79%
  |                                                                            
  |========================================================              |  80%
  |                                                                            
  |=========================================================             |  81%
  |                                                                            
  |==========================================================            |  82%
  |                                                                            
  |==========================================================            |  83%
  |                                                                            
  |===========================================================           |  84%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%
  |                                                                            
  |=============================================================         |  87%
  |                                                                            
  |==============================================================        |  88%
  |                                                                            
  |==============================================================        |  89%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================================================| 100%
# Check log
utils::head(readLines(paste0(tempdir(), "/", "acdc_log.txt")))
#> [1] "flapper::.acs_pl() called (@ 2023-08-29 15:21:57)... "
#> [2] "... Checking user inputs... "                         
#> [3] "... Splitting 'acoustics' into chunks... "            
#> [4] "... Processing acoustics chunks... "                  
#> [5] "... ... Checking for NULL/empty chunks... "           
#> [6] "... ... Overlapping chunks... "                       
utils::tail(readLines(paste0(tempdir(), "/", "acdc_log.txt")))
#> [1] "... On acoustic time step ('timestep_detection') 100. "                              
#> [2] "... ... On internal time step ('timestep_archival') 1. "                             
#> [3] "... On acoustic time step ('timestep_detection') 101. "                              
#> [4] "... ... On internal time step ('timestep_archival') 1. "                             
#> [5] "... Movement over acoustic and internal ('archival') time steps has been completed. "
#> [6] "... flapper::.acs() call completed (@ 2023-08-29 15:40:18) after ~0.16 minutes. "    

#### Example (6): Implement AC or ACDC algorithm and return spatial information
# Specify save_record_spatial = NULL to include spatial information for all time steps
# ... (used for plotting) or a vector to include this information for specific time steps
out_acdc_6 <- flapper:::.acs(
  acoustics = acc,
  archival = arc,
  bathy = gebco,
  detection_containers = dat_containers,
  mobility = 200,
  calc_depth_error = function(...) matrix(c(-2.5, 2.5), nrow = 2),
  save_record_spatial = NULL,
  verbose = TRUE,
  con = paste0(tempdir(), "/", "acdc_log.txt")
)
#> 'calc_depth_error' function taken to be independent of depth.
#> 
  |                                                                            
  |                                                                      |   0%
  |                                                                            
  |=                                                                     |   1%
  |                                                                            
  |=                                                                     |   2%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==                                                                    |   3%
  |                                                                            
  |===                                                                   |   4%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===                                                                   |   5%
  |                                                                            
  |====                                                                  |   6%
  |                                                                            
  |=====                                                                 |   7%
  |                                                                            
  |======                                                                |   8%
  |                                                                            
  |======                                                                |   9%
  |                                                                            
  |=======                                                               |  10%
  |                                                                            
  |========                                                              |  11%
  |                                                                            
  |========                                                              |  12%
  |                                                                            
  |=========                                                             |  13%
  |                                                                            
  |==========                                                            |  14%
  |                                                                            
  |==========                                                            |  15%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========                                                           |  16%
  |                                                                            
  |============                                                          |  17%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============                                                          |  18%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============                                                         |  19%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============                                                        |  20%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  21%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============                                                       |  22%
  |                                                                            
  |================                                                      |  23%
  |                                                                            
  |=================                                                     |  24%
  |                                                                            
  |=================                                                     |  25%
  |                                                                            
  |==================                                                    |  26%
  |                                                                            
  |===================                                                   |  27%
  |                                                                            
  |===================                                                   |  28%
  |                                                                            
  |====================                                                  |  29%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================                                                 |  30%
  |                                                                            
  |=====================                                                 |  31%
  |                                                                            
  |======================                                                |  32%
  |                                                                            
  |=======================                                               |  33%
  |                                                                            
  |========================                                              |  34%
  |                                                                            
  |========================                                              |  35%
  |                                                                            
  |=========================                                             |  36%
  |                                                                            
  |==========================                                            |  37%
  |                                                                            
  |==========================                                            |  38%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===========================                                           |  39%
  |                                                                            
  |============================                                          |  40%
  |                                                                            
  |============================                                          |  41%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=============================                                         |  42%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================                                        |  43%
  |                                                                            
  |==============================                                        |  44%
  |                                                                            
  |===============================                                       |  45%
  |                                                                            
  |================================                                      |  46%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  47%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================                                     |  48%
  |                                                                            
  |==================================                                    |  49%
  |                                                                            
  |===================================                                   |  50%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================                                  |  51%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  52%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================                                 |  53%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |======================================                                |  54%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=======================================                               |  55%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |========================================                              |  56%
  |                                                                            
  |========================================                              |  57%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=========================================                             |  58%
  |                                                                            
  |==========================================                            |  59%
  |                                                                            
  |==========================================                            |  60%
  |                                                                            
  |===========================================                           |  61%
  |                                                                            
  |============================================                          |  62%
  |                                                                            
  |============================================                          |  63%
  |                                                                            
  |=============================================                         |  64%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  65%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==============================================                        |  66%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================                       |  67%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================                      |  68%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================                     |  69%
  |                                                                            
  |=================================================                     |  70%
  |                                                                            
  |==================================================                    |  71%
  |                                                                            
  |===================================================                   |  72%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================                   |  73%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================                  |  74%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=====================================================                 |  75%
  |                                                                            
  |=====================================================                 |  76%
  |                                                                            
  |======================================================                |  77%
  |                                                                            
  |=======================================================               |  78%
  |                                                                            
  |=======================================================               |  79%
  |                                                                            
  |========================================================              |  80%
  |                                                                            
  |=========================================================             |  81%
  |                                                                            
  |==========================================================            |  82%
  |                                                                            
  |==========================================================            |  83%
  |                                                                            
  |===========================================================           |  84%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  85%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |============================================================          |  86%
  |                                                                            
  |=============================================================         |  87%
  |                                                                            
  |==============================================================        |  88%
  |                                                                            
  |==============================================================        |  89%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===============================================================       |  90%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  91%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |================================================================      |  92%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |=================================================================     |  93%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |==================================================================    |  94%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  95%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================   |  96%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |====================================================================  |  97%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  98%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> 
  |                                                                            
  |===================================================================== |  99%
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others
#> Warning: GEOS support is provided by the sf and terra packages among others

#> 
  |                                                                            
  |======================================================================| 100%