diff --git a/DESCRIPTION b/DESCRIPTION index 9ef0813010a24dcff4769745416f878f2e9a96f3..ecaa3a6ba2ad44e8fbc3b78b0e493ed64567d43c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: airGR Type: Package Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling -Version: 1.2.11.8 -Date: 2019-03-23 +Version: 1.2.11.9 +Date: 2019-03-25 Authors@R: c( person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")), person("Charles", "Perrin", role = c("aut", "ths"), comment = c(ORCID = "0000-0001-8552-1881")), diff --git a/NEWS.rmd b/NEWS.rmd index e656a6d598761a34eddf9496652a8cc4298ff5de..bc0032051f096dc23b5e39fd6f77fdec9b80a91a 100644 --- a/NEWS.rmd +++ b/NEWS.rmd @@ -13,7 +13,7 @@ output: -### 1.2.11.8 Release Notes (2019-03-23) +### 1.2.11.9 Release Notes (2019-03-25) diff --git a/R/BasinData.R b/R/BasinData.R deleted file mode 100644 index b1e6d222b6fa9446a9b6f8f6e23225cc5ba8ece6..0000000000000000000000000000000000000000 --- a/R/BasinData.R +++ /dev/null @@ -1,42 +0,0 @@ -#' @name BasinInfo -#' @docType data -#' @title Data sample: characteristics of a fictional catchment (L0123001, L0123002 or L0123003) -#' @description -#' R-object containing the code, station's name, area and hypsometric curve of the catchment. -#' @encoding UTF-8 -#' @format -#' List named 'BasinInfo' containing -#' \itemize{ -#' \item two strings: catchment's code and station's name -#' \item one float: catchment's area in km2 -#' \item one numeric vector: catchment's hypsometric curve (min, quantiles 01 to 99 and max) in metres -#' } -#' @examples -#' require(airGR) -#' data(L0123001) -#' str(BasinInfo) - -NULL - - -#' @name BasinObs -#' @docType data -#' @title Data sample: time series of observations of a fictional catchment (L0123001, L0123002 or L0123003) -#' @description -#' R-object containing the times series of precipitation, temperature, potential evapotranspiration and discharges. \cr -#' Times series for L0123001 or L0123002 are at the daily time-step for use with daily models such as GR4J, GR5J, GR6J, CemaNeigeGR4J, CemaNeigeGR5J and CemaNeigeGR6J. -#' Times series for L0123003 are at the hourly time-step for use with hourly models such as GR4H. -#' @encoding UTF-8 -#' @format -#' Data frame named 'BasinObs' containing -#' \itemize{ -#' \item one POSIXlt vector: time series dates in the POSIXlt format -#' \item five numeric vectors: time series of catchment average precipitation [mm], catchment average air temperature [degC], catchment average potential evapotranspiration [mm], outlet discharge [l/s], outlet discharge [mm] -#' } -#' @examples -#' require(airGR) -#' data(L0123001) -#' str(BasinObs) - -NULL -