if (FALSE) {
## Example 1: Replace MY_EMAIL_ADDRESS with your email address below
## Latitude and Longitude character strings
boonah_data <-
get_silodata(latitude = "-27.9927", longitude = "152.6906",
email = "MY_EMAIL_ADDRESS",
START = "20190101", FINISH = "20200531")
## Example 2: Replace MY_EMAIL_ADDRESS below with yours - adds extra column
## Latitude and Longitude are numeric
boonah_data2 <-
get_silodata(latitude = -27.9927, longitude = 152.6906,
email = "MY_EMAIL_ADDRESS",
START = "20190101", FINISH = "20200531",
extras = list(Sitename = "Boonah"))
## Example 3: Replace MY_EMAIL_ADDRESS below with yours - adds extra column
## Latitude and Longitude are numeric.
## Retreives all Morton hydrological evapotranspirations
boonah_data3 <-
get_silodata(latitude = -27.9927, longitude = 152.6906,
email = "MY_EMAIL_ADDRESS", FORMAT = "allmort",
START = "20190101", FINISH = "20190115",
extras = list(Sitename = "Boonah"))
## Example 4: Replace MY_EMAIL_ADDRESS below with yours - adds extra column
## Latitude and Longitude are numeric. Retreives two months of
## total rainfall and evaporation and means for max/min
## temperatures, solar radiation and vapour pressure
boonah_data4 <-
get_silodata(latitude = -27.9927, longitude = 152.6906,
email = "drpetebaker@gmail.com", FORMAT = "monthly",
START = "20190101", FINISH = "20190228",
extras = list(Sitename = "Boonah"))
}
Run the code above in your browser using DataLab