0
我使用R功能autokrige
從automap
包,但我得到一個錯誤,我不知道如何解決它。你有什麼提示嗎?autokrige和proj4string
謝謝!
sp.poidf <- SpatialPointsDataFrame(sp.poi,thresh.df)
proj4string(sp.poidf) <- CRS("+proj=longlat +datum=WGS84")
pro.df=spTransform(sp.poidf, CRS("+proj=merc +zone=32s +datum=WGS84"))
sp.new <- SpatialPoints(new.poi)
proj4string(sp.new) <- CRS("+proj=longlat +datum=WGS84")
pro.new <- spTransform(sp.new, CRS("+proj=merc +zone=32s +datum=WGS84"))
mykri <- autoKrige(mythresh~1,pro.df,newdata=pro.new)
Error in function (classes, fdef, mtable) :
unable to find an inherited method for function "proj4string", for signature "NULL"
新版本將很快在CRAN上。 –
是否有理由不使用被廣泛接受的標準參數名稱'newdata'作爲這種事情?不一致不利於R的學習曲線。 –
是的,但我有點害怕破壞舊版代碼。 –