Commit 10da4cb7 authored by Delaigue Olivier's avatar Delaigue Olivier
Browse files

v1.0.12.2 PEdaily_Oudin ndoc updated

Showing with 15 additions and 15 deletions
+15 -15
Package: airGR
Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.0.12.1
Version: 1.0.12.2
Date: 2018-08-28
Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
......
......@@ -14,14 +14,7 @@ output:
### 1.0.12.0 Release Notes (2018-08-28)
#### Major user-visible changes
- <code>Calibration_Michel()</code> is now faster during the grid-screening step when a parameter is set using <code>FixedParam</code> in <code>CreateCalibOptions</code>.
### 1.0.11.0 Release Notes (2018-07-18)
### 1.0.12.2 Release Notes (2018-08-28)
#### Deprectated and defunct
......@@ -33,6 +26,8 @@ output:
- <code>PEdaily_Oudin()</code> now presents a <code>LatUnit</code> argument which allows to chose the unit of the latitude between radians and degrees.
- <code>Calibration_Michel()</code> is now faster during the grid-screening step when a parameter is set using <code>FixedParam</code> in <code>CreateCalibOptions</code>.
#### Minor user-visible changes
......
......@@ -9,7 +9,7 @@
\usage{
PEdaily_Oudin(JD, Temp, LatRad)
PEdaily_Oudin(JD, Temp, Lat, LatRad, LatUnit)
}
......@@ -18,7 +18,11 @@ PEdaily_Oudin(JD, Temp, LatRad)
\item{Temp}{[numeric] time series of daily mean air temperature [°C]}
\item{LatRad}{[numeric] latitude of measurement for the temperature series [rad]}
\item{Lat}{[numeric] latitude of measurement for the temperature series [radian or degrees]}
\item{LatRad}{(deprecated)[numeric] latitude of measurement for the temperature series [rad]. Please use \code{Lat} instead}
\item{LatUnit}{[character] latitude unit (default = \code{"rad"} or \code{"deg"})), default = \code{"all"}}
}
......@@ -33,14 +37,15 @@ Function which computes daily PE using the formula from Oudin et al. (2005).
\examples{
library(airGR)
data(L0123001)
PotEvap <- PEdaily_Oudin(JD = as.POSIXlt(BasinObs$DatesR)$yday, Temp = BasinObs$T, LatRad = 0.8)
library(airGR)
data(L0123001)
PotEvap <- PEdaily_Oudin(JD = as.POSIXlt(BasinObs$DatesR)$yday, Temp = BasinObs$T,
Lat = 0.8, LatUnit = "rad")
}
\author{
Laurent Coron, Ludovic Oudin
Laurent Coron, Ludovic Oudin, Olivier Delaigue
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment