我正在使用衛星跟蹤的動物,並有一個搬遷數據的負載。爲什麼R認爲投影數據不同?
所以,我有我的地圖數據和搬遷作爲SpatialPointsDataFrames,當我問
if proj4string(map)==proj4string(locs)
我得到TRUE。
但是,當我嘗試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)
'count.points'是什麼包? – 2013-05-13 11:38:32
這是一個adehabitat MA – killbot2000 2013-05-13 13:16:27
事實證明這個功能有一個錯誤。它將在下一個補丁中修復。 – killbot2000 2013-05-21 12:02:20