get_viirs | R Documentation |
A function that extract a time series of night time light by year from 2012-2020.
get_viirs(from, to, region, fun = "mean", scale = 100)
to , from |
it's a string object,starting and final date. |
region |
it's a feature collection. |
fun |
function for extract statistic zonal (count, kurtosis, max, mean, median, min, mode, percentile, std, sum, variance). |
scale |
A nominal scale in meters of the projection to work in. |
a tibble with the new variables.
## Not run:
library(tidyverse)
library(rgee)
library(innovar)
library(sf)
ee_Initialize()
# 1. Reading a sf object
data("Peru")
region <- Peru
region_ee <- pol_as_ee(region, id = 'distr' , simplify = 1000)
# 2. Extracting climate information
data <- region_ee %>% get_viirs(
from = "2001-01-01", to = "2003-01-01",fun = "max",scale = 1000)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.