Particle algorithms for animal movement modelling in
Julia
Patter.jl
provides particle filtering, smoothing and sampling
algorithms for animal movement modelling, with a focus on passive
acoustic telemetry systems. The package is heavily based on the
ParticleFish
package
developed by Andreas
Scheidegger.
Patter.jl
forms the backend for the
patter
R
package.
Note:
Patter.jl
is a newJulia
package. Like all new packages, you should use it with a degree of caution. Please share feedback and issues.
Patter.jl
is designed to reconstruct movement paths and emergent
patterns of space use from animal tracking data. A powerful, flexible,
process-orientated, particle-based framework is used for this purpose.
The essential functions are particle_filter()
and
particle_smoother_two_filter()
:
particle_filter()
is the particle filter. This simulates the possible locations of an individual moving forwards in time, accounting for all of the data (for example, acoustic observations, depth observations and any other observations) up to each time point and the animal’s movement (a partial marginal distribution).particle_smoother_two_filter()
is a particle smoothing algorithm. At each time step, the smoother accounts for all of the data from both the past and the future (the full marginal distribution) and substantially refines maps of space use.
We hope to add backward sampling algorithms to the package in due course.
-
Install
Julia
≥ v.1.9; -
Install
Patter.jl
:- Use
]
in the Julia REPL to open the package manager; - Use
add https://github.com/edwardlavender/Patter.jl
to installPatter.jl
;
- Use
You can also Patter.jl
via the patter
R
wrapper.
Patter.jl
is based on three Abstract Types, defined in Julia
:
State
structures hold the state (location) of an animal at a given time step;ModelMove
structures hold movement model, used to simulate new states;ModelObs
structures hold observation model parameters, used to evaluate the correspondence between simulated states and observations;
To simulate datasets, use:
sim_path_walk()
to simulate a movement path from a walk model (viaModelMove
);sim_observations()
to simulate observational time series (viaModelObs
);
To collate real-world datasets, use:
assemble_yobs()
to assemble a hash-table of observations and observation model parameters;
This function expects a Vector
of DataFrame
s, one for each data
type, that comprise a timeline of observations and associated model
parameters, and a corresponding Vector
of observation model
(ModelObs
) sub-types.
To simulate initial states (i.e., locations) for the particle filter, use:
simulate_states_init()
to simulate states across an area;
To define a movement model, see:
?ModelMove
to create a movement model instance;
For available observation models, see:
?ModelObs
To implement the particle filter, use:
particle_filter()
to run the filter;
To implement the two-filter smoother, use:
particle_smoother_two_filter()
to run the smoother;
This is the basic Patter.jl
workflow to reconstruct movement paths and
patterns of space use from animal tracking data. First, we load some
essential packages:
# Activate project
using Pkg
Pkg.activate(".")
using Patter
# Load supporting packages
import ArchGDAL
import CSV
using DataFrames
using Dates
using Distributions
import GeoArrays
using Plots
import Random
using Rasters
using RCall
Next, we set the seed to ensure reproducibility of our simulations and check the number of threads:
# Set seed
Random.seed!(123);
# Check threads
Threads.nthreads()
#> 11
Third, we define the properties of our study area; namely, a Raster
and GeoArray
of our study area that defines the environment within
which movements are possible and the timeline over which we will model
movements:
# Read a UTM bathymetry rasters that defines the 'environment' within which movements occurred
# * `env_init` is a Raster that is used for sampling initial states (locations)
# * `env` is a GeoArray that is used by the algorithms (faster)
env_init = Patter.rast(joinpath("data", "bathymetry.tif"));
env = GeoArrays.read(joinpath("data", "bathymetry.tif"));
# Define a timeline for the analysis
# * This specifies the time period and resolution of the analysis
timeline = collect(DateTime("2016-03-17T01:50:00"):Minute(2):DateTime("2016-03-18T01:48:00"));
We will reconstruct the movements of a tagged flapper skate (Dipturus
intermedius) within a study area off the west coast of Scotland, based
on electronic tagging and tracking data. To do so, we need a model for
the individual’s movements and a series of observation models that
connect movements to observations. In this example, we are interested in
the two-dimensional (x, y) location of our animal through time (that is,
the animal’s ‘state’ is an object of type StateXY
). The animal can
move up to 750 m in two minutes, which is the resolution at which we
will model movement, and we formulate a random walk model (using a
ModelMove
structure) accordingly based on step lengths and headings:
# Formulate a movement model
model_move = ModelMoveXY(env,
750.0,
truncated(Gamma(1, 250.0), upper = 750.0),
Uniform(-pi, pi));
# Simulate realisation(s) of the movement model
path = simulate_path_walk(xinit = [StateXY(67.87914, 708817.4, 6259203)],
model_move = model_move,
timeline = timeline)
#> 1×720 Matrix{StateXY}:
#> StateXY(67.8791, 7.08817e5, 6.2592e6) … StateXY(21.1177, 7.04308e5, 6.26325e6)
# Extract x and y coordinates for visualisation
x = [path[1, i].x for i in 1:size(path, 2)];
y = [path[1, i].y for i in 1:size(path, 2)];
# Visualise the simulated movement path
p = plot(env, xticks = 5, yticks = 5);
scatter!(p, x, y, color = :red, label = false);
display(p)
See ?State
and ?ModelMove
for built-in State
s and movement models.
Define a custom sub-type via struct StateCustom <: Patter.State
or
struct ModelMoveCustom <: Patter.ModelMove
and see the help files for
the additional methods that need to be provided.
We have collected acoustic and archival (depth) observations from tagged
flapper skate. Here, we load the time series for a selected individual.
For analysis using Patter.jl
, each dataset must comprise: a
timestamp
column, that defines the time of an observation; a
sensor_id
that distinguishes sensors (such as acoustic receivers), an
obs
column that defines the observation (0
or 1
in the case of
acoustic observations); and additional columns that define the
parameters of an observation model (ModelObs
) structure that links
movement to the observations. The time series include (a) a standard
acoustic dataset, a corresponding dataset of acoustic containers and a
standard archival dataset. The acoustic containers dataset is derived
from the acoustic dataset and defines the maximum possible distance of
the individual from the receiver(s) that recorded the next detection(s)
at each time step. This dataset facilitates convergence in the particle
filter. The wrapper patter
package contains helper routines for the assembly of these datasets, if
required.
# Read acoustic (0, 1) observations
acoustics = CSV.read(joinpath("data", "acoustics.csv"), DataFrame);
first(acoustics, 6)
#> 6×8 DataFrame
#> Row │ timestamp sensor_id obs receiver_x receiver_y receiver ⋯
#> │ String31 Int64 Int64 Float64 Float64 Int64 ⋯
#> ─────┼──────────────────────────────────────────────────────────────────────────
#> 1 │ 2016-03-17 01:50:00 3 0 7.06442e5 6.25401e6 ⋯
#> 2 │ 2016-03-17 01:50:00 4 0 7.09742e5 6.26771e6
#> 3 │ 2016-03-17 01:50:00 7 0 7.08742e5 6.26911e6
#> 4 │ 2016-03-17 01:50:00 9 0 7.06042e5 6.25431e6
#> 5 │ 2016-03-17 01:50:00 11 0 7.07542e5 6.26771e6 ⋯
#> 6 │ 2016-03-17 01:50:00 12 0 7.10042e5 6.26731e6
#> 3 columns omitted
# Read acoustic containers looking 'forwards' or 'backwards' in time
containers_fwd = CSV.read(joinpath("data", "containers-fwd.csv"), DataFrame);
first(containers_fwd, 6)
#> 6×6 DataFrame
#> Row │ timestamp obs sensor_id centroid_x centroid_y radius
#> │ String31 Int64 Int64 Float64 Float64 Int64
#> ─────┼───────────────────────────────────────────────────────────────────────
#> 1 │ 2016-03-17 01:50:00 1 26 7.09242e5 6.25311e6 1500
#> 2 │ 2016-03-17 01:52:00 1 26 7.09242e5 6.25311e6 1500
#> 3 │ 2016-03-17 01:54:00 1 26 7.09242e5 6.25311e6 2250
#> 4 │ 2016-03-17 01:56:00 1 26 7.09242e5 6.25311e6 1500
#> 5 │ 2016-03-17 01:58:00 1 26 7.09242e5 6.25311e6 1500
#> 6 │ 2016-03-17 02:00:00 1 26 7.09242e5 6.25311e6 2250
containers_bwd = CSV.read(joinpath("data", "containers-bwd.csv"), DataFrame);
first(containers_bwd, 6)
#> 6×6 DataFrame
#> Row │ timestamp obs sensor_id centroid_x centroid_y radius
#> │ String31 Int64 Int64 Float64 Float64 Float64
#> ─────┼────────────────────────────────────────────────────────────────────────
#> 1 │ 2016-03-17 01:52:00 1 26 7.09242e5 6.25311e6 1500.0
#> 2 │ 2016-03-17 01:54:00 1 26 7.09242e5 6.25311e6 1500.0
#> 3 │ 2016-03-17 01:56:00 1 26 7.09242e5 6.25311e6 1500.0
#> 4 │ 2016-03-17 01:58:00 1 26 7.09242e5 6.25311e6 2250.0
#> 5 │ 2016-03-17 02:00:00 1 26 7.09242e5 6.25311e6 1500.0
#> 6 │ 2016-03-17 02:02:00 1 26 7.09242e5 6.25311e6 1500.0
# Read archival (depth) observations
archival = CSV.read(joinpath("data", "archival.csv"), DataFrame);
first(archival, 6)
#> 6×5 DataFrame
#> Row │ timestamp sensor_id obs depth_sigma depth_deep_eps
#> │ String31 Int64 Float64 Int64 Int64
#> ─────┼──────────────────────────────────────────────────────────────────────
#> 1 │ 2016-03-17 01:50:00 1 73.78 50 50
#> 2 │ 2016-03-17 01:52:00 1 73.32 50 50
#> 3 │ 2016-03-17 01:54:00 1 73.32 50 50
#> 4 │ 2016-03-17 01:56:00 1 73.32 50 50
#> 5 │ 2016-03-17 01:58:00 1 73.55 50 50
#> 6 │ 2016-03-17 02:00:00 1 68.7 50 50
Individual movements are connected to the observations by models of the observation process for each dataset. Without going into details, here we bundle together the observations with the parameters of the observation models in a typed dictionary for analysis:
# Process time stamps
acoustics.timestamp = DateTime.(acoustics.timestamp, "yyyy-mm-dd HH:MM:SS");
containers_fwd.timestamp = DateTime.(containers_fwd.timestamp, "yyyy-mm-dd HH:MM:SS");
containers_bwd.timestamp = DateTime.(containers_bwd.timestamp, "yyyy-mm-dd HH:MM:SS");
archival.timestamp = DateTime.(archival.timestamp, "yyyy-mm-dd HH:MM:SS");
# Collate datasets & associated `ModelObs` instances into a typed dictionary
# * Acoustic containers are direction specific, so two datasets are required
# * (for forward & backward runs of the particle filter, respectively)
datasets_fwd = [acoustics, containers_fwd, archival];
datasets_bwd = [acoustics, containers_bwd, archival];
model_obs_types = [ModelObsAcousticLogisTrunc,
ModelObsContainer,
ModelObsDepthNormalTruncSeabed];
yobs_fwd = assemble_yobs(datasets = datasets_fwd,
model_obs_types = model_obs_types);
yobs_bwd = assemble_yobs(datasets = datasets_bwd,
model_obs_types = model_obs_types);
Of course, you do not need acoustic and archival data to implement the
algorithms: these are just the data we have collected from flapper skate
and they are convenient to illustrate because we have built-in
corresponding ModelObs
sub-types into the package. However, other
datasets can be incorporated almost as easily via custom ModelObs
sub-types (that is, struct ModelObsCustom <: Patter.ModelObs
) and some
supporting methods (see the package help files for details). To simulate
observations instead, see simulate_yobs()
.
We are now in a position to run the particle filter. This runs a
simulation forwards (or backwards) in time, sampling states (locations,
termed ‘particles’) that are consistent with the movement model and the
observations up to and including each time point. We end up with a time
series (Matrix
) of particles (State
instances) that approximate the
partial marginal distribution for the location of the animal at each
time step:
# Simulate initial states for the forward filter
xinit = simulate_states_init(map = env_init,
timeline = timeline,
state_type = StateXY,
xinit = nothing,
model_move = model_move,
datasets = datasets_fwd,
model_obs_types = model_obs_types,
n_particle = 10_000,
direction = "forward",
output = "Vector");
# Run the forward filter
fwd = particle_filter(timeline = timeline,
xinit = xinit,
yobs = yobs_fwd,
model_move = model_move,
n_record = 1000,
direction = "forward");
# Simulate initial states for the backward filter
xinit = simulate_states_init(map = env_init,
timeline = timeline,
state_type = StateXY,
xinit = nothing,
model_move = model_move,
datasets = datasets_bwd,
model_obs_types = model_obs_types,
n_particle = 10_000,
direction = "backward",
output = "Vector");
# Run the backward filter
bwd = particle_filter(timeline = timeline,
xinit = xinit,
yobs = yobs_bwd,
model_move = model_move,
n_record = 1000,
direction = "backward");
The filter returns a NamedTuple
that defines the time steps of the
simulation, the simulated State
s and other algorithm diagnostics.
# Forward run outputs
fwd.states
#> 1000×720 Matrix{StateXY}:
#> StateXY(44.4676, 7.09342e5, 6.25281e6) … StateXY(136.874, 7.0806e5, 6.254e6)
#> StateXY(45.8829, 7.09342e5, 6.25291e6) StateXY(160.619, 7.089e5, 6.25582e6)
#> StateXY(96.3866, 7.09142e5, 6.25351e6) StateXY(184.369, 7.07857e5, 6.25489e6)
#> StateXY(99.904, 7.09042e5, 6.25341e6) StateXY(194.897, 7.07953e5, 6.25548e6)
#> StateXY(108.305, 7.09042e5, 6.25351e6) StateXY(161.318, 7.08056e5, 6.25478e6)
#> StateXY(66.5518, 7.09042e5, 6.25301e6) … StateXY(176.088, 7.0842e5, 6.25532e6)
#> StateXY(66.5209, 7.09142e5, 6.25311e6) StateXY(156.601, 7.08301e5, 6.25499e6)
#> StateXY(58.1742, 7.09242e5, 6.25311e6) StateXY(165.221, 7.07309e5, 6.25547e6)
#> StateXY(43.7687, 7.09142e5, 6.25251e6) StateXY(179.769, 7.07667e5, 6.2543e6)
#> StateXY(55.4285, 7.09442e5, 6.25341e6) StateXY(163.07, 7.08572e5, 6.255e6)
#> ⋮ ⋱
#> StateXY(58.1742, 7.09242e5, 6.25311e6) StateXY(197.54, 7.07685e5, 6.25548e6)
#> StateXY(60.1304, 7.09642e5, 6.25371e6) StateXY(141.869, 7.09099e5, 6.25526e6)
#> StateXY(63.3537, 7.09242e5, 6.25321e6) StateXY(170.846, 7.08447e5, 6.25522e6)
#> StateXY(59.7652, 7.09142e5, 6.25301e6) StateXY(196.15, 7.07629e5, 6.25478e6)
#> StateXY(58.245, 7.09042e5, 6.25291e6) … StateXY(171.983, 7.08549e5, 6.25519e6)
#> StateXY(40.8684, 7.09442e5, 6.25271e6) StateXY(173.144, 7.07557e5, 6.25418e6)
#> StateXY(46.5354, 7.09242e5, 6.25281e6) StateXY(176.652, 7.08745e5, 6.25548e6)
#> StateXY(66.5518, 7.09042e5, 6.25301e6) StateXY(158.06, 7.0897e5, 6.25551e6)
#> StateXY(39.4372, 7.09842e5, 6.25351e6) StateXY(192.47, 7.08328e5, 6.25563e6)
fwd.diagnostics
#> 720×4 DataFrame
#> Row │ timestep timestamp ess maxlp
#> │ Int64 DateTime Float64 Float64
#> ─────┼─────────────────────────────────────────────────────
#> 1 │ 1 2016-03-17T01:50:00 4316.54 -4.93421
#> 2 │ 2 2016-03-17T01:52:00 2165.62 -9.85237
#> 3 │ 3 2016-03-17T01:54:00 1299.88 -14.807
#> 4 │ 4 2016-03-17T01:56:00 801.53 -19.5221
#> 5 │ 5 2016-03-17T01:58:00 4972.75 -4.9166
#> 6 │ 6 2016-03-17T02:00:00 2701.24 -9.82558
#> 7 │ 7 2016-03-17T02:02:00 1797.87 -14.4962
#> 8 │ 8 2016-03-17T02:04:00 1285.8 -20.4738
#> ⋮ │ ⋮ ⋮ ⋮ ⋮
#> 714 │ 714 2016-03-18T01:36:00 1372.5 -158.818
#> 715 │ 715 2016-03-18T01:38:00 1235.94 -163.479
#> 716 │ 716 2016-03-18T01:40:00 1120.06 -168.172
#> 717 │ 717 2016-03-18T01:42:00 1008.74 -172.874
#> 718 │ 718 2016-03-18T01:44:00 922.682 -177.54
#> 719 │ 719 2016-03-18T01:46:00 9589.59 -4.658
#> 720 │ 720 2016-03-18T01:48:00 9062.0 -9.31601
#> 705 rows omitted
fwd.callstats
#> 1×7 DataFrame
#> Row │ timestamp routine n_particle n_iter loglik ⋯
#> │ DateTime String Int64 Int64 Float64 ⋯
#> ─────┼──────────────────────────────────────────────────────────────────────────
#> 1 │ 2025-04-17T15:16:55.379 filter: forward 10000 1 -48178.5 ⋯
#> 2 columns omitted
fwd.callstats.convergence
#> 1-element Vector{Bool}:
#> 1
fwd.callstats.time
#> 1-element Vector{Float64}:
#> 1.634
# Backward run outputs
bwd.states
#> 1000×720 Matrix{StateXY}:
#> StateXY(103.431, 7.08858e5, 6.25323e6) … StateXY(144.292, 7.10542e5, 6.26931e6)
#> StateXY(41.503, 7.09533e5, 6.25288e6) StateXY(163.414, 7.08742e5, 6.26871e6)
#> StateXY(50.7159, 7.09123e5, 6.25282e6) StateXY(182.052, 7.09242e5, 6.26711e6)
#> StateXY(46.5354, 7.09288e5, 6.25278e6) StateXY(196.778, 7.07442e5, 6.26641e6)
#> StateXY(83.2153, 7.09008e5, 6.25321e6) StateXY(181.061, 7.08642e5, 6.25551e6)
#> StateXY(52.9828, 7.09302e5, 6.25311e6) … StateXY(179.068, 7.06442e5, 6.24941e6)
#> StateXY(60.0933, 7.09298e5, 6.25332e6) StateXY(184.952, 7.09442e5, 6.25741e6)
#> StateXY(45.8603, 7.09398e5, 6.25301e6) StateXY(146.696, 7.08742e5, 6.25381e6)
#> StateXY(49.4275, 709304.0, 6.25298e6) StateXY(159.439, 7.08942e5, 6.25571e6)
#> StateXY(80.0324, 7.09106e5, 6.2533e6) StateXY(195.136, 7.07942e5, 6.26721e6)
#> ⋮ ⋱
#> StateXY(52.9947, 7.09261e5, 6.25301e6) StateXY(192.582, 7.07442e5, 6.25521e6)
#> StateXY(49.4275, 7.09371e5, 6.25304e6) StateXY(139.532, 7.06742e5, 6.26741e6)
#> StateXY(52.9947, 7.09291e5, 6.25305e6) StateXY(187.438, 7.08242e5, 6.26661e6)
#> StateXY(73.2767, 709156.0, 6.25324e6) StateXY(137.224, 7.10042e5, 6.26831e6)
#> StateXY(80.0324, 7.09147e5, 6.25332e6) … StateXY(132.682, 7.07942e5, 6.25681e6)
#> StateXY(91.547, 7.09042e5, 6.25331e6) StateXY(143.899, 7.07342e5, 6.26481e6)
#> StateXY(65.3167, 7.09311e5, 6.25345e6) StateXY(192.776, 7.09142e5, 6.25731e6)
#> StateXY(42.3998, 7.09407e5, 6.25283e6) StateXY(136.109, 7.09142e5, 6.25441e6)
#> StateXY(59.7652, 7.09127e5, 6.25297e6) StateXY(147.137, 7.10642e5, 6.26971e6)
bwd.diagnostics
#> 720×4 DataFrame
#> Row │ timestep timestamp ess maxlp
#> │ Int64 DateTime Float64 Float64
#> ─────┼────────────────────────────────────────────────────
#> 1 │ 1 2016-03-17T01:50:00 1448.79 -19.9716
#> 2 │ 2 2016-03-17T01:52:00 2349.48 -14.7268
#> 3 │ 3 2016-03-17T01:54:00 3864.22 -9.59918
#> 4 │ 4 2016-03-17T01:56:00 5177.9 -4.54713
#> 5 │ 5 2016-03-17T01:58:00 844.0 -30.3056
#> 6 │ 6 2016-03-17T02:00:00 1397.28 -25.1394
#> 7 │ 7 2016-03-17T02:02:00 1894.62 -19.6937
#> 8 │ 8 2016-03-17T02:04:00 3168.63 -14.7673
#> ⋮ │ ⋮ ⋮ ⋮ ⋮
#> 714 │ 714 2016-03-18T01:36:00 4992.06 -32.6185
#> 715 │ 715 2016-03-18T01:38:00 5178.1 -27.9506
#> 716 │ 716 2016-03-18T01:40:00 5584.11 -23.2906
#> 717 │ 717 2016-03-18T01:42:00 6171.83 -18.6322
#> 718 │ 718 2016-03-18T01:44:00 7024.63 -13.974
#> 719 │ 719 2016-03-18T01:46:00 8041.25 -9.31601
#> 720 │ 720 2016-03-18T01:48:00 9428.8 -4.658
#> 705 rows omitted
bwd.callstats
#> 1×7 DataFrame
#> Row │ timestamp routine n_particle n_iter loglik ⋯
#> │ DateTime String Int64 Int64 Float64 ⋯
#> ─────┼──────────────────────────────────────────────────────────────────────────
#> 1 │ 2025-04-17T15:16:57.198 filter: backward 10000 1 -53307.5 ⋯
#> 2 columns omitted
bwd.callstats.convergence
#> 1-element Vector{Bool}:
#> 1
bwd.callstats.time
#> 1-element Vector{Float64}:
#> 1.152
Particle smoothers refine the outputs from the particle filter. Smoothed particles approximate the full marginal distribution for the location of the individual at each time step (accounting for all of the data before and after each step):
# (optional) Set vmap to improve speed here
n_particle = 750;
smo = particle_smoother_two_filter(timeline = timeline,
xfwd = fwd.states[1:n_particle, :],
xbwd = bwd.states[1:n_particle, :],
model_move = model_move,
vmap = nothing,
n_sim = 100,
cache = true);
# Smooth outputs
smo.states
#> 750×720 Matrix{StateXY}:
#> StateXY(103.431, 7.08858e5, 6.25323e6) … StateXY(136.874, 7.0806e5, 6.254e6)
#> StateXY(41.503, 7.09533e5, 6.25288e6) StateXY(160.619, 7.089e5, 6.25582e6)
#> StateXY(50.7159, 7.09123e5, 6.25282e6) StateXY(184.369, 7.07857e5, 6.25489e6)
#> StateXY(46.5354, 7.09288e5, 6.25278e6) StateXY(194.897, 7.07953e5, 6.25548e6)
#> StateXY(83.2153, 7.09008e5, 6.25321e6) StateXY(161.318, 7.08056e5, 6.25478e6)
#> StateXY(52.9828, 7.09302e5, 6.25311e6) … StateXY(176.088, 7.0842e5, 6.25532e6)
#> StateXY(60.0933, 7.09298e5, 6.25332e6) StateXY(156.601, 7.08301e5, 6.25499e6)
#> StateXY(45.8603, 7.09398e5, 6.25301e6) StateXY(165.221, 7.07309e5, 6.25547e6)
#> StateXY(49.4275, 709304.0, 6.25298e6) StateXY(179.769, 7.07667e5, 6.2543e6)
#> StateXY(80.0324, 7.09106e5, 6.2533e6) StateXY(163.07, 7.08572e5, 6.255e6)
#> ⋮ ⋱
#> StateXY(63.3537, 7.09223e5, 6.25322e6) StateXY(185.654, 7.08384e5, 6.25547e6)
#> StateXY(58.1742, 7.09248e5, 6.25307e6) StateXY(169.994, 7.08716e5, 6.25521e6)
#> StateXY(99.904, 7.08998e5, 6.25336e6) StateXY(147.156, 7.0799e5, 6.25671e6)
#> StateXY(52.9947, 7.09254e5, 6.25305e6) StateXY(198.242, 7.07935e5, 6.25565e6)
#> StateXY(83.2153, 7.09091e5, 6.25319e6) … StateXY(187.454, 7.08988e5, 6.25654e6)
#> StateXY(83.2153, 7.08998e5, 6.25321e6) StateXY(171.469, 7.08638e5, 6.25519e6)
#> StateXY(44.4676, 7.09363e5, 6.25283e6) StateXY(182.406, 7.07868e5, 6.25477e6)
#> StateXY(58.1742, 7.09239e5, 6.25314e6) StateXY(163.07, 7.08526e5, 6.255e6)
#> StateXY(52.9947, 7.09198e5, 6.25304e6) StateXY(169.994, 7.08739e5, 6.25517e6)
smo.diagnostics
#> 720×4 DataFrame
#> Row │ timestep timestamp ess maxlp
#> │ Int64 DateTime Float64 Float64
#> ─────┼──────────────────────────────────────────────────
#> 1 │ 1 2016-03-17T01:50:00 750.0 NaN
#> 2 │ 2 2016-03-17T01:52:00 614.034 NaN
#> 3 │ 3 2016-03-17T01:54:00 583.459 NaN
#> 4 │ 4 2016-03-17T01:56:00 397.042 NaN
#> 5 │ 5 2016-03-17T01:58:00 642.436 NaN
#> 6 │ 6 2016-03-17T02:00:00 653.753 NaN
#> 7 │ 7 2016-03-17T02:02:00 438.507 NaN
#> 8 │ 8 2016-03-17T02:04:00 661.738 NaN
#> ⋮ │ ⋮ ⋮ ⋮ ⋮
#> 714 │ 714 2016-03-18T01:36:00 133.279 NaN
#> 715 │ 715 2016-03-18T01:38:00 143.806 NaN
#> 716 │ 716 2016-03-18T01:40:00 143.471 NaN
#> 717 │ 717 2016-03-18T01:42:00 141.136 NaN
#> 718 │ 718 2016-03-18T01:44:00 134.802 NaN
#> 719 │ 719 2016-03-18T01:46:00 97.8438 NaN
#> 720 │ 720 2016-03-18T01:48:00 750.0 NaN
#> 705 rows omitted
smo.callstats
#> 1×7 DataFrame
#> Row │ timestamp routine n_particle n_iter log ⋯
#> │ DateTime String Int64 Float64 Flo ⋯
#> ─────┼──────────────────────────────────────────────────────────────────────────
#> 1 │ 2025-04-17T15:16:59.531 smoother: two-filter 750 NaN ⋯
#> 3 columns omitted
smo.callstats.convergence
#> 1-element Vector{Bool}:
#> 1
smo.callstats.time
#> 1-element Vector{Float64}:
#> 4.251
Particles can be used to reconstruct movement paths and patterns of
space use. At the time of writing, Patter.jl
focuses entirely on the
provision of fast particle algorithms and lacks supporting routines for
mapping and visualisation. However, we can easily estimate a utilisation
distribution from Julia
using the wrapper
patter
R
package via
RCall
(on Windows and
MacOS). This is the R
code:
# Load & attach packages
library(patter, quietly = TRUE)
library(spatstat.explore, quietly = TRUE, warn.conflicts = FALSE)
op <- options(terra.pal = rev(terrain.colors(256)))
# Read map
map <- terra::rast(file.path("data", "bathymetry.tif"))
# Convert smoothed particles from `Julia` into a `pf_particles` object
smo <- patter:::pf_particles(.pf_obj = "smo")
# Estimate UD
ud <- map_dens(.map = map,
.coord = smo$states,
.sigma = bw.h,
.verbose = FALSE)$ud
# Add home range
map_hr_home(ud, .add = TRUE)
mtext(side = 4, "Probability density", line = -3)
options(op)
This basic workflow is highly customisable. You have the flexibility to define species-specific movement models, include any type of observational dataset and implement system-specific observation models. See the function examples for further details and reach out with queries.
For full details on the methods, see the references below.
For further information of the Patter.jl
package, see:
- The online package documentation;
?Patter.particle_filter()
for information on specific functions;
For additional resources, see the documentation for the
patter
R
package.
Patter.jl
is a new Julia
package. All routines are experimental.
Researchers interested in using the package are encouraged to get in
touch while the methods and package remain at an early stage of
evolution (edward.lavender@eawag.ch).
To cite Patter.jl
in publications, please use:
- Lavender, E., Scheidegger, A., Albert, C., Biber, S. W., Illian, J., Thorburn, J., Smout, S., & Moor, H. (2025). Particle algorithms for animal movement modelling in receiver arrays. Methods in Ecology and Evolution, 00, 1–12. https://doi.org/10.1111/2041-210X.70028
- Lavender, E., Scheidegger, A., Albert, C., Biber, S. W., Illian, J., Thorburn, J., Smout, S., & Moor, H. (2025). patter: Particle algorithms for animal tracking in R and Julia. Methods in Ecology and Evolution, 00, 1–8. https://doi.org/10.1111/2041-210X.70029
- Lavender, E., Scheidegger, A., Albert, C., Biber, S. W., Brodersen, J., Aleynik, D., Cole, G., Dodd, J., Wright, P. J., Illian, J., James, M., Smout, S., Thorburn, J., & Moor, H. (2025). Animal tracking with particle algorithms for conservation. bioRxiv. https://doi.org/10.1101/2025.02.13.638042
For the BibTex
:
@Article{Lavender2025a,
author = {Lavender, Edward and Scheidegger, Andreas and Albert, Carlo and Biber, Stanisław W. and Illian, Janine and Thorburn, James and Smout, Sophie and Moor, Helen},
title = {Particle algorithms for animal movement modelling in receiver arrays},
journal = {Methods in Ecology and Evolution},
year = {2025},
volume = {00},
pages = {1--12},
doi = {10.1111/2041-210X.70028}
}
@Article{Lavender2025b,
author = {Lavender, Edward and Scheidegger, Andreas and Albert, Carlo and Biber, Stanisław W. and Illian, Janine and Thorburn, James and Smout, Sophie and Moor, Helen},
title = {patter: Particle algorithms for animal tracking in R and Julia},
journal = {Methods in Ecology and Evolution},
year = {2025},
volume = {00},
pages = {1--8},
doi = {10.1111/2041-210X.70029}
}
@Article{Lavender2025c,
author = {Lavender, Edward and Scheidegger, Andreas and Albert, Carlo and Biber, Stanisław W. and Brodersen, Jakob and Aleynik, Dmitry and Cole, Georgina and Dodd, Jane and Wright, Peter J. and Illian, Janine and James, Mark and Smout, Sophie and Thorburn, James and Moor, Helen},
title = {Animal tracking with particle algorithms for conservation},
journal = {bioRxiv},
year = {2025},
doi = {10.1101/2025.02.13.638042}
}
Patter.jl
evolved from the
flapper
R
package. Please also consider citing
that publication:
Lavender, E., Biber, S., Illian, J., James, M., Wright, P., Thorburn, J., & Smout, S. (2023). An integrative modelling framework for passive acoustic telemetry. Methods in Ecology and Evolution, 14, 2626–2638. https://doi.org/10.1111/2041-210X.14193
@Article{Lavender2023,
author = {Lavender, Edward and Biber, Stanisław W. and Illian, Janine and James, Mark and Wright, Peter J. and Thorburn, James and Smout, Sophie},
title = {An integrative modelling framework for passive acoustic telemetry},
journal = {Methods in Ecology and Evolution},
year = {2023},
volume = {14},
pages = {2626--2638},
doi = {10.1111/2041-210X.14193}
}
}
Thank you for citing the package. Your citations help to justify continued investments in its development.
Please note that Patter.jl
is released with a Contributor Code of
Conduct.
By contributing to this project, you agree to abide by its terms.