The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
An R package for fully automated calibration and analysis of Global
Location Sensor (GLS) data from seabirds and other wildlife.
glscalibrator streamlines the traditionally manual and
time-consuming process of GLS data analysis by auto-discovering devices,
detecting calibration periods, and batch processing multiple
individuals.
Install from GitHub (this will pull the CRAN dependencies automatically):
if (!requireNamespace("remotes", quietly = TRUE)) install.packages("remotes")
remotes::install_github("fabbiologia/glscalibrator")library(glscalibrator)
# Process all GLS devices in a directory
results <- calibrate_gls_batch(
data_dir = system.file("extdata", package = "glscalibrator"),
output_dir = "data/processed/calibration",
colony_lat = 27.85178, # Colony latitude
colony_lon = -115.17390 # Colony longitude
)
# Check summary
print(results$summary)
# Access individual bird results
bird_positions <- results$results$BW154_05Jul24_225805Traditional GLS analysis requires: 1. Manual identification of each bird’s data file 2. Manual selection of calibration period 3. Custom scripting for twilight detection 4. Individual processing of each bird 5. Manual creation of output formats and plots
glscalibrator automates all of this:
# Traditional approach (hours of work)
# Read file → Find calibration dates → Detect twilights →
# Filter twilights → Calibrate → Calculate positions →
# Create plots → Repeat for each bird → Combine outputs
# glscalibrator approach (one command)
results <- calibrate_gls_batch(data_dir, output_dir, colony_lat, colony_lon)output_dir/
├── data/
│ ├── GLSmergedata.csv # Combined data (standard format)
│ ├── all_birds_calibrated.csv # Combined positions
│ ├── calibration_summary.csv # Summary statistics
│ ├── BW154_calibrated.csv # Individual bird data
│ └── BW154_GLSmergedata.csv # Individual bird (standard format)
└── figures/
├── all_tracks_combined.png # All tracks on one map
├── BW154_track.png # Individual track
└── BW154_calibration.png # Calibration diagnostics
# Define equinox exclusion periods
equinoxes <- list(
c("2024-08-24", "2024-10-23"), # Autumn equinox
c("2024-02-19", "2024-04-19") # Spring equinox
)
results <- calibrate_gls_batch(
data_dir = "data/raw/birds",
output_dir = "data/processed/calibration",
colony_lat = 27.85,
colony_lon = -115.17,
exclude_equinoxes = equinoxes
)# Read light data bundled with the package
light_data <- read_lux_file(gls_example("W086"))
# Auto-detect calibration period
calib <- auto_detect_calibration(
light_data,
colony_lat = 27.85,
colony_lon = -115.17
)
# Detect twilights
twilights <- detect_twilights(light_data, threshold = 2)
# Filter twilights
twilights_clean <- filter_twilights(twilights, light_data, threshold = 2)The package implements a proven workflow:
glscalibrator ships with three .lux files
in inst/extdata/ that power the documentation, tests, and
vignettes. You can explore them programmatically:
# List available example datasets and their metadata
glscalibrator_example_metadata
# Retrieve the path to a specific file
w086_path <- gls_example("W086")
# See summary information
list_gls_examples()Use these datasets in tutorials, automated tests, or live
demonstrations without needing external files. They are also summarised
in inst/extdata/README.md for quick human-readable
reference.
dplyr / magrittr / lubridate
/ stringr – Data manipulation utilitiesmaps – Basemap rendering for diagnostic plotsstats, graphics,
grDevices, utilsTwGeos,
GeoLight, and SGAT algorithms (no runtime
dependency)Run the automated test suite to verify the installation:
testthat::test_local("tests")The bundled synthetic dataset (gls_example("synthetic"))
underpins most unit tests, while real bird deployments offer
higher-volume scenarios for manual QA.
If you use glscalibrator in your research, please
cite.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE file for details
Built on the excellent work of: - SGAT package authors -
GeoLight and TwGeos developers - The seabird
tracking community
For issues and questions: - GitHub Issues: https://github.com/fabbiologia/glscalibrator/issues - Email: favoretto.fabio@gmail.com
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.