inst/check_season/global.R

# source('inst/shiny/check_season/global.R')
library(phenofit)
library(shiny)
# library(DT)
library(data.table)
library(magrittr)

load('data/phenoflux115.rda')
load('data/phenoflux115_ET&GPP&VI.rda')
# load('inst/shiny/check_season/data/phenoflux_115.rda')
# load('inst/shiny/check_season/data/ET&GPP&VI_flux115.rda')

# sites <- sort(sites)

getSiteData  <- function(df, sitename){
    df[site == sitename, .(t = date, y = GPP_DT, w = 1)] #%T>% plot_input(365)
}

getINPUT_GPPobs <- function(df, st, sitename){
    sp       <- st[site == sitename]
    south    <- sp$lat < 0
    titlestr <- with(sp, sprintf("[%3d] %s, %s, lat = %.2f", ID, site, IGBP, lat))

    d   <- df[site == sitename, .(t = date, GPP_DT, GPP_NT, w = 1)] #%T>% plot_input(365)
    d$y <- rowMeans(d[, .(GPP_DT, GPP_NT)], na.rm = T)
    d[y < 0, y := 0] # for GPP_NT
    # d_obs[site == sitename, .(t = date, y = GPP_DT, w = 1)] %>% plot_input(365)
    d_new <- add_HeadTail(d, south = south)
    INPUT <- do.call(check_input, d_new)
    # d <- d_obs[site == sitename, ]

    INPUT$south <- south
    INPUT$titlestr <- titlestr
    # list(INPUT = INPUT, plotdat = d)
    INPUT
}

check_season <- function(INPUT,
                         FUN_season = c("season", "season_mov"),
                         rFUN = "wWHIT",
                         wFUN = "wTSM",
                         lambda = 1000,
                         iters = 3,
                         IsPlot = F, ...) {
    # sitename <- "US-ARM" # "FR-LBr", "ZA-Kru", "US-ARM"

    FUN_season <- get(FUN_season[1])
    wFUN       <- get(wFUN)
    res  <- FUN_season(INPUT, south = INPUT$south, 
                        rFUN = get(rFUN),
                        wFUN = wFUN,
                     IsPlot = IsPlot,
                     lambda = lambda,
                     iters = iters,
                     minpeakdistance = 30,
                     MaxPeaksPerYear = 3,
                     MaxTroughsPerYear = 4,
                     ypeak_min = 1, ...,
                     IsOnlyPlotbad = FALSE
    )

    if (IsPlot){
        abline(h = 1, col = "red")
        title(INPUT$titlestr)
    }
    return(res)
}

plot_data <- function(d, title){
    par(setting)
    do.call(check_input, d) %>% plot_input()
    mtext(title, side = 2, line = 2, cex = 1.3, font = 2)
}

################################################################################
## global parameters for check_season
nptperyear <- 365
setting    <- list(mar = c(2, 3, 1, 1), mgp = c(1.2, 0.6, 0))
fig.height <- 225
par(setting)

param_step <- 0.1
# sites_grp  <- list(sites_sg, sites_mg) %>%
#     set_names(c("single season", "multiple season"))

# r_max = 0.1,
# r_min = 0,
# rtrough_max = 0.6,
kongdd/phenofit.shiny documentation built on Nov. 19, 2022, 10:11 p.m.