Thank you for your answer. Just some clarification to make sure:
My end goal is to (a) compare the home range sizes between individuals and seasons and (b) to look the proportion of overlap between the homepages and a certain protected area polygon.
for goal (a), do I need to set an identical grid resolution of Utilization Distribution for all birds?
Using something like this:
dr <- c(x,y)
UD <- akde(Animal,best_model, grid=dr)
If yes, How do I determine the relevant grid size? Choosing the smallest/largest grid size that is used by the automated function?
How do I extract it is it the "bandwidth" or "h" as shown below and what are the units?
$DOF
area bandwidth
176.0836 395.7753
UD$h
x y
0.3880728 0.3880728
For goal (b) I guess that I would need to extract the estimated homerage using:
BirdArea <- SpatialPolygonsDataFrame.UD(UD,level.UD=0.5,level=0.95)
But it gives me 3 polygons; the "min", "est" and "max", how can I extract only the "est"?
est_BirdArea <- ?
library(raster)
inter<- intersect(protected_polygon,
est_BirdArea )
Best wishes,
Sasha