R/data.R

#' Skitouring routes in the french Alps
#'
#' A dataset containing skitouring routes in the french Alps including some attributes.
#'
#' @format A data frame with 4381 rows and 11 variables:
#' \describe{
#'   \item{route}{id of the route}
#'   \item{nom}{name of the route}
#'   \item{orientation}{orientation of the route. Possible values: S, SE, E, NE, N, NW, W, SW, T. T meaning all}
#'   \item{denivele}{elevation gain of the route}
#'   \item{difficulte}{ski difficulty of the route. Possible values: 1.x to 5.x with x from 1 to 3 (or 4)}
#'   \item{exposition}{exposition of the route. Possible values: 1 to 4}
#'   \item{altitude}{starting elevation of the route}
#'   \item{massif}{range of the route}
#'   \item{latitude}{starting latitude of the route}
#'   \item{longitude}{starting longitude of the route}
#'   \item{geometry}{starting position of the route}
#' }
#' @source \url{https://skitour.fr/api/}
"ski_routes"

#' Skitouring evaluations in the french Alps
#'
#' A dataset containing historical (2010 - 2021) skitouring evaluations in the french Alps including some attributes.
#'
#' @format A data frame with 54600 rows and 3 variables:
#' \describe{
#'   \item{route}{id of the route to which a condition applies}
#'   \item{date}{condition date}
#'   \item{skiabilite}{ski conditions evaluation. Possible values: 1 to 5 - highest means best}
#' }
#' @source \url{https://skitour.fr/api/}
"ski_evaluations_history"

#' Nivological stations in the french Alps
#'
#' A dataset containing nivological stations in the french Alps including some attributes.
#'
#' @format A data frame with 90 rows and 4 variables:
#' \describe{
#'   \item{station}{id of the station}
#'   \item{nom}{station name}
#'   \item{altitude}{station altitude}
#'   \item{geometry}{station position}
#' }
#' @source \url{https://donneespubliques.meteofrance.fr/donnees_libres/Txt/Nivo/postesNivo.json}
"nivo_stations"

#' Nivological observations in the french Alps
#'
#' A dataset containing historical (2010 - 2021) nivological observations in the french Alps including some attributes.
#'
#' @format A data frame with 136825 rows and 15 variables:
#' \describe{
#'   \item{station}{station id}
#'   \item{date}{observation date}
#'   \item{dir_vent}{wind direction in degree}
#'   \item{force_vent}{wind speed in m/s}
#'   \item{temperature}{mean temperature in K}
#'   \item{temp_min}{min temperature in K}
#'   \item{temp_max}{max temperature in K}
#'   \item{point_rose}{dew point in K}
#'   \item{humidite}{humidity in %}
#'   \item{nebulosite}{nebulosity in %}
#'   \item{precipitation}{precipitations in mm}
#'   \item{neige_totale}{total snow height in m}
#'   \item{neige_fraiche}{fresh snow height in m}
#'   \item{temp_neige}{snow temperature in K}
#'   \item{grain_neige}{snowflake type}
#' }
#' @source \url{https://donneespubliques.meteofrance.fr/?fond=produit&id_produit=94&id_rubrique=32}
"nivo_observations_history"
vadmbertr/bonski.data documentation built on Dec. 23, 2021, 2:06 p.m.