Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/additionals/parkingspace/load/parameters/additionals.add.xml
169783 views
1
<additional xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/additional_file.xsd">
2
<parkingArea id="parkingArea_0" lane="EdgeCenter1_1" startPos="20.00" endPos="30.00">
3
<space x="0.00" y="15.00" z="1" width="3.30" length="6.00" angle="45.00">
4
5
<!-- generic parameter -->
6
<param key="key1" value="value1"/>
7
8
<!-- empty key -->
9
<param value="value2"/>
10
11
<!-- invalid key -->
12
<param key="$$key with spaces%%" value="value3"/>
13
14
<!-- duplicated key -->
15
<param key="key1" value="value4"/>
16
17
<!-- empty value -->
18
<param key="key2"/>
19
20
<!-- invalid value -->
21
<param key="key3" value="$$value with spaces%%"/>
22
23
<!-- invalid value -->
24
<param key="key4" value="value5"/>
25
26
<!-- empty generic parameter -->
27
<param/>
28
29
</space>
30
</parkingArea>
31
</additional>
32
33