st_transform | R Documentation |
Transform or convert coordinates of LAS objects st_transform()
extends sf::st_transform()
## S3 method for class 'LAS'
st_transform(x, crs, ...)
x |
An object of class LAS |
crs |
crs object from sf or CRS object from sp |
... |
additional arguments |
A LAS object
LASfile <- system.file("extdata", "example.laz", package="rlas")
las = readLAS(LASfile)
st_crs(las)$Name
st_bbox(las)
tlas <- sf::st_transform(las, sf::st_crs(26918))
st_crs(tlas)$Name
st_bbox(tlas)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.