Enumerations ¶
Data Model Enumerated Variables
Instructions: modify these enumerated variables as needed for your ActivitySim implementation.
AreaType
¶
Bases: IntEnum
Provide an integer mapping for area type, which serves as a proxy for urban form.
Source code in enums.py
72 73 74 75 76 77 78 79 80 |
|
DailyActivityPattern
¶
Bases: IntEnum
Provides an integer mapping to the daily activity pattern variable.
Source code in enums.py
48 49 50 51 52 53 54 55 |
|
Gender
¶
Bases: IntEnum
Provides an integer mapping for gender.
Source code in enums.py
25 26 27 28 29 30 31 32 |
|
Mode
¶
Bases: IntEnum
Provides an integer mapping for travel mode.
Source code in enums.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
ModelTime
¶
Bases: IntEnum
Provides an integer mapping from military time to model time interval index.
The name represents the starting point of the interval. So the interval from
3:00 am to 3:30 am is represented by index 1, which is named ZERO_THREE
.
Source code in enums.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 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 |
|
Occupation
¶
Bases: IntEnum
Provides an integer mapping for a persons occupation.
Source code in enums.py
35 36 37 38 39 40 41 42 43 44 45 |
|
PersonType
¶
Bases: IntEnum
Provides integer mapping to the person type variable. A person type is used as a co-variate in numerous ActivitySim modules to explain behavior.
Source code in enums.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
Purpose
¶
Bases: IntEnum
Provides an integer mapping for trip and tour purpose.
Source code in enums.py
58 59 60 61 62 63 64 65 66 67 68 69 |
|