To be able to process your data, actel must understand how your study area works. To do this, actel relies on two things: the study area sections and the receiver arrays. There are three levels of organization in an actel study area: sections, arrays and stations. Sections are composed by one or more arrays, and arrays are composed by one ore more stations.
Here is a visual example of a study area with an overlay of the respective arrays and sections:
The sections divide your study area in big blocks, for which you would like specific metrics to be calculated. In the example above, there are three sections: River, Fjord and Sea.
When you type the sections argument into the migration()
function, you should order them in the order that you expect your fish will cross the sections. For example, if you expect your fish to move from the river to a fjord and ultimately to the sea (and you have receiver arrays in all these sections), then sections = c("River", "Fjord", "Sea")
. In the other hand, if you expect your fish to migrate upstream, then sections = c("Sea", "Fjord", "River")
.
If you are running a residency()
analysis, the order of the sections is not relevant (except for plotting purposes).
The explore()
analysis does not take sections into consideration.
Arrays are the functional unit of actel. They determine groups of stations that, together, represent a point of change in the fish position. In the study area above, there are seven arrays, which are grouped into three sections.
Unless you are just running explore(), the array names are what links them to their respective sections. An array called “River1” is expected to belong to a section “River”, an array called “Fjord3” is expected to belong to a section “Fjord”, and so forth. To run migration() or residency(), array names must be an exact copy of the section they belong to, plus the number of the array. The connectivity between the arrays is determined either by their order of appearance in the spatial.csv file, or by a spatial.txt file (you can see some examples below). It is very important that you structure your arrays correctly.
When a fish moves from one array to another, a new movement event is created (you will learn more about movement events later on). This means that, if you have two stations close to each other, but listed in two different arrays, you can end up with many ‘false’ movement events (i.e. the fish is just standing still within range of both arrays). Here is an example:
Array | Detections | First station | Last station | First time | Last time | Time travelling | |
---|---|---|---|---|---|---|---|
20 | Sea2 | 1 | St.17 | St.17 | 2018-04-23 05:00:45 | 2018-04-23 05:00:45 | 0:00 |
21 | Sea1 | 1 | St.15 | St.15 | 2018-04-23 05:00:53 | 2018-04-23 05:00:53 | 0:00 |
22 | Sea2 | 1 | St.17 | St.17 | 2018-04-23 05:01:11 | 2018-04-23 05:01:11 | 0:00 |
23 | Sea1 | 1 | St.15 | St.15 | 2018-04-23 05:01:19 | 2018-04-23 05:01:19 | 0:00 |
24 | Sea2 | 1 | St.17 | St.17 | 2018-04-23 05:01:54 | 2018-04-23 05:01:54 | 0:00 |
25 | Sea1 | 1 | St.15 | St.15 | 2018-04-23 05:02:02 | 2018-04-23 05:02:02 | 0:00 |
Stations 15 and 17 are very close to each other, but were placed in different arrays. That in turn led to the creation of numerous movement events with only one detection, with nearly no time travelling between them. This fish ended up having 58 movement events, during most of which it was most likely just standing still.
As a rule of thumb, if two stations’ ranges are likely to overlap, you should consider assigning them to the same array:
Stations are geographical locations where one or more receivers have been deployed over the course of your study. They pinpoint the deployments on the map, and allow actel to make the link between detections and respective arrays. The stations must have unique names, so that the receiver deployments can be allocated to a specific stations, and are assigned to their respective arrays using the spatial.csv file. You can find some examples below.
Release sites are a special form of station. Used to pinpoint the release locations of the tagged fish, release sites do not have receivers associated to them. Additionally, instead of being allocated to an array, they indicate which array is expected to be the first to detect the released fish. If you are not sure which array is expected to detect your fish first (e.g. fish released in a lake with multiple exits), you can tell actel to expect a first detection at multiple arrays. This has important consequences for array efficiency estimation, so it is important to get this right.
If your study area includes multiple pathways that the fish may take, you must tell actel how to connect the arrays. By default, arrays are sorted in a linear order according to the spatial.csv file. To instruct actel to act otherwise, you must create a ‘spatial.txt’ file. The spatial.txt file is very simple; all you need to do is connect your arrays in pairs. You can learn more about spatial.txt files here
Now you know how to organise your study area in a way that actel will understand!
Let’s imagine the following study area, where the red dots represent receiver stations:
The first thing you will want to do is give individual names to your stations:
Then, you need to decide how these stations should be organized into arrays. In this case, lets say each station is its own array:
Then, you need to decide how many sections there are in your study area. In this case, one section (e.g. “River”), would probably be the best fit, but let’s say we have two sections, for the sake of the exercise:
Now that you know your stations, arrays, and sections, you can start filling up the spatial.csv file. Station A will belong to the first array of section Up (i.e. Up1), Station D will belong to the first array of section Down (i.e. Down1), and so forth:
Station.name | Array | Type |
---|---|---|
A | Up1 | Hydrophone |
B | Up2 | Hydrophone |
C | Up3 | Hydrophone |
D | Down1 | Hydrophone |
E | Down2 | Hydrophone |
Now onwards to the release sites. If you only have one release site at the top of the study area, i.e.:
Then you are sure that the fish are expected to be first detected at array Up1:
Station.name | Array | Type |
---|---|---|
RS1 | Up1 | Release |
However, you can also have fish released somewhere in the middle of the study area, i.e.:
In this case, if you know that your fish are expected to move in a specific direction (i.e. a migration scenario), then we could say that there is only one expected first array (Down1, if the fish is migrating left to right):
Station.name | Array | Type |
---|---|---|
RS2 | Down1 | Release |
However, if you do not know which direction the fish will take (i.e. a residency scenario), then the fish is just as likely to be first detected at Down1 as it is to be detected at Up3. To account for this, you must include both arrays in the spatial.csv file, separating them with a “|”.
Station.name | Array | Type |
---|---|---|
RS2 | Up3|Down1 | Release |
You can now combine the stations and the release sites to obtain your spatial.csv file:
Station.name | Array | Type |
---|---|---|
A | Up1 | Hydrophone |
B | Up2 | Hydrophone |
C | Up3 | Hydrophone |
D | Down1 | Hydrophone |
E | Down2 | Hydrophone |
RS1 | Up1 | Release |
RS2 | Up3|Down1 | Release |
Let’s now imagine a more complex study area, like the one below:
Like before, you need to name your stations, group them into arrays, and define your study area sections:
We can then start filling in the spatial.csv file:
Station.name | Array | Type |
---|---|---|
A | Lake1 | Hydrophone |
B | Lake2 | Hydrophone |
C | Lake3 | Hydrophone |
D | Lake4 | Hydrophone |
E | River1 | Hydrophone |
F | River2 | Hydrophone |
G | River2 | Hydrophone |
Now let’s assume the fish are released inside the lake:
In this case, regardless of the analysis you are running (migration or residency), there is uncertainty in the first expected array. If you expect that the fish will be migrating from the Lake to the River, you should state that the expected first arrays are either Lake3 or Lake4. If you are running a residency analysis, then it may make more sense to consider all Lake arrays as potential first arrays.
So, if you know your fish are moving to the river:
Station.name | Array | Type |
---|---|---|
RS1 | Lake3|Lake4 | Release |
If you don’t know where the fish will go to:
Station.name | Array | Type |
---|---|---|
RS1 | Lake1|Lake2|Lake3|Lake4 | Release |
Like before, you can now compile the full spatial.csv file:
Station.name | Array | Type |
---|---|---|
A | Lake1 | Hydrophone |
B | Lake2 | Hydrophone |
C | Lake3 | Hydrophone |
D | Lake4 | Hydrophone |
E | River1 | Hydrophone |
F | River2 | Hydrophone |
G | River2 | Hydrophone |
RS1 | Lake1|Lake2|Lake3|Lake4 | Release |
Since this study area is not linear, you would be required to write a spatial.txt file to tell actel how to link the arrays. You can learn more about spatial.txt files here.