Description Usage Arguments Details Value Examples
Get the date of a EE ImageCollection
1 | ee_get_ic_date(x, time_end = FALSE)
|
x |
EE ImageCollection object |
time_end |
Logical. If TRUE, the system:time_end property will also be returned. See details. |
system:time_start
set the start period of data acquisition while
system:time_end
the end period. See the
Earth
Engine glossary for more information.
A data.frame.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
library(rgee)
library(sf)
ee_reattach()
ee_Initialize()
nc <- st_read(system.file("shape/nc.shp", package = "sf")) %>%
st_transform(4326) %>%
sf_as_ee()
ee_s2 <- ee$ImageCollection("COPERNICUS/S2")$
filterDate("2016-01-01", "2016-01-31")$
filterBounds(nc)
ee_get_ic_date(ee_s2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.