Get the global historical climate data

get_ghcnd(id = "UKE00105923")

Arguments

id

Examples

# NOT RUN {
d<-get_ghcnd("MXN00007036"
d %>% filter(element== "PRCP") ->prec
library(dygraph)
library(xts)
pr<-xts(x=prec$value,order.by=prec$date)
dygraph(pr) %>% dyRangeSelector() %>% dyRoller(rollPeriod=365)



# }