| hydromet-class {hydrotoolbox} | R Documentation |
hydromet superclass object
Description
A suitable object for store basic information about an hydro-meteorological station.
Value
A basic hydromet class object. This class is provided in order to set the meta-data of the station.
Slots
idANY. This is the ID assigned by the agency.
agencystring. The name of the agency (or institution) that provides the data of the station.
stationstring. The name of the (hydro)-meteorological station.
latnumeric. Latitude of the station.
longnumeric. Longitude of the station
altnumeric. Altitude of the station.
countrystring. Country where the station is located. Argentina is set as default value.
provincestring. Name of the province where the station is located. Mendoza is set as default value.
riverstring. Basin river's name.
activelogical. It indicates whether or not the station is currently operated. Default value is
TRUE.basin_areanumeric. The basin area (km2) of the catchment upstream of the gauge.
basin_effnumeric. The effective area (km2) of the basin upstream of the gauge. In Canada, many basins have variable contributing fractions. In these basins, the effective area of the basin contributes flow to the outlet at least one year in two.
other_1ANY. It is the first free-to-fill slot in order to give you the chance to write extra information about your hydro-met station.
other_2ANY. It is the second free-to-fill slot in order to give you the chance to write extra information about your hydro-met station.
Examples
## Not run:
# create class hydromet
hm_create(class_name = "hydromet")
## End(Not run)