R/see_stations_info.R

Defines functions see_stations_info

Documented in see_stations_info

#' Localization of the automatic weather station of INMET
#' @description Function to see the localization of the automatic weather station of INMET.
#' @importFrom readxl read_xlsx
#' @examples
#' \dontrun{
#' see_stations_info()
#' }
#' @return A data.frame with informations of OMM code, latitude, longitude and altitude of all AWS stations available in INMET.
#' @export
#' @author Roberto Filgueiras, Luan P. Venancio, Catariny C. Aleman and Fernando F. da Cunha


see_stations_info <- function() {
  a <- readxl::read_xlsx(system.file("extdata", paste0("Localization_AWS", ".xlsx"), package = "BrazilMet"))
  return(a)
}

Try the BrazilMet package in your browser

Any scripts or data that you put into this service are public.

BrazilMet documentation built on April 12, 2025, 2:11 a.m.