Learn R Programming

sf (version 0.2-2)

st_transform: transform or convert coordinates of simple feature

Description

transform or convert coordinates of simple feature

Usage

st_transform(x, crs)
"st_transform"(x, crs, ...)
"st_transform"(x, crs, ...)
"st_transform"(x, crs, ...)

Arguments

x
object of class sf, sfc or sfg
crs
coordinate reference system: integer with the epsg code, or character with proj4string
...
ignored

Details

transforms coordinates of object to new projection

the st_transform method for sfg objects assumes that the crs of the object is available as an attribute of that name.

Examples

Run this code
p1 = st_point(c(7,52))
p2 = st_point(c(-30,20))
sfc = st_sfc(p1, p2, crs = "+init=epsg:4326")
st_transform(sfc, "+init=epsg:3857")
st_transform(st_sf(a=2:1, geom=sfc), "+init=epsg:3857")
st_transform(structure(p1, proj4string = "+init=epsg:4326"), "+init=epsg:3857")

Run the code above in your browser using DataLab