A data cube view object
Dimensions:
low high count pixel_size
t 2018-01-01 2018-12-31 12 P1M
y 4345299 4744931 526 759.756653992395
x 388941.2 766552.4 497 759.781086519115
SRS: "EPSG:32618"
Temporal aggregation method: "first"
Spatial resampling method: "near"
Source Code
# print.cube_viewPrint data cube view information```{r include=FALSE}library(gdalcubes)```## DescriptionPrints information about a data cube view, including its dimensions, spatial reference, aggregation method, and resampling method.## Usage```rprint.cube_view(x, ...)```## Arguments| Argument | Description ||:------------|:----------------------------------|| x | Object of class "cube_view" || ... | Further arguments passed to the generic print function |## Examples```{r}v =cube_view(extent=list(left=388941.2, right=766552.4, bottom=4345299, top=4744931, t0="2018-01", t1="2018-12"),srs="EPSG:32618", nx =497, ny=526, dt="P1M")print(v)```