With remindStart, you can … start REMIND!
Installation
You can install the development version of remindStart like so:
remotes::install_github("johanneskoch94/remindStart")
Start REMIND from the command line
If your working directory is the remind directory:
# Default cfg
-e "remindStart::start()"
Rscript
# Pass a scenario config file
-e "remindStart::start()" --args path/to/config_file.csv
Rscript -e "remindStart::start(configFile = 'path/to/config_file.csv')"
Rscript
# Restart
-e "remindStart::start()" --args restart
Rscript -e "remindStart::start(restart = TRUE)"
Rscript
# Test one region
-e "remindStart::start()" --args testOneRegi
Rscript -e "remindStart::start(testOneRegi = TRUE)" Rscript
If your working directory is not the remind directory, specify the path with the remind
argument:
-e "remindStart::start(remind = 'path/to/remind')" Rscript