I'm trying to create SpatialPoints objetcs from data frame on R
natFPV <- SpatialPointsDataFrame(coords = coordinates(natFPv.per_data[,c(27,28)]),data = natFPv.per_data[,-c(27,28)])
natFPV <- SpatialPoints(coords = coordinates(natFPv.per_data[,c(27,28)]))
But getting the error for both:
Warning: Error in SpatialPoints: could not find function "SpatialPoints"
I'm really don't konw how to deal it.
Kazuhito
31.4k6 gold badges78 silver badges157 bronze badges
-
Have you imported the library with library(sp)?Bera– Bera2017年10月18日 11:23:13 +00:00Commented Oct 18, 2017 at 11:23
1 Answer 1
You need to load the library with:
library(sp)
You need to do this once in each session, unless you customize your environment to automatically load it each time
answered Oct 18, 2017 at 12:00
lang-r