Skip to content
Prev 928 / 29559 Next

WGS84 conversion to UTM

Taylor, RB wrote:

            
Hi Rob,

Take a look at the package "PBSmapping".

You'll need to create a data.frame with the names X and Y and add an
attribute "projection", then just convUL :-)

See my example:

mydf <- read.table(blah, blah, blah)
names(mydf) <- c("X","Y")
attr(mydf, "projection") <- c("LL")
mydf.utm <- convUL(mydf)

Regards

EJ