-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
73 lines (73 loc) · 1.7 KB
/
Copy pathconfig.example.json
File metadata and controls
73 lines (73 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
{
"candidates": [
{
"name": "Flat A - Kreuzberg",
"address": "Oranienstraße 25, 10999 Berlin, Germany",
"rent": 1750
},
{
"name": "Flat B - Prenzlauer Berg",
"address": "Kastanienallee 49, 10119 Berlin, Germany",
"rent": 1950
},
{
"name": "Flat C - Neukölln",
"address": "Weserstraße 42, 12045 Berlin, Germany",
"rent": 1500
}
],
"destinations": {
"Office": {
"address": "Potsdamer Platz 1, 10785 Berlin, Germany",
"weight": 0.2,
"mode": "bike",
"icon": "briefcase",
"color": "blue"
},
"Hauptbahnhof": {
"address": "Europaplatz 1, 10557 Berlin, Germany",
"weight": 0.15,
"mode": "bike",
"icon": "train",
"color": "red"
}
},
"weights": {
"supermarket": 0.3,
"bakery": 0.1,
"pharmacy": 0.15,
"gym": 0.15,
"transit": 0.33,
"green": 0.05,
"noise": 0.05,
"rent": 0.25
},
"parameters": {
"buffer_m": 500,
"noise_cap_m": 200,
"rent_budget_eur": 2500.0,
"commute_cap_min": 45.0,
"walking_speed_m_per_min": 83.33,
"cycling_speed_m_per_min": 250.0,
"poi_dedupe_tolerance_m": 10.0,
"max_bbox_span_km": 30.0,
"saturation": {
"supermarket": 2.0,
"bakery": 2.0,
"pharmacy": 1.0,
"gym": 1.0,
"transit": 4.0,
"green": 30.0
},
"projected_crs": "auto",
"show_walk_routes": true,
"routing_mode": "network",
"detour_factor": 1.25,
"nominatim_url": "https://nominatim.openstreetmap.org/"
},
"output": {
"csv_file": "output/apartment_scores.csv",
"html_file": "output/apartment_map.html",
"overview_file": "output/apartment_overview.html"
}
}