Skip to content
Prev 5688 / 29559 Next

UTM to longlat

On Fri, 8 May 2009, Renaud Lancelot wrote:

            
Yes, you could use the spRbind() method in maptools:

library(maptools)
set.seed(1)
a <- SpatialPoints(matrix(runif(100), ncol=2))
b <- SpatialPoints(matrix(runif(100), ncol=2))
c <- spRbind(a, b)
plot(c, axes=TRUE)
points(a, col="green")
points(b, col="red")

Roger