group_split | R Documentation |
filter ee$ImageCollections or tidyee objects that contain imageCollections
.tbl |
ImageCollection or tidyee class object |
... |
other arguments |
return_tidyee |
|
filtered image or imageCollection form filtered imageCollection
group_split
for information about filter on normal data tables.
## Not run: library(rgee) library(tidyrgee) ee_Initialize() l8 = ee$ImageCollection('LANDSAT/LC08/C01/T1_SR') l8 |> filter(date>"2016-01-01",date<"2016-03-04") # example with tidyee ckass modis_ic <- ee$ImageCollection("MODIS/006/MOD13Q1") modis_ic_tidy <- as_tidyee(modis_ic) # filter by month modis_march_april <- modis_ic_tidy |> filter(month %in% c(3,4)) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.