Skip to content
Prev 3692 / 7420 Next

Conversion of lat/long coordinates to ETRS89

Daniel,
On 20/03/2013, at 10:45 AM, Levy, Yair wrote:

            
Actually ETRS89 / ETRS-TM35FIN for Finland is epsg code 3067.
The following should work:

library(rgdal)
xy <- data.frame(N = 60, E = 27)
coordinates(xy) <- ~ E + N
proj4string(xy) <- CRS("+proj=longlat")
spTransform(xy, CRS("+init=epsg:3067"))

and it is really useful to validate the results...

Cheers, Jari Oksanen (Finland)