| climateData {AquaBEHER} | R Documentation |
A dataframe containing raw climate data
Description
The R data object was obtained from Instituto Nacional de Meteorologia (INAM). This example data set contains the daily raw climate data over the period between 1/1/1996 and 12/31/2020 from a weather station located in Angochen, Nampula province of Mozambique.
Usage
data(climateData)
Format
A data frame containing daily observations of climate parameters:
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 record "YYYY".
Month: month of record "MM".
Day: day of record "DD".
Rain: daily rainfall in (mm).
Tmax: daily maximum temperature at 2-m
height in (°C).
Tmin: daily minimum temperature at 2-m
height in (°C).
Source
INAM - Instituto Nacional de Meteorologia, Mozambique
See Also
Examples
# load example data:
data(climateData)
# Get the structure of the data frame:
str(climateData)
# Get the head of the data frame:
head(climateData)