read_sol {DSSAT} | R Documentation |
Reads soil parameters from a single DSSAT soil parameter file (*.SOL)
Description
Reads soil parameters from a single DSSAT soil parameter file (*.SOL)
Usage
read_sol(
file_name,
id_soil = NULL,
left_justified = NULL,
col_types = NULL,
col_names = NULL
)
Arguments
file_name |
a character vector of length one that contains the name of a single DSSAT output file |
id_soil |
a length-one character vector containing the soil ID code for a single soil profile |
left_justified |
A character vector of column names that should be left justified |
col_types |
One of NULL, a cols() specification, or a string.
See |
col_names |
A character vector of column names; primarily helpful for cases where there are no white spaces between column names within the header line |
Value
a tibble containing the data from the raw DSSAT file
Examples
# Extract file path for sample soil file
sample_sol <- system.file('extdata','SAMPLE.SOL',package='DSSAT')
sol <- read_sol(sample_sol)
[Package DSSAT version 0.0.9 Index]