# Get information about available rain gauges
# within a 10km radius of latitude 54.5 and longitude -3.2
if (FALSE) {
GetDataEA_Rain(Lat = 54.5, Lon = -3.2)
}
# Use the WISKI reference ID for the Honister rain gauge
# to get some hourly rain data for December 2015
if (FALSE) {
honister_dec_2015 <- GetDataEA_Rain(
WISKI_ID = "592463",
Period = "Hourly", From = "2015-12-01", To = "2015-12-31"
)
}
# Inspect the first few rows and plot the data
if (FALSE) {
head(honister_dec_2015)
plot(honister_dec_2015, type = "h", ylab = "Rainfall (mm)")
}
Run the code above in your browser using DataLab