You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried the README example with both github master and dev versions, but get:
> my_sftrack <- as_sftrack(
+ data = raccoon,
+ coords = c("longitude","latitude"),
+ time = "timestamp",
+ burst = "animal_id",
+ crs = "+init=epsg:4326")
Error in check_names_exist(data, group) : id not found in data frame
The text was updated successfully, but these errors were encountered:
Ha, my bad! burst has been changed to group to more clearly reflect what it actually is… and I forgot to update the documentation. The example works fine with:
my_sftrack <- as_sftrack(
data = raccoon,
coords = c("longitude","latitude"),
time = "timestamp",
group = "animal_id",
crs = "+init=epsg:4326")
head(my_sftrack)
I tried the README example with both github master and dev versions, but get:
The text was updated successfully, but these errors were encountered: