R/historical.R

#' Monthly Australia precipitation data since the initial station recording year
#'
#' Historical precipitation data recorded by Australia weather stations
#'
#' @format A cubble object with 284 rows and 11 columns:
#' \describe{
#'  \item{id}{station ID}
#'  \item{long}{longitude of the station}
#'  \item{lat}{latitude of the station}
#'  \item{elev}{elevation of the station}
#'  \item{name}{name of the station}
#'  \item{wmo_id}{World Meteorological Organisation ID}
#'  \item{first_year}{the first year the variable started to be recorded}
#'  \item{last_year}{the last year the variable started to be recorded (till 2021)}
#'  \item{ts}{a list column that contains monthly summed precipitation
#'  after removing the initial fractional month}
#' }
#' @keywords datasets
"historical_prcp"


#' Daily Australia maximum temperature data since the initial station recording year
#'
#' Historical temperature (daily maximum) data recorded by Australia weather stations
#'
#' @format A cubble object with 204 rows and 10 columns:
#' \describe{
#'  \item{id}{station ID}
#'  \item{long}{longitude of the station}
#'  \item{lat}{latitude of the station}
#'  \item{elev}{elevation of the station}
#'  \item{name}{name of the station}
#'  \item{wmo_id}{World Meteorological Organisation ID}
#'  \item{first_year}{the first year the variable started to be recorded}
#'  \item{last_year}{the last year the variable started to be recorded (till 2021)}
#'  \item{ts}{a list column that contains daily variables of maximum temperature
#'  from the station initial recording day}
#'  \item{tmax_missing}{the proportion of NA for maximum temperature}
#' }
#' @keywords datasets
"historical_tmax"
huizezhang-sherry/weatherdata documentation built on June 15, 2022, 6:40 p.m.