View source: R/tmean_monthly_stack.R
tmean_monthly_stack | R Documentation |
This function will calculate the mean monthly air temperature based on the period of time selected (start_date and end_date).
tmean_monthly_stack(tmean_stack, start_date, end_date)
tmean_stack |
Stack of mean air temperature based on minimum and maximum air temperature Rasterstack |
start_date |
Date that start the investigation, should be in the following format (1958-01-01 /Year-Month-Day) |
end_date |
Date that end the investigation, should be in the following format (2017-12-31 /Year-Month-Day) |
Returns a Rasterstack object with a monthly mean air temperature from a period of time.
## Not run:
start_date <- c('2000-01-01')
end_date <- c('2017-12-01')
tmean_monthly <- tmean_monthly_stack(tmean_stack = img_tmean,
start_date = start_date,
end_date = end_date)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.