st_normalize {sf} | R Documentation |
Normalize simple features
Description
st_normalize
transforms the coordinates in the input feature to fall
between 0 and 1. By default the current domain is set to the bounding box of
the input, but other domains can be used as well
Usage
st_normalize(x, domain = st_bbox(x), ...)
Arguments
x |
object of class sf, sfc or sfg |
domain |
The domain |
... |
ignored |
Examples
p1 = st_point(c(7,52))
st_normalize(p1, domain = c(0, 0, 10, 100))
p2 = st_point(c(-30,20))
sfc = st_sfc(p1, p2, crs = 4326)
sfc
sfc_norm <- st_normalize(sfc)
st_bbox(sfc_norm)
[Package sf version 1.0-16 Index]