Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/additionals/busstop/load/parkinglength/additionals.add.xml
169772 views
1
<additional xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/additional_file.xsd">
2
3
<!-- missing parkingLength -->
4
<busStop id="busStop_01" lane="EdgeCenter1_1" startPos="25" endPos="35"/>
5
6
<!-- non valid format parkingLength (dummy) -->
7
<busStop id="busStop_02" lane="EdgeCenter1_1" startPos="25" endPos="35" parkingLength="dummyparkingLength"/>
8
9
<!-- non valid format parkingLength (negative) -->
10
<busStop id="busStop_03" lane="EdgeCenter1_1" startPos="25" endPos="35" parkingLength="-7"/>
11
12
<!-- non valid format parkingLength (double) -->
13
<busStop id="busStop_04" lane="EdgeCenter1_1" startPos="25" endPos="35" parkingLength="2.5"/>
14
15
<!-- valid format parkingLength -->
16
<busStop id="busStop_05" lane="EdgeCenter1_1" startPos="25" endPos="35" parkingLength="6"/>
17
18
</additional>
19
20