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
st_normalize(x, domain = st_bbox(x), ...)
object of class sf, sfc or sfg
The domain x
should be normalized from as a length 4
vector of the form c(xmin, ymin, xmax, ymax)
. Defaults to the
bounding box of x
ignored
# NOT RUN {
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)
# }
Run the code above in your browser using DataLab