| get_linear | R Documentation |
This function allows the user to get a linearFit() from an ImageCollection.
get_linear(data, band = NULL, stat = "median", temporal = "yearly")
data |
A previously create get_* object. |
band |
A |
stat |
A |
temporal |
A |
A list of Earth Engine Objects and arguments. Specifically an ImageCollection with bands c('scale', 'offset').
## Not run:
# Load Libraries
library(rgee)
ee_Initialize()
library(exploreRGEE)
# Bring in data
huc <- exploreRGEE::huc
# get intitial image. Can by any get_*().
ld8 <- get_landsat(huc, method = 'ld8', startDate = '2014-01-01',
endDate = '2018-12-31', c.low = 6, c.high = 11)
# now subtract from new one
lr <- ld8 %>% get_linear(band = 'NDVI', temporal = 'yearly')
lr %>% viz(band = 'scale')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.