xy | R Documentation |
Create point vectors
xy(x = double(), y = double(), crs = wk::wk_crs_longlat())
xyz(x = double(), y = double(), z = double(), crs = wk::wk_crs_longlat())
sfc_point(x = double(), y = double(), z = NULL, crs = wk::wk_crs_longlat())
x |
< |
y |
< |
crs |
A value to be propagated as the CRS for this vector. |
z |
< |
A vector of coordinate values.
xy()
: Efficient 2-dimensional point vector
xyz()
: Efficient 3-dimensional point vector
sfc_point()
: Simple features point vector
xy(1:5, 1:5)
xyz(1:5, 1:5, 1:5)
sfc_point(1:5, 1:5)
sfc_point(1:5, 1:5, 1:5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.