modCalibrator {foreSIGHT}R Documentation

modCalibrator

Description

Calibrates weather generator models specified using modelTag.

Usage

modCalibrator(obs = NULL, modelTag = NULL, window = NULL)

Arguments

obs

A dataframe of observed climate data in the form Year Month Day P Temp.

modelTag

A character vector of which stochastic models to use to create each climate variable. Supported tags are shown in under details below.

window

moving average window to calibrate daily gamma parameters for the modelTag "P-har-WGEN".

Details

modelTag provides the main function with requested models. modelTag is vector of any of the following supported models:

Examples


data(tankDat)                               #Load tank data (tank_obs)
modelTag=c("P-ann-wgen","Temp-har-wgen")  #Select a rainfall and a temperature generator
out<- modCalibrator(obs = tank_obs,         #Calibrate models
                    modelTag = modelTag)

[Package foreSIGHT version 1.2.0 Index]