transform_xy | R Documentation |
transform_xy()
transforms geospatial x/y coordinates to a new projection.
transform_xy(pts, srs_from, srs_to)
pts |
A two-column data frame or numeric matrix containing geospatial x/y coordinates. |
srs_from |
Character string specifying the spatial reference system
for |
srs_to |
Character string specifying the output spatial reference
system. May be in WKT format or any of the formats supported by
|
Numeric array of geospatial x/y coordinates in the projection
specified by srs_to
.
epsg_to_wkt()
, srs_to_wkt()
, inv_project()
pt_file <- system.file("extdata/storml_pts.csv", package="gdalraster")
pts <- read.csv(pt_file)
print(pts)
## id, x, y in NAD83 / UTM zone 12N
## transform to NAD83 / CONUS Albers
transform_xy(pts = pts[, -1], srs_from = "EPSG:26912", srs_to = "EPSG:5070")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.