Define default output folder without timestamp

I can define a default output folder in my project.ini like this

[project]
output-base-location = C:\path\to\directory

but this will include 2 sub directories modelname\timestamp. Is it possible to define a default that will behave the same way that –output does on the command line? It would be really good if it could be defined on a per model basis in model.ini

Thanks

Hi John,

I don’t think that is possible currently, apart from scripting something yourself, e.g.

 $ cat ./run-model.sh
 #!/bin/sh
 MODEL=$1
 riskscape model run ${MODEL} --output output/${MODEL} --replace

It seems like a good idea though, so I’ll add a ticket to our backlog.

Cheers,
Tim

1 Like