Skip to contents

A spatial dataset (sf object) containing information about acoustic receiver deployments in Stoney Lake, Ontario, Canada. This dataset includes receiver locations, deployment periods, and site characteristics.

Usage

stoney_rx_deploy

Format

An sf data frame with 145 rows and 7 columns:

station_id

Character. Unique identifier for receiver station (e.g., "T1-1")

x

Numeric. Longitude coordinate (decimal degrees, WGS84)

y

Numeric. Latitude coordinate (decimal degrees, WGS84)

depth_m

Numeric. Water depth at receiver location (meters)

deploy_datetime_UTC

POSIXct. Date and time of receiver deployment (UTC)

recover_datetime_UTC

POSIXct. Date and time of receiver recovery (UTC)

geometry

sf geometry column with UTM Zone 17N coordinates

Source

Field data collected from Stoney Lake, Ontario, Canada

Details

This dataset contains spatial and temporal information for acoustic receivers deployed in Stoney Lake as part of fish telemetry studies. The receivers were deployed across multiple years (2022-2024) to monitor fish movements. The coordinate reference system is UTM Zone 17N (EPSG:32617).

Each receiver has coordinates in both geographic (decimal degrees) and projected (UTM) coordinate systems. Deployment periods vary by station, with some receivers being redeployed multiple times.

Examples

if (FALSE) {
# Load the dataset
data("stoney_rx_deploy")

# View dataset structure
str(stoney_rx_deploy)

# Plot receiver locations
library(ggplot2)
library(sf)
ggplot(stoney_rx_deploy) +
  geom_sf(aes(color = depth_m)) +
  scale_color_viridis_c(name = "Depth (m)") +
  labs(title = "Acoustic Receiver Locations in Stoney Lake") +
  theme_minimal()

# Summary of deployment periods
stoney_rx_deploy$deployment_days <- as.numeric(
  stoney_rx_deploy$recover_datetime_UTC - stoney_rx_deploy$deploy_datetime_UTC
)
summary(stoney_rx_deploy$deployment_days)

# Depth distribution
hist(stoney_rx_deploy$depth_m, main = "Receiver Depth Distribution", 
     xlab = "Depth (m)")
}