Description Usage Format Source References Examples
Meteorological data from an automatic weather station in the Central Andes of Chile.
1  | 
A data frame with 1152 observations on the following 10 variables.
yearYear
doyDay of the year
hhhour
mmminute
TairAir temperature, grades centigrade
pyra1Incoming solar short-wave radiation Wm^-2
pyra2Reflected solar short-wave radiation Wm^-2
windspeedWind speed, ms^-1
winddirWind direction, degrees
RHRelative humidity %
Measured by the author on Loma Larga Glacier, -33.6917, -70.0, 4640 m a.s.l. January 2001.
Corripio, J. G. and Purves, R. S.: 2005, Surface energy balance of high altitude glaciers in the Central Andes: the effect of snow penitentes, in C. de Jong, D. Collins and R. Ranzi (eds), Climate and Hydrology in Mountain Areas, Wiley, London, chapter 3, pp. 15-27.
1 2 3 4 5 6 7 8 9 10 11 12  | data(meteoandes)
str(meteoandes) 
# plot the 2 pyranometers measurements 
# one facing up: incident insolation, one facing down: reflected insolation
meteodate = strptime(paste(meteoandes$year,meteoandes$doy,meteoandes$hh,meteoandes$mm),
	format="%Y %j %H %M",tz="America/Santiago")
plot(meteodate,meteoandes$pyra1,'l',col=2,xlab='Date',
	ylab=expression(paste('Solar radiation [ ',Wm^-2,' ]')),
	main='Insolation at Loma Larga glacier') 
lines(meteodate,meteoandes$pyra2,col=4)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.