| get_diff | R Documentation |
This function allows the user to get differences by subtracting two images. Only works for one-band selections and from different time series.
get_diff(data, startDate2 = "2010-01-01", endDate2 = "2018-10-30", band = NULL)
data |
A previously create get_* object |
startDate2 |
|
endDate2 |
|
band |
A |
A list of Earth Engine Objects and arguments.
## 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
diff <- ld8 %>% get_diff(startDate2 = '2019-01-01', endDate2 = '2019-12-31', band = 'NDVI')
# now viz, rr, band, etc.
diff %>% viz(scale = 30)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.