upgrade_usms_xml {SticsRFiles}R Documentation

Upgrading a usms.xml file to a newer version

Description

Upgrading a usms.xml file to a newer version

Usage

upgrade_usms_xml(
  file,
  out_dir,
  param_gen_file,
  obs_dir = NULL,
  stics_version = "V9.2",
  target_version = "V10.0",
  check_version = TRUE,
  overwrite = FALSE
)

Arguments

file

Path of a usms.xml file

out_dir

Output directory path of the generated file

param_gen_file

Path of the param_gen.xml file corresponding to the file version

obs_dir

Directory path of the observation data files

stics_version

Name of the STICS version (VX.Y format)

target_version

Name of the STICS version to upgrade files to (VX.Y format)

check_version

Perform version consistency with in stics_version input with the file version and finally checking if the upgrade is possible allowed to the target_version. If TRUE, param_gen_file is mandatory.

overwrite

logical (optional), TRUE for overwriting file if it exists, FALSE otherwise

Details

See get_stics_versions_compat() for listing versions

Value

None

Examples


dir_path <- get_examples_path(file_type = "xml", stics_version = "V9.2")

upgrade_usms_xml(
  file = file.path(dir_path,"usms.xml"),
  out_dir = tempdir(),
  param_gen_file = file.path(dir_path, "param_gen.xml")
)


[Package SticsRFiles version 1.3.0 Index]