Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/elements/additionals/e3detector/load/timethreshold/additionals.add.xml
169735 views
1
<additional xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/additional_file.xsd">
2
<!-- non valid timeThreshold missing) -->
3
<entryExitDetector id="entryExitDetector_0" period="100.00" file="fileA.txt" speedThreshold="1.39" pos="18,10">
4
<detEntry lane="EdgeCenter1_0" pos="24"/>
5
<detExit lane="EdgeCenter0_0" pos="24"/>
6
</entryExitDetector>
7
8
<!-- non valid timeThreshold (dummy) -->
9
<entryExitDetector id="entryExitDetector_1" period="100.00" file="fileA.txt" timeThreshold="dummyTimeTreshold" speedThreshold="1.39" pos="20,10">
10
<detEntry lane="EdgeCenter1_0" pos="26"/>
11
<detExit lane="EdgeCenter0_0" pos="26"/>
12
</entryExitDetector>
13
14
<!-- non valid timeThreshold (negative) -->
15
<entryExitDetector id="entryExitDetector_2" period="100.00" file="fileA.txt" timeThreshold="-5" speedThreshold="1.39" pos="22,10">
16
<detEntry lane="EdgeCenter1_0" pos="28"/>
17
<detExit lane="EdgeCenter0_0" pos="28"/>
18
</entryExitDetector>
19
20
<!-- valid timeThreshold -->
21
<entryExitDetector id="entryExitDetector_3" period="100.00" file="fileA.txt" timeThreshold="2.12" speedThreshold="1.39" pos="24,10">
22
<detEntry lane="EdgeCenter1_0" pos="30"/>
23
<detExit lane="EdgeCenter0_0" pos="30"/>
24
</entryExitDetector>
25
</additional>
26
27