climateData {AquaBEHER} | R Documentation |
Contains daily weather data obtained from Instituto Nacional de Meteorologia (INAM). The sample data includes daily raw weather data from January 1, 1996, to December 31, 2020, from a weather station located in Angochen, Nampula province of Mozambique.
data(climateData)
A data frame containing daily values of weather variables:
Station_Name: Name of the weather station.
Lat: Latitude of the site in decimal degrees.
Lon: Longitude of the site in decimal degrees.
Elev: Elevation above sea level in meters.
Year: Year of the record (YYYY).
Month: Month of the record (MM).
Day: Day of the record (DD).
Rain: Daily rainfall in millimeters (mm).
Tmax: Daily maximum temperature at 2 meters height in degrees Celsius (°C).
Tmin: Daily minimum temperature at 2 meters height in degrees Celsius (°C).
INAM - Instituto Nacional de Meteorologia, Mozambique
## Load the climate data
data(climateData)
## Get the structure of the data frame
str(climateData)
## Get the head of the data frame
head(climateData)