Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ num_young_adults,num_young_adults,"_PERSON_COUNT('25 <= age <= 34', persons, hou
non_family,non_family,households.HHT.isin(HHT_NONFAMILY)
family,family,households.HHT.isin(HHT_FAMILY)
home_is_urban,home_is_urban,"reindex(land_use.area_type, households.home_zone_id) < setting('urban_threshold')"
home_is_rural,home_is_rural,"reindex(land_use.area_type, households.home_zone_id) > setting('rural_threshold')"
home_is_rural,home_is_rural,"reindex(land_use.area_type, households.home_zone_id) > setting('urban_threshold')"
7 changes: 6 additions & 1 deletion activitysim/examples/example_mtc/configs/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,12 @@ output_tables:
# area_types less than this are considered urban
urban_threshold: 4
cbd_threshold: 2
rural_threshold: 6

skim_time_periods:
time_window: 1440
period_minutes: 60
periods: [0, 5, 9, 14, 18, 24] # 5=5:00-5:59, 9=9:00-9:59, 14=2:00-2:59, 18=6:00-6:59
labels: ['EA', 'AM', 'MD', 'PM', 'EV']

# - value of time
min_value_of_time: 1
Expand Down