With a model run I can use command line parameters to change the locations of input files like so
model.ini
[project]
description = Reads in a CSV file and then writes the data out unchanged
[model readCSV]
framework = pipeline
location = readCSVPipeline.txt
readCSVPipeline.txt
input(bookmark('inputCSV', {location: $csvFile}))
-> save(name: 'output')
Riskscape command
C:\Users\powellj\csvParameter>riskscape model run readCSV -p "csvFile = 'test2.csv'"
Is it possible to do the same thing using
riskscape pipeline eval readCSVPipeline.txt
?