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: config/README.md
+32-22Lines changed: 32 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,11 @@ The config.toml file has an explanation for each parameter. You can copy the tom
3
3
```toml
4
4
[parameters]
5
5
seed = 0
6
-
# this is used to query poi data from osm and to load in SPC data
7
-
region = "leeds"
8
-
# how many people from the SPC do we want to run the model for? Comment out if you want to run the analysis on the entire SPC populaiton
9
-
number_of_households = 2500
10
-
# "OA21CD": OA level, "MSOA11CD": MSOA level
11
-
zone_id = "MSOA21CD"
12
-
# Only set to true if you have travel time matrix at the level specified in boundary_geography
13
-
travel_times = false
14
-
boundary_geography = "MSOA"
6
+
region = "leeds"# this is used to query poi data from osm and to load in SPC data
7
+
number_of_households = 5000# how many people from the SPC do we want to run the model for? Comment out if you want to run the analysis on the entire SPC populaiton
8
+
zone_id = "OA21CD"# "OA21CD": OA level, "MSOA11CD": MSOA level
9
+
travel_times = true# Only set to true if you have travel time matrix at the level specified in boundary_geography
# for optional and required columns, see the [iterative_match_categorical](https://github.com/Urban-Analytics-Technology-Platform/acbm/blob/ca181c54d7484ebe44706ff4b43c26286b22aceb/src/acbm/matching.py#L110) function
35
32
# Do not add any column not listed below. You can only move a column from optional to require (or vise versa)
# if true, optimization problem will try to minimize percentage difference at OD level (not absolute numbers). Recommended to set it to true
53
-
use_percentages = true
57
+
commute_level = "OA"
58
+
use_percentages = true# if true, optimization problem will try to minimize percentage difference at OD level (not absolute numbers). Recommended to set it to true
54
59
# weights to add for each objective in the optimization problem
55
60
weight_max_dev = 0.2
56
61
weight_total_dev = 0.8
57
-
# maximum number of feasible zones to include in the optimization problem (less zones makes problem smaller - so faster, but at the cost of a better solution)
58
-
max_zones = 10
62
+
max_zones = 8# maximum number of feasible zones to include in the optimization problem (less zones makes problem smaller - so faster, but at the cost of a better solution)
63
+
64
+
[secondary_assignment]
65
+
# Probablity of choosing a secondary zone. Same idea as a gravity model. We use floor_space / distance^n, where n is the power value used here
66
+
# See here to understand how this probability matrix is used https://github.com/arup-group/pam/blob/main/examples/17_advanced_discretionary_locations.ipynb
67
+
visit_probability_power = 2.0# Default power value
0 commit comments