Description Usage Arguments Value Examples
Functions for horizontal and vertical slicing of bbox columns These functions are not vectorized and should be used to compute
1 2 3 4 5 | bbox_slice_x(bbox, x)
bbox_slice_y(bbox, y)
bbox_slice_xy(bbox, x, y)
|
bbox |
string or character vector of bbox'es |
x, y |
coordinates to sclice the bouding box at |
list of bbox'es appliccable for particular split
1 2 3 4 5 6 7 | bbox_slice_x("0 0 100 200", 80)
bbox_slice_x(c("0 0 100 200", "100 100 200 200"), c(80, 150))
bbox_slice_y("0 0 100 200", 120)
bbox_slice_y(c("0 0 100 200", "100 100 200 200"), c(120,150))
bbox_slice_xy("0 0 100 200", 50, 100)
bbox_slice_xy(c("0 0 100 200", "100,100, 200, 200"), c(50, 150), c(100, 150))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.