I found a fairly simple example of how to do this but I cant get it to work for me. I'm pretty new to R
library(rgdal)
xy <- cbind(c(118, 119), c(10, 50))
project(xy, "+proj=utm +zone=51 ellps=WGS84")
[,1] [,2]
[1,] -48636.65 1109577
[2,] 213372.05 5546301
But this is with example numbers. I have thousands of coordinates I have to transform and I cant figure out how to get them from my table to into this script
My data set has 3 columns, ID, X, and Y. How can I transform them using this equation? I've been stuck on this for weeks
In your question you are not clear whether you already read in your data set into a data.frame or matrix. So I assume in the following you have your data set in a text file:
Update:
The comments suggest that the problem comes from applying
project()
to data.frame.project()
does not work on data.frames since it checks foris.numeric()
. Therefore, you need to convert data to a matrix as in my example above. If you want to stick to your code that usescbind()
you have to do the following:The difference between
dd["X"]
anddd[,"X"]
is that latter will not return a data.frame and as a consequencecbind()
will yield a matrix and not a data.frame.