我正在使用卫星跟踪的动物并拥有大量的搬迁数据。
所以我有我的地图数据和重定位作为 SpatialPointsDataFrames,当我问
if proj4string(map)==proj4string(locs)
我明白了。
但是当我尝试如下 count.points 函数时
cp <- count.points(locs, map)
我收到以下错误
Error in count.points(SpatialPoints(x), w) :
different proj4string in w and xy
有没有人知道为什么会这样?
编辑 代码:
load("mydata")
map = mydata$map
map
mimage(map)
locs= mydata$relocs
locs
image(map)
points(locs, col=as.numeric(slot(locs, "data")[,1]), pch=16)
cp <- count.points(locs, map)