Skip to content
Prev 1533 / 29559 Next

(no subject)

On Fri, 1 Dec 2006 harrykim at stat.Berkeley.EDU wrote:

            
You are almost there. If we assume that your shapefile is in geographical 
coordinates and in the WGS84 datum (the model of where you are vertically 
on a 3D globe), then you can set that when you read it:

berk_ll <- readShapePoly("V1 Land.shp",
 proj4string=CRS("+proj=longlat +datum=WGS84"))
berk_utm <- spTransform(berk_ll, CRS("+proj=utm +zone=10"))

and equivalently for the points, the coordinates will be in meters.
Not sure about 10S, you can get +south if you want, but I thought Berkeley 
was still North of the Equator?