Hi Chris,
I have old telemetry data on 5 bears which hibernated. Monitoring periods for each bear are very variable (from 1 month to 7-8 months), as long as gps schedule (from 1 fix every 5 hours to 1 fix per day) with also some temporal gaps due to failure in GPS acquisition.
I split GPS locations before and after hibernation for 4 bears which hibernated. Therefore from 5 individuals I have 9 datasets.
I want to perform habitat selection analysis.
Unfortunately, most of them do not show resident behaviour (even sub-sampling GPS locations for each individual), therefore I cannot estimate AKDE neither run iRSF.
Therefore, I was thinking to perform a "classic" RSF at the population level, using occurrences distribution as areas where to sample the pseudo-absences. My idea was to perform something similar to pkde() with occurences. I calculated the 0.95 occurrences distributions for each individual (see in the image attatched), created a list where I grouped all of them and I was thinking to do mean().
Does it make sense? If yes, why it is not working. Or do you suggest me something different (last chance is using a MCP for all individuals).
Here a minimum example code:
bears<-as.telemetry(bears) #multpile animals in bears dataset
bear1<-bears[[1]]
GUESS1 <- ctmm.guess(bear1, interactive = FALSE)
FIT1_pHREML <- ctmm.select(bear1, GUESS1, method = 'pHREML')
occ_bear1<-occurrence(bear1,FIT1_pHREML, level.UD = .95)
#then do the same for all the other bears
occurrences<-list(bear1,bear1_pre_hibernation,bear2,bear2_pre_hibernation, etc........)
plot(occurrences) #see the attatched image
MEAN<-mean(occurrences) #it runs, I paste here just the final part of the verbose with the error
* Model selection for autocovariance distribution.
ΔAIC
E[major,minor,angle,tau position,tau velocity] VAR[major,minor,angle,tau position,tau velocity] 0.00000
E[major,minor,angle,tau position,tau velocity] COV[major,minor,angle,tau position,tau velocity] 10.68373
E[major,minor,angle,tau position,tau velocity] VAR[minor,angle,tau position,tau velocity] 11.89799
E[major,minor,angle,tau position,tau velocity] VAR[major,minor,angle,tau position] 31.52709
E[major,minor,angle,tau position,tau velocity] VAR[minor,angle,tau position] 43.48678
E[major,minor,angle,tau position,tau velocity] VAR[major,tau position,tau velocity] 281.04463
E[major,minor,angle,tau position,tau velocity] VAR[tau position,tau velocity] 293.95581
E[major,minor,angle,tau position,tau velocity] VAR[major,tau position] 319.99667
E[major,minor,angle,tau position,tau velocity] VAR[tau position] 332.84131
E[major,tau position,tau velocity] VAR[tau position] 332.84131
E[major,minor,angle,tau position,tau velocity] VAR[major,minor,angle,tau velocity] 478.03442
E[major,minor,angle,tau position,tau velocity] VAR[minor,angle,tau velocity] 493.67199
E[major,tau position,tau velocity] VAR[tau velocity] 785.10914
E[major,minor,angle,tau position,tau velocity] VAR[minor,angle] 1062.03104
E[major,tau position,tau velocity] VAR[major] 1343.69113
E[major,tau position,tau velocity] VAR[] 1356.98824
E[major,minor,angle,tau position,tau velocity] VAR[] 1356.98824
Error in grid.union(x) : Inconsistent grid resolutions.
Best
Lorenzo