Skip to contents

A function that extract a time series of night time light by year from 1992-2014.

Usage

get_noaa(from, to, region, fun = "mean", scale = 100)

Arguments

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.

Value

a tibble with the new variables.

Examples

if (FALSE) {

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_noaa(
  from = "2001-01-01", to = "2003-01-01",fun = "max",scale = 1000)
}