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
use serde::Deserialize;
use geom::{Distance, FindClosest, LonLat, Time};
use map_model::Map;
use crate::{IndividTrip, PersonSpec, TripEndpoint, TripMode, TripPurpose};
#[derive(Deserialize)]
pub struct ExternalPerson {
pub origin: ExternalTripEndpoint,
pub trips: Vec<ExternalTrip>,
}
#[derive(Deserialize)]
pub struct ExternalTrip {
pub departure: Time,
pub destination: ExternalTripEndpoint,
pub mode: TripMode,
}
#[derive(Deserialize)]
pub enum ExternalTripEndpoint {
TripEndpoint(TripEndpoint),
Position(LonLat),
}
impl ExternalPerson {
pub fn import(map: &Map, input: Vec<ExternalPerson>) -> Result<Vec<PersonSpec>, String> {
let mut closest: FindClosest<TripEndpoint> = FindClosest::new(map.get_bounds());
for b in map.all_buildings() {
closest.add(TripEndpoint::Bldg(b.id), b.polygon.points());
}
for i in map.all_intersections() {
closest.add(TripEndpoint::Border(i.id), i.polygon.points());
}
let lookup_pt = |endpt| match endpt {
ExternalTripEndpoint::TripEndpoint(endpt) => Ok(endpt),
ExternalTripEndpoint::Position(gps) => {
match closest.closest_pt(gps.to_pt(map.get_gps_bounds()), Distance::meters(100.0)) {
Some((x, _)) => Ok(x),
None => Err(format!(
"No building or border intersection within 100m of {}",
gps
)),
}
}
};
let mut results = Vec::new();
for person in input {
let mut spec = PersonSpec {
orig_id: None,
origin: lookup_pt(person.origin)?,
trips: Vec::new(),
};
for trip in person.trips {
spec.trips.push(IndividTrip::new(
trip.departure,
TripPurpose::Shopping,
lookup_pt(trip.destination)?,
trip.mode,
));
}
results.push(spec);
}
Ok(results)
}
}