-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
overline example is broken #272
Comments
Thanks for reporting. I think this is likely due to dplyr code under the hood. Any ideas @richardellison (who added the |
Update: inside the function call I get this, the root of the problem I think:
|
Update: library(sp)
library(stplanr)
s1 = split(routes_fast, f = rep(1:5, length.out = nrow(routes_fast)))
class(s1[[1]])
#> [1] "SpatialLinesDataFrame"
#> attr(,"package")
#> [1] "sp"
s2 = split(routes_fast_sf, f = rep(1:5, length.out = nrow(routes_fast)))
class(s2[[1]])
#> [1] "sf" "data.frame" Created on 2018-10-26 by the reprex package (v0.2.1) |
Thanks for pointing that out - shows the danger of not running examples. I've fixed it for now by removing the |
?
The text was updated successfully, but these errors were encountered: