powered by
Creates the bounding box (numeric vector of length four) around the input point(s).
Point2Bbox(x, y = NULL, size, crs = 4326)
A bounding box (numeric vector of length four), or a list of bounding boxes if the input is not scalar.
an sf, sfc, or SpatialPoints* object, a numeric indicating the longitude/easting of the point(s), or any input accepted by xy.coords
sf
sfc
SpatialPoints*
xy.coords
numeric, the latitude/northing of the point(s). Default: NULL
numeric indicating the size (in meters) of the bounding box to create
coordinate reference system of the input (and the output): object of class crs, or input string for st_crs. Default: 4326 (WGS 84)
crs
st_crs
The function assumes that the crs units are either degrees or meters, a warning is issued if not, and the result will probably be incorrect.
xy.coords, st_crs
if (FALSE) { Point2Bbox(x = -73.96557, y = 40.78246, size = 1000, crs = 4326) }
Run the code above in your browser using DataLab