Skip to content

Commit ea86367

Browse files
committed
fix id issue with dplyr
1 parent 89ad099 commit ea86367

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: crawl
22
Type: Package
33
Title: Fit Continuous-Time Correlated Random Walk Models to Animal Movement Data
44
Version: 2.3.1
5-
Date: 2024-10-03
5+
Date: 2026-01-08
66
Authors@R: c(person("Devin S.", "Johnson", email = "devin.johnson@noaa.gov",
77
role = c("aut", "cre")),
88
person("Josh", "London", email = "josh.london@noaa.gov",
@@ -36,7 +36,7 @@ Encoding: UTF-8
3636
LazyLoad: yes
3737
ByteCompile: TRUE
3838
NeedsCompilation: yes
39-
RoxygenNote: 7.3.2
39+
RoxygenNote: 7.3.3
4040
URL: https://github.com/NMML/crawl
4141
BugReports: https://github.com/NMML/crawl/issues
4242
LazyData: true

R/crawl-package.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ NULL
167167
"Demos and documentation can be found at our new GitHub repository:\n",
168168
"https://dsjohnson.github.io/crawl_examples/\n",
169169
"\n",
170-
"WARNING!!! v. 2.3.0 will be the last version of {crawl} hosted on CRAN.\n",
171-
"see 'https://github.com/NMML/crawl' for any future bug fixes."
170+
"WARNING!!! v. 2.3.x will be the last version of {crawl} hosted on CRAN.\n",
171+
"see 'https://github.com/NMML/crawl' for any future update beyond bug fixes."
172172
)
173173
)
174174
}

R/crw_coerce_sf.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ crw_as_sf.list <- function(data,ftype,
120120
if (ftype == "MULTILINESTRING") {
121121
make_mls <- function(ll) {
122122
do.call(rbind,ll) %>%
123-
dplyr::group_by(id) %>%
123+
dplyr::group_by(.data$id) %>%
124124
dplyr::summarise(do_union = FALSE)
125125
}
126126
sf_list <- data %>% purrr::map(make_mls)

0 commit comments

Comments
 (0)