read_apsim: Read APSIM generated .out files

View source: R/apsim_classic.R

read_apsimR Documentation

Read APSIM generated .out files

Description

read ‘output’ databases created by APSIM runs (.out and .sim). One file at a time.

Usage

read_apsim(
  file = "",
  src.dir = ".",
  value = c("report", "all"),
  date.format = "%d/%m/%Y"
)

Arguments

file

file name

src.dir

source directory where file is located

value

either ‘report’ (data.frame) or ‘all’ (list)

date.format

format for adding ‘Date’ column

Details

Read APSIM generated .out files

Value

This function returns a data frame with APSIM output or a list if value equals ‘all’

Examples

## Not run: 
extd.dir <- system.file("extdata", package = "apsimx")
maize.out <- read_apsim("Maize", src.dir = extd.dir, value = "report")
millet.out <- read_apsim("Millet", src.dir = extd.dir, value = "report")

## End(Not run)


apsimx documentation built on March 18, 2022, 7:52 p.m.