You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data-types.md
+31-16Lines changed: 31 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,36 +33,51 @@ A vehicle record is as follows:
33
33
|`accessibility_options`| Enum[]| Required |**[Mode](/modes#list-of-supported-modes) Specific**. [Accessibility options](/modes#accessibility-options) given as an array of enumerated values. List of any accessibility options **available on the vehicle**. |
34
34
|`battery_capacity`| Integer | Required if Available | Capacity of battery expressed as milliamp hours (mAh) |
35
35
|`fuel_capacity`| Integer | Required if Available | Capacity of fuel tank (liquid, solid, gaseous) expressed in liters |
36
+
|`maximum_speed`| Integer | Required if Available | Maximum speed (kph) possible with vehicle under normal, flat incline, smooth surface conditions. Applicable if the device has a built-in or intelligent speed limiter/governor. |
36
37
37
38
[Top][toc]
38
39
39
40
### Vehicle Types
40
41
41
-
The list of allowed `vehicle_type` values in MDS. Aligning with [GBFS vehicle types form factors](https://github.com/NABSA/gbfs/blob/master/gbfs.md#vehicle_typesjson-added-in-v21-rc).
42
+
The list of allowed `vehicle_type` values in MDS.
42
43
43
-
|`vehicle_type`| Description |
44
-
|------------------| ----------- |
45
-
|`bicycle`| A two-wheeled mobility device intended for personal transportation that can be operated via pedals, with or without a motorized assist (includes e-bikes, recumbents, and tandems) |
46
-
|`cargo_bicycle`| A two- or three-wheeled bicycle intended for transporting larger, heavier cargo than a standard bicycle (such as goods or passengers), with or without motorized assist (includes bakfiets/front-loaders, cargo trikes, and long-tails) |
47
-
|`car`| A passenger car or similar light-duty vehicle |
48
-
|`scooter`| A standing or seated fully-motorized mobility device intended for one rider, capable of travel at low or moderate speeds, and suited for operation in infrastructure shared with motorized bicycles |
49
-
|`moped`| A seated fully-motorized mobility device capable of travel at moderate or high speeds and suited for operation in general urban traffic |
50
-
|`delivery_robot`| A robot intended for transporting goods |
51
-
|`other`| A device that does not fit in the other categories |
44
+
|`vehicle_type`| Description |
45
+
|--------------------| ----------- |
46
+
|`bicycle`| A two-wheeled mobility device intended for personal transportation that can be operated via pedals, with or without a motorized assist (includes e-bikes, recumbents, and tandems) |
47
+
|`bus`| A vehicle larger than a car or small truck capable of transporting multiple passengers at once |
48
+
|`cargo_bicycle`| A two- or three-wheeled bicycle intended for transporting larger, heavier cargo than a standard bicycle (such as goods or passengers), with or without motorized assist (includes bakfiets/front-loaders, cargo trikes, and long-tails) |
49
+
|`car`| A passenger car or similar light-duty vehicle |
50
+
|`delivery_robot`| A robot or remote-operated device intended for transporting goods |
51
+
|`moped`| A seated fully-motorized mobility device capable of travel at moderate or high speeds and suited for operation in general urban traffic |
52
+
|`motorcycle`| A seated fully-motorized mobility device capable of travel at high speeds and suited for operation in general urban traffic and highways |
53
+
|`scooter_standing`| A standing fully-motorized mobility device without a seat intended for one rider, capable of travel at low or moderate speeds, and suited for operation in infrastructure shared with motorized bicycles |
54
+
|`scooter_seated`| A fully-motorized mobility device with a seat intended for one rider, capable of travel at low or moderate speeds, and suited for operation in infrastructure shared with motorized bicycles |
55
+
|`truck`| A truck or vehicle larger than a car or similar heavy-duty vehicle |
56
+
|`other`| A device that does not fit in the other categories |
57
+
58
+
Values based off of `form_factor` in [GBFS vehicle_types](https://github.com/MobilityData/gbfs/blob/master/gbfs.md#vehicle_typesjson), with some additional to support MDS modes.
|`electric_assist`| Provides electric motor assist only in combination with human propulsion - no throttle mode |
70
+
|`electric`| Powered by battery-powered electric motor with throttle mode |
71
+
|`combustion`| Powered by gasoline combustion engine |
72
+
|`combustion_diesel`| Powered by diesel combustion engine |
73
+
|`hybrid`| Powered by combined combustion engine and battery-powered motor |
74
+
|`hydrogen_fuel_cell`| Powered by hydrogen fuel cell powered electric motor |
75
+
|`plug_in_hybrid`| Powered by combined combustion engine and battery-powered motor with plug-in charging |
63
76
64
77
A vehicle may have one or more values from the `propulsion`, depending on the number of modes of operation. For example, a scooter that can be powered by foot or by electric motor would have the `propulsion` represented by the array `['human', 'electric']`. A bicycle with pedal-assist would have the `propulsion` represented by the array `['human', 'electric_assist']` if it can also be operated as a traditional bicycle.
65
78
79
+
Values based off of `propulsion_type` in [GBFS vehicle_types](https://github.com/MobilityData/gbfs/blob/master/gbfs.md#vehicle_typesjson).
0 commit comments