Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
98ad4b4
Motus: add support for blu data
denislepage Oct 1, 2025
6c815e4
blu data support
denislepage Oct 1, 2025
942f19b
blu tags fixes
denislepage Oct 2, 2025
2967016
Catch only batch field names
steffilazerte Oct 6, 2025
bed6f1b
Update internal fields and sql updates
steffilazerte Oct 6, 2025
f5dff97
Add blu tags to server tests
steffilazerte Oct 15, 2025
a9fd8c0
Add missing deviceID
steffilazerte Oct 15, 2025
d7c66ac
Don't create table with SQL update (automatically created by ensureDB…
steffilazerte Oct 15, 2025
3c449af
Housekeeping
steffilazerte Oct 15, 2025
4bc3d55
Test - Generalize SQL table checks
steffilazerte Oct 15, 2025
09ed40e
Add hitsBlu() patch function and tests (NOTE not ready for deployment)
steffilazerte Dec 8, 2025
71f2ca6
Final fixes to blutags 🎉
steffilazerte Jan 12, 2026
e76858a
Avoid |>
steffilazerte Jan 12, 2026
61cd1bc
Update docs
steffilazerte Jan 12, 2026
bc83c08
Use main API
steffilazerte Jul 20, 2026
b4747f7
Use air formatter
steffilazerte Jul 20, 2026
7742f92
Tweak check to refer to tables too
steffilazerte Jul 30, 2026
d631819
Update to current package doc usage
steffilazerte Jul 30, 2026
98d5a56
Add payload extraction function (part of MotusWTS/Motus-TO-DO#1634)
steffilazerte Jul 30, 2026
1cfe40a
Update docs and news
steffilazerte Jul 30, 2026
dee4b38
Update tests
steffilazerte Jul 30, 2026
20bf3b6
Fix news
steffilazerte Jul 30, 2026
5e22c19
Fix terms
steffilazerte Jul 30, 2026
4cfae58
Don't export test function
steffilazerte Jul 30, 2026
e485101
Check if dir exists
steffilazerte Jul 30, 2026
020a4ae
Merge branch 'main' of https://github.com/MotusWTS/motus into denis/b…
steffilazerte Jul 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@
^docs$
^pkgdown$
^_pkgdown\.yml$
^\.vscode$
^[.]?air[.]toml$
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"Posit.air-vscode"
]
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"editor.defaultFormatter": "Posit.air-vscode",
"[r]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "Posit.air-vscode"
},
"[quarto]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "quarto.quarto"
}
}
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package: motus
Type: Package
Version: 6.1.2
Version: 6.2.0
Title: Fetch and use data from the Motus Wildlife Tracking System
Description: Retrieve, filter, and visualize telemetry data from the Motus
Wildlife Tracking System <https://motus.org>.
Authors@R: c(
person("Birds Canada", role = c("aut", "cre"), email = "[email protected]"),
person("John", "Brzustowski", email = "[email protected]", role = "aut"),
person("Denis", "Lepage", email = "[email protected]", role = "aut"),
person("Steffi", "LaZerte", email = "steffi@steffi.ca", role = "ctb"),
person("Steffi", "LaZerte", email = "sel@steffilazerte.ca", role = "ctb"),
person("Joey", "Bernard", role = "ctb"),
person("Lucas", "Berrigan", role = "ctb"),
person("Tara", "Crewe", role = "ctb"),
Expand Down Expand Up @@ -57,7 +57,7 @@ Suggests:
testthat (>= 3.0.0),
withr
License: GPL-3
RoxygenNote: 7.2.3
RoxygenNote: 7.3.3
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
Language: en-CA
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ export(deleteRunsFilter)
export(deprecateBatches)
export(filterByActivity)
export(getAccess)
export(getBluPayload)
export(getGPS)
export(getMotusDBSrc)
export(getRuns)
export(getRunsFilters)
export(gpsAll)
export(hitsBlu)
export(listRunsFilters)
export(metadata)
export(motusLogout)
Expand Down
Loading
Loading