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
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
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
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
182
183
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
use std::collections::{HashMap, HashSet};
use abstutil::MultiMap;
use connectivity::Spot;
use geom::Duration;
use map_gui::tools::draw_isochrone;
use map_model::{
connectivity, AmenityType, BuildingID, BuildingType, IntersectionID, LaneType, Map, Path,
PathConstraints, PathRequest,
};
use widgetry::mapspace::{ToggleZoomed, ToggleZoomedBuilder};
use widgetry::{Color, EventCtx};
use crate::App;
pub struct Isochrone {
pub start: Vec<BuildingID>,
pub options: Options,
pub draw: ToggleZoomed,
pub thresholds: Vec<f64>,
pub colors: Vec<Color>,
pub time_to_reach_building: HashMap<BuildingID, Duration>,
pub amenities_reachable: MultiMap<AmenityType, BuildingID>,
pub population: usize,
pub onstreet_parking_spots: usize,
}
#[derive(Clone)]
pub struct Options {
pub movement: MovementOptions,
pub thresholds: Vec<(Duration, Color)>,
}
impl Options {
pub fn default_thresholds() -> Vec<(Duration, Color)> {
vec![
(Duration::minutes(5), Color::GREEN.alpha(0.5)),
(Duration::minutes(10), Color::ORANGE.alpha(0.5)),
(Duration::minutes(15), Color::RED.alpha(0.5)),
]
}
}
#[derive(Clone)]
pub enum MovementOptions {
Walking(connectivity::WalkingOptions),
Biking,
}
impl MovementOptions {
pub fn times_from(self, map: &Map, starts: Vec<Spot>) -> HashMap<BuildingID, Duration> {
match self {
MovementOptions::Walking(opts) => {
connectivity::all_walking_costs_from(map, starts, Duration::minutes(15), opts)
}
MovementOptions::Biking => connectivity::all_vehicle_costs_from(
map,
starts,
Duration::minutes(15),
PathConstraints::Bike,
),
}
}
}
impl Isochrone {
pub fn new(
ctx: &mut EventCtx,
app: &App,
start: Vec<BuildingID>,
options: Options,
) -> Isochrone {
let spot_starts = start.iter().map(|b_id| Spot::Building(*b_id)).collect();
let time_to_reach_building = options.movement.clone().times_from(&app.map, spot_starts);
let mut amenities_reachable = MultiMap::new();
let mut population = 0;
let mut all_roads = HashSet::new();
for b in time_to_reach_building.keys() {
let bldg = app.map.get_b(*b);
for amenity in &bldg.amenities {
if let Some(category) = AmenityType::categorize(&amenity.amenity_type) {
amenities_reachable.insert(category, bldg.id);
}
}
match bldg.bldg_type {
BuildingType::Residential { num_residents, .. }
| BuildingType::ResidentialCommercial(num_residents, _) => {
population += num_residents;
}
_ => {}
}
all_roads.insert(bldg.sidewalk_pos.lane().road);
}
let mut onstreet_parking_spots = 0;
for r in all_roads {
let r = app.map.get_r(r);
for l in &r.lanes {
if l.lane_type == LaneType::Parking {
onstreet_parking_spots += l.number_parking_spots(app.map.get_config());
}
}
}
let mut thresholds = vec![0.1];
let mut colors = Vec::new();
for (threshold, color) in &options.thresholds {
thresholds.push(threshold.inner_seconds());
colors.push(*color);
}
let mut i = Isochrone {
start,
options,
draw: ToggleZoomed::empty(ctx),
thresholds,
colors,
time_to_reach_building,
amenities_reachable,
population,
onstreet_parking_spots,
};
i.draw = ToggleZoomedBuilder::from(draw_isochrone(
&app.map,
&i.time_to_reach_building,
&i.thresholds,
&i.colors,
))
.build(ctx);
i
}
pub fn path_to(&self, map: &Map, to: BuildingID) -> Option<Path> {
if !self.time_to_reach_building.contains_key(&to) {
return None;
}
let constraints = match self.options.movement {
MovementOptions::Walking(_) => PathConstraints::Pedestrian,
MovementOptions::Biking => PathConstraints::Bike,
};
let all_paths = self.start.iter().filter_map(|b_id| {
PathRequest::between_buildings(map, *b_id, to, constraints)
.and_then(|req| map.pathfind(req).ok())
});
all_paths.min_by_key(|path| path.total_length())
}
}
pub struct BorderIsochrone {
pub start: Vec<IntersectionID>,
pub options: Options,
pub draw: ToggleZoomed,
pub thresholds: Vec<f64>,
pub colors: Vec<Color>,
pub time_to_reach_building: HashMap<BuildingID, Duration>,
}
impl BorderIsochrone {
pub fn new(
ctx: &mut EventCtx,
app: &App,
start: Vec<IntersectionID>,
options: Options,
) -> BorderIsochrone {
let spot_starts = start.iter().map(|i_id| Spot::Border(*i_id)).collect();
let time_to_reach_building = options.movement.clone().times_from(&app.map, spot_starts);
let thresholds = vec![0.1, Duration::minutes(15).inner_seconds()];
let colors = vec![Color::rgb(0, 0, 0).alpha(0.3)];
let mut i = BorderIsochrone {
start,
options,
draw: ToggleZoomed::empty(ctx),
thresholds,
colors,
time_to_reach_building,
};
i.draw = ToggleZoomedBuilder::from(draw_isochrone(
&app.map,
&i.time_to_reach_building,
&i.thresholds,
&i.colors,
))
.build(ctx);
i
}
}