A function that extract a time series of carbon monoxide (2018-11-22T12:00:13Z - 2022-05-15T00:00:00).
Arguments
- to, from
it's a string object,starting and final date.
- band
name of band.
- region
is a feature or feature collection.
- fun
function for extract statistic zonal (count, kurtosis, max, mean, median, min, mode, percentile, std, sum, variance, first).
- scale
A nominal scale in meters of the projection to work in.
Details
Name of some bands.
CO_column_number_density (mol/m²): Vertically integrated CO column density.
H2O_column_number_density (mol/m²): Water vapor column.
cloud_height (m): Scattering layer height.
sensor_altitude (m): Altitude of the satellite with respect to the geodetic sub-satellite point (WGS84).
sensor_azimuth_angle (degrees): Azimuth angle of the satellite at the ground pixel location (WGS84); angle measured East-of-North.
sensor_zenith_angle (degrees): Zenith angle of the satellite at the ground pixel location (WGS84); angle measured away from the vertical.
solar_azimuth_angle (degrees) Azimuth angle of the Sun at the ground pixel location (WGS84); angle measured East-of-North.
solar_zenith_angle (degrees): Zenith angle of the satellite at the ground pixel location (WGS84); angle measured away from the vertical.
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_co(
from = "2019-02-01", to = "2019-12-31",
band = "CO_column_number_density", fun = "max")
}