meteos {pipenostics} | R Documentation |
Get list of weather stations (meteos)
Description
Get a list of weather stations located primarily in the central and northern parts of Eurasia. For each weather station, the following information is provided: an integer station ID, geographic coordinates, altitude, and the mean annual ground temperature averaged over depth.
Usage
meteos()
Value
list of weather stations (meteos) with the next fields:
station_id
Weather station unique identifier. Type:
assert_integer
.name
Human-readable name of weather station. Type:
assert_character
.lat
Geographical position of wether station. Latitude, [DD]. Type:
assert_double
.lon
Geographical position of wether station. Longitude, [DD]. Type:
assert_double
.alt
Altitude - position of weather station above sea level, [m]. Type:
assert_double
.avg
Mean annual ground temperature averaged over depth, [°C]. Type:
assert_double
.
Type: assert_data_frame
.
References
Climate Change Investigation Laboratory. Description of the array of daily data on soil temperature at depths up to 320 centimeters by meteorological stations of the Russian Federation.
See Also
mgtdhid
to get hourly ground temperature values at different
depths measured at the listed weather stations.
Other utils:
geoarea()
,
mgtdhid()
,
wth_d()
Examples
library(pipenostics)
head(meteos())