Mode of transport
ModeOfTransport
Source code in june/groups/travel/mode_of_transport.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
is_private
property
True if this is private transport, for example a car.
__init__(description, is_public=False)
Create a ModeOfTransport from its description.
Only one instance of each mode of transport exists with instances being retrieved from the __all dictionary.
Parameters
description e.g. "Bus, minibus or coach" is_public True if this is public transport, for example a bus.
Source code in june/groups/travel/mode_of_transport.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
index(headers)
Determine the column index of this mode of transport.
The first header that contains this mode of transport's description is counted.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
headers
|
List[str]
|
A list of headers from a CSV file. |
required |
Returns:
Type | Description |
---|---|
int
|
The column index corresponding to this mode of transport.: |
Raises:
Type | Description |
---|---|
An assertion error if no such header is found.
|
|
Source code in june/groups/travel/mode_of_transport.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|
load_from_file(config_filename=default_config_filename)
classmethod
Load all of the modes of transport from commute.yaml.
Modes of transport are globally unique. That is, even if the function is called twice identical mode of transport objects are returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_filename
|
The path to the mode of transport yaml configuration (Default value = default_config_filename) |
default_config_filename
|
Returns:
Type | Description |
---|---|
List[ModeOfTransport]
|
A list of modes of transport: |
Source code in june/groups/travel/mode_of_transport.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
with_description(description)
classmethod
Retrieve a mode of transport by its description.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
description
|
str
|
A description, e.g. 'Bus, minibus or coach' |
required |
Returns:
Type | Description |
---|---|
ModeOfTransport
|
The corresponding ModeOfTransport instance: |
Source code in june/groups/travel/mode_of_transport.py
51 52 53 54 55 56 57 58 59 60 61 62 |
|
ModeOfTransportGenerator
Source code in june/groups/travel/mode_of_transport.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
|
__init__(regional_generators)
Generate a mode of transport that a person uses in their commute.
Modes of transport are chosen randomly, weighted by the numbers taken from census data for each given Output area.
Parameters
regional_generators A dictionary mapping Geography areas to objects that randomly generate modes of transport
Source code in june/groups/travel/mode_of_transport.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
from_file(filename=default_commute_file, config_filename=default_config_filename)
classmethod
Parse configuration describing each included mode of transport along with census data describing the weightings for modes of transport in each output area.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
The path to the commute.csv file. |
default_commute_file
|
This contains data on the number of people using each mode of transport. (Default value = default_commute_file) config_filename (str, optional): The path to the commute.yaml file (Default value = default_config_filename)
Returns:
Type | Description |
---|---|
ModeOfTransportGenerator
|
An object used to generate commutes: |
Source code in june/groups/travel/mode_of_transport.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
|
regional_gen_from_area(area)
Get a regional generator for an Area identified by its output output area, e.g. E00062207
Parameters:
Name | Type | Description | Default |
---|---|---|---|
area
|
str
|
|
required |
Returns:
Type | Description |
---|---|
RegionalGenerator
|
An object that weighted-randomly selects modes of transport for the region.: |
Source code in june/groups/travel/mode_of_transport.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
|
RegionalGenerator
Source code in june/groups/travel/mode_of_transport.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
|
__init__(area, weighted_modes)
Randomly generate modes of transport, weighted by usage, for one particular region.
Parameters
area A unique identifier for a Output region weighted_modes A list of tuples comprising the number of people using a mode of a transport and a representation of that mode of transport
Source code in june/groups/travel/mode_of_transport.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
weighted_random_choice()
Randomly choose a mode of transport, weighted by usage in this region.
Source code in june/groups/travel/mode_of_transport.py
170 171 172 173 174 175 |
|