Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/demands/container/load/parameters/routes.rou.xml
169781 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<!-- generated on 2022-04-19 15:47:13 by Eclipse SUMO netedit Version v1_12_0+2147-0a4b045b589
4
-->
5
6
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd">
7
<!-- Vehicles, containers and containers (sorted by depart) -->
8
<container id="c_0" depart="0.00">
9
<!-- valid generic parameter (valid) -->
10
<param key="key1" value="value1"/>
11
12
<!-- empty generic parameter (invalid -->
13
<param/>
14
15
<!-- missin key (invalid) -->
16
<param value="value2"/>
17
18
<!-- empty key (invalid) -->
19
<param key="" value="value3"/>
20
21
<!-- key contains invalid characters (invalid) -->
22
<param key="$$key with spaces%%" value="value4"/>
23
24
<!-- duplicated key (valid, overwrites the first one, show warning) -->
25
<param key="key1" value="value5"/>
26
27
<!-- missing value (invalid, value must exist)-->
28
<param key="key2"/>
29
30
<!-- empty value (valid, value may be empty) -->
31
<param key="key2" value=""/>
32
33
<!-- value contains invalid characters (valid - no restrictions on value) -->
34
<param key="key3" value="$$value with spaces%%"/>
35
36
<!-- valid generic parameter (valid) -->
37
<param key="keyFinal" value="valueFinal"/>
38
39
<tranship from="Edge0" to="Edge2"/>
40
</container>
41
</routes>
42
43