hydrobricks
Loading...
Searching...
No Matches
CmdLineDesc.h
1#include <wx/cmdline.h>
2
3static const wxCmdLineEntryDesc cmdLineDesc[] = {
4 {wxCMD_LINE_SWITCH, "v", "version", "Show version number and quit"},
5 {wxCMD_LINE_OPTION, NULL, "model-file", "Path to the model settings file"},
6 {wxCMD_LINE_OPTION, NULL, "parameters-file", "Path to the model parameters file"},
7 {wxCMD_LINE_OPTION, NULL, "basin-file", "Path to the spatial structure file"},
8 {wxCMD_LINE_OPTION, NULL, "data-file", "Path to the spatial structure file"},
9 {wxCMD_LINE_OPTION, NULL, "output-path", "Path to save the output from hydrobricks (no ending backslash)"},
10 {wxCMD_LINE_OPTION, NULL, "start-date", "Starting date of the modelling (YYYY-MM-DD)"},
11 {wxCMD_LINE_OPTION, NULL, "end-date", "Ending date of the modelling (YYYY-MM-DD)"},
12 {wxCMD_LINE_NONE}};
13
14static const wxString cmdLineLogo = wxT(
15 "\n"
16 "________________________________________________________\n"
17 " _ _ _ _ _ \n"
18 "| |__ _ _ __| |_ __ ___ | |__ _ __(_) ___| | _____ \n"
19 "| '_ \\| | | |/ _` | '__/ _ \\| '_ \\| '__| |/ __| |/ / __|\n"
20 "| | | | |_| | (_| | | | (_) | |_) | | | | (__| <\\__ \\ \n"
21 "|_| |_|\\__, |\\__,_|_| \\___/|_.__/|_| |_|\\___|_|\\_\\___/\n"
22 " |___/ \n"
23 "________________________________________________________\n"
24 "\n");
25
26static const wxString cmdLineLogo2 = wxT(
27 "\n"
28 "________________________________________________________\n"
29 " _ _ _ _ _ \n"
30 "| | | | | | (_) | | \n"
31 "| |__ _ _ __| |_ __ ___ | |__ _ __ _ ___| | _____ \n"
32 "| '_ \\| | | |/ _` | '__/ _ \\| '_ \\| '__| |/ __| |/ / __|\n"
33 "| | | | |_| | (_| | | | (_) | |_) | | | | (__| <\\__ \\ \n"
34 "|_| |_|\\__, |\\__,_|_| \\___/|_.__/|_| |_|\\___|_|\\_\\___/\n"
35 " __/ | \n"
36 " |___/ \n"
37 "________________________________________________________\n"
38 "\n");