-
Notifications
You must be signed in to change notification settings - Fork 0
/
leadspec.initial.json
103 lines (103 loc) · 3.25 KB
/
leadspec.initial.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "IRTX MATSim to Noise connector",
"description":"This model is a connector between the upstream MATSim model and the downstream Noise analysis model.",
"version": "1.0.0",
"status":"draft",
"types": [
{"name": "Connector", "description":"???"}
],
"dockerImage":"???",
"url": "https://github.com/Horizon-LEAD/irtx-matsim-noise-connector",
"modelData": [
{
"name": "Configuration path",
"variableName": "configuration-path",
"description": "Path to the configuration file",
"isOutput": false,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"dataType": "file",
"extension": "json"
}
},
{
"name": "MATSim network path",
"variableName": "network-path",
"description": "Path to the MATSim output network file",
"isOutput": false,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"dataType": "file",
"extension": "xml.gz"
}
},
{
"name": "MATSim plans path",
"variableName": "plans-path",
"description": "Path to the MATSim output plans file",
"isOutput": false,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"dataType": "file",
"extension": "xml.gz"
}
},
{
"name": "Receivers out path",
"variableName": "receivers-path",
"description": "Path to where the receiver results will be saved",
"isOutput": true,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"dataType": "file",
"extension": "csv"
}
},
{
"name": "Volumes out path",
"variableName": "receivers-path",
"description": "Path to where the volumes results will be saved",
"isOutput": true,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"dataType": "file",
"extension": "csv"
}
},
{
"name": "Memory",
"variableName": "Xmx",
"description": "Memory available to Java",
"isOutput": false,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "str",
"dataType": "str",
"regex": "[0-9]+[MG]"
}
}
]
}