From 3dec5d845e24e8b88dfe6ecf656b274a58c023ea Mon Sep 17 00:00:00 2001
From: Delaigue Olivier <olivier.delaigue@irstea.priv>
Date: Thu, 23 May 2019 15:22:52 +0200
Subject: [PATCH] v1.3.2.11 CLEAN: doc about the deprecated PEdaily_Oudin fun
 is removed

---
 DESCRIPTION          |  2 +-
 NEWS.rmd             |  2 +-
 man/PEdaily_Oudin.Rd | 62 --------------------------------------------
 3 files changed, 2 insertions(+), 64 deletions(-)
 delete mode 100644 man/PEdaily_Oudin.Rd

diff --git a/DESCRIPTION b/DESCRIPTION
index 6c0204b1..25b6880b 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
 Package: airGR
 Type: Package
 Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
-Version: 1.3.2.10
+Version: 1.3.2.11
 Date: 2019-05-23
 Authors@R: c(
   person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
diff --git a/NEWS.rmd b/NEWS.rmd
index 66d6877f..3defc893 100644
--- a/NEWS.rmd
+++ b/NEWS.rmd
@@ -14,7 +14,7 @@ output:
 
 
 
-### 1.3.2.10 Release Notes (2019-05-23)
+### 1.3.2.11 Release Notes (2019-05-23)
 
 
 #### New features
diff --git a/man/PEdaily_Oudin.Rd b/man/PEdaily_Oudin.Rd
deleted file mode 100644
index 3470f603..00000000
--- a/man/PEdaily_Oudin.Rd
+++ /dev/null
@@ -1,62 +0,0 @@
-\encoding{UTF-8}
-
-
-\name{PEdaily_Oudin}
-\alias{PEdaily_Oudin}
-
-
-\title{Computation of daily series of potential evapotranspiration with Oudin's formula}
-
-
-\usage{
-PEdaily_Oudin(JD, Temp, LatRad, Lat, LatUnit)
-}
-
-
-\arguments{
-\item{JD}{[numeric] time series of Julian day of the year [-]; see details below}
-
-\item{Temp}{[numeric] time series of daily mean air temperature [°C]}
-
-\item{LatRad}{(deprecated)[numeric] latitude of measurement for the temperature series [rad]. Please use \code{Lat} instead}
-
-\item{Lat}{[numeric] latitude of measurement for the temperature series [radian or degrees]}
-
-\item{LatUnit}{[character] latitude unit (default = \code{"rad"} or \code{"deg"})}
-}
-
-
-\value{
-[numeric] time series of daily potential evapotranspiration [mm/d]
-}
-
-
-\description{
-Function which computes daily PE using the formula from Oudin et al. (2005).
-}
-
-\details{
-In the \code{JD} argument, the Julian day of the year of the 1st of January is equal to 1 and the 31st of December to 365 (366 in leap years)). If the Julian day of the year is computed on an object of the \code{POSIXlt} class, the user has to add 1 to the returned value (e.g. \code{as.POSIXlt("2016-12-31")$yday + 1}).
-}
-
-\examples{
-library(airGR)
-data(L0123001)
-PotEvap <- PEdaily_Oudin(JD = as.POSIXlt(BasinObs$DatesR)$yday + 1,
-                         Temp = BasinObs$T,
-                         Lat = 0.8, LatUnit = "rad")
-}
-
-
-\author{
-Laurent Coron, Ludovic Oudin, Olivier Delaigue, Guillaume Thirel
-}
-
-
-\references{
-Oudin, L., F. Hervieu, C. Michel, C. Perrin, V. Andréassian, F. Anctil and C. Loumagne (2005). 
-  Which potential evapotranspiration input for a lumped rainfall-runoff model?: 
-  Part 2-Towards a simple and efficient potential evapotranspiration model for rainfall-runoff modelling. 
-  Journal of Hydrology, 303(1-4), 290-306. doi:10.1016/j.jhydrol.2004.08.026.
-}
-
-- 
GitLab