Description Details See Also Examples
Import data from New Zealand's National Climate Database via CliFlo into R for exploring, analysis, plotting, exporting to KML, CSV, or other software.
The clifro package is intended to simplify the process of data
extraction, formatting and visualisation from the
CliFlo web portal. It
requires the user to build a query consisting of 3 main components; the user,
the datatype(s) and the station(s). These are
then combined using the cf_query
function that sends the query
to the CliFlo database and returns the results that can easily be plotted
using generic plotting functions.
This package requires the user to already have a current subscription to the National Climate Database unless a public user is sought, where data is limited to Reefton Ews. Subscription is free and can obtained from https://cliflo.niwa.co.nz/pls/niwp/wsubform.intro.
cf_user
, cf_datatype
, and
cf_station
for choosing the clifro user, datatypes and
stations, respectively.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | ## Not run:
# Create a public user ----------------------------------------------------
public.user = cf_user() # Defaults to "public"
public.user
# Select datatypes --------------------------------------------------------
# 9am Surface wind (m/s)
wind.dt = cf_datatype(2, 1, 4, 1)
# Daily Rain
rain.dt = cf_datatype(3, 1, 1)
# Daily temperature extremes
temp.dt = cf_datatype(4, 2, 2)
# Combine them together
all.dts = wind.dt + rain.dt + temp.dt
all.dts
# Select the Reefton Ews station ------------------------------------------
reefton.st = cf_station()
reefton.st
# Submit the query --------------------------------------------------------
# Retrieve all data from ~ six months ago at 9am
reefton.data = cf_query(public.user, all.dts, reefton.st,
paste(as.Date(Sys.time()) - 182, "9"))
reefton.data
# Plot the data -----------------------------------------------------------
# Plot the 9am surface wind data (first dataframe in the list) ---
reefton.data[1]
# all identical - although passed to different methods
plot(reefton.data) #plot,cfDataList,missing-method
plot(reefton.data, 1) #plot,cfDataList,numeric-method
plot(reefton.data[1]) #plot,cfData,missing-method --> plot,cfWind,missing-method
speed_plot(reefton.data)
direction_plot(reefton.data)
# Plot the daily rain data (second dataframe in the list) ---
reefton.data[2]
# With runoff and soil deficit
plot(reefton.data, 2)
# Just plot amount of rain (mm)
plot(reefton.data, 2, include_runoff = FALSE)
# Plot the hourly temperature data (third dataframe in the list) ---
plot(reefton.data, 3)
# Pass an argument to ggplot2::theme
library(ggplot2) # for element_text()
plot(reefton.data, 3, text = element_text(size = 18))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.