Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/additionals/e1detector/load/id/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
<!-- Without errors -->
3
<inductionLoop id="E1_01" lane="EdgeCenter1_1" pos="3" period="100.00" file="fileA.txt" vTypes="bus taxi private" friendlyPos="0"/>
4
5
<!-- non valid ID (missing) -->
6
<inductionLoop lane="EdgeCenter1_1" pos="6" period="100.00" file="fileA.txt" vTypes="bus taxi private" friendlyPos="0"/>
7
8
<!-- non valid ID (spaces) -->
9
<inductionLoop id="ID with spaces" lane="EdgeCenter1_1" pos="6" period="100.00" file="fileA.txt" vTypes="bus taxi private" friendlyPos="0"/>
10
11
<!-- non valid ID (duplicated) -->
12
<inductionLoop id="E1_01" lane="EdgeCenter1_1" pos="6" period="100.00" file="fileA.txt" vTypes="bus taxi private" friendlyPos="0"/>
13
14
<!-- Valid ID -->
15
<inductionLoop id="validID" lane="EdgeCenter1_1" pos="6" period="100.00" file="fileA.txt" vTypes="bus taxi private" friendlyPos="0"/>
16
17
</additional>
18
19