-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicles.xml
22 lines (21 loc) · 852 Bytes
/
vehicles.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<vehicleDefinitions xmlns="http://www.matsim.org/files/dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.matsim.org/files/dtd http://www.matsim.org/files/dtd/vehicleDefinitions_v1.0.xsd">
<vehicleType id="car">
<length meter="7.5"/>
<width meter="1.0"/>
<maximumVelocity meterPerSecond="40"/>
<accessTime secondsPerPerson="1.0"/>
<egressTime secondsPerPerson="1.0"/>
<doorOperation mode="serial"/>
<passengerCarEquivalents pce="1.0"/>
</vehicleType>
<vehicleType id="bicycle">
<length meter="7.5"/>
<width meter="1.0"/>
<maximumVelocity meterPerSecond="0.5"/>
<accessTime secondsPerPerson="1.0"/>
<egressTime secondsPerPerson="1.0"/>
<doorOperation mode="serial"/>
<passengerCarEquivalents pce="0.25"/>
</vehicleType>
</vehicleDefinitions>