Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/additionals/e3detector/load/id/additionals.add.xml
169771 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
<entryExitDetector id="entryExitDetector_0" period="100.00" file="fileA.txt" timeThreshold="1.00" speedThreshold="1.39" pos="0,10">
4
<detEntry lane="EdgeCenter1_0" pos="2"/>
5
<detExit lane="EdgeCenter0_0" pos="2"/>
6
</entryExitDetector>
7
8
<!-- non valid ID -->
9
<entryExitDetector id="id with spaces" period="100.00" file="fileA.txt" timeThreshold="1.00" speedThreshold="1.39" pos="2,10">
10
<detEntry lane="EdgeCenter1_0" pos="4"/>
11
<detExit lane="EdgeCenter0_0" pos="4"/>
12
</entryExitDetector>
13
14
<!-- non valid ID (Duplicated) -->
15
<entryExitDetector id="entryExitDetector_0" period="100.00" file="fileA.txt" timeThreshold="1.00" speedThreshold="1.39" pos="2,10">
16
<detEntry lane="EdgeCenter1_0" pos="6"/>
17
<detExit lane="EdgeCenter0_0" pos="6"/>
18
</entryExitDetector>
19
20
<!-- non valid ID (Missing) -->
21
<entryExitDetector period="100.00" file="fileA.txt" timeThreshold="1.00" speedThreshold="1.39" pos="4,10">
22
<detEntry lane="EdgeCenter1_0" pos="8"/>
23
<detExit lane="EdgeCenter0_0" pos="8"/>
24
</entryExitDetector>
25
</additional>
26
27