Learn R Programming

apsimx (version 2.2)

get_iemre_apsim_met: Get weather data from Iowa Environmental Mesonet Reanalysis

Description

Retrieves weather data from Iowa Environmental Mesonet Reanalysis into an APSIM met file

Usage

get_iemre_apsim_met(
  lonlat,
  dates,
  wrt.dir = ".",
  filename = NULL,
  fillin.radn = FALSE
)

Arguments

lonlat

Longitude and latitude vector

dates

date ranges

wrt.dir

write directory

filename

file name for writing out to disk

fillin.radn

whether to fill in radiation data using the nasapower pacakge. Default is FALSE.

Value

returns an object of class ‘met’ and writes a file to disk when filename is supplied.

Details

The original data can be obtained from: https://mesonet.agron.iastate.edu/iemre/

If the filename is not provided it will not write the file to disk, but it will return an object of class ‘met’. This is useful in case manipulation is required before writing to disk.

Examples

Run this code
# NOT RUN {
## This will not write a file to disk
iemre <- get_iemre_apsim_met(lonlat = c(-93,42), dates = c("2012-01-01","2012-12-31"))
## Note that solar radiation is not available, but can be filled in
## using the nasapower package
iemre2 <- get_iemre_apsim_met(lonlat = c(-93,42), 
                             dates = c("2012-01-01","2012-12-31"), 
                             fillin.radn = TRUE)
summary(iemre)
summary(iemre2)

## Still it is important to check this object
## Since there is one day with missing solar radiation
check_apsim_met(iemre2)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab