Hi Chris,
Thank you! I see my error. I'm now using SpatialPolygonsDataFrame.telemetry() to try and export the 50% and 95% estimate ellipses so I can plot them in ggplot. I'm using them on my telemetry object now, but when i try to plot the resulting SpatialPolygonsDataFrame, I get an error. When turning this spdf into a normal data frame, I see there are only two columns, one called 'identity' that says unknown for every row, and one with timestamps. Any suggestions about what I'm doing wrong there? I've attached a picture of the resulting data frame. Thank you again!!
cnona_move <- move(x=cnona$x, y=cnona$y,
time=as.POSIXct(cnona$date, format="%Y-%m-%d %H:%M:%S", tz="UTC"),
proj=CRS("+init=epsg:3035"),
data=cnona, animal=cnona$animal_id)
b <- as.telemetry(cnona_move)
cass_sp_akde <- SpatialPolygonsDataFrame.telemetry(object = b, level.UD = 0.95)
plot(cass_sp_akde)
>Error in as.double(y) :
cannot coerce type 'S4' to vector of type 'double'