as_tidyee {tidyrgee} | R Documentation |
The function returns a list containing the original object (Image/ImageCollection)as well as a "virtual data.frame (vrt)" which is a data.frame holding key properties of the ee$Image/ee$ImageCollection. The returned list has been assigned a new class "tidyee".
as_tidyee(x, time_end = FALSE)
x |
ee$Image or ee$ImageCollection |
time_end |
|
tidyee class object which contains a list with two components ("x","vrt")
## Not run:
library(tidyrgee)
library(rgee)
ee_Initialize()
modis_ic <- ee$ImageCollection("MODIS/006/MOD13Q1")
modis_ic_tidy <- as_tidyee(modis_ic)
## End(Not run)