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
use std::path::Path;
use std::process::Command;
use abstio::MapName;
use abstutil::{must_run_cmd, Timer};
use crate::configuration::ImporterConfiguration;
pub async fn download(config: &ImporterConfiguration, output: String, url: &str) {
if Path::new(&output).exists() {
println!("- {} already exists", output);
return;
}
std::fs::create_dir_all(Path::new(&output).parent().unwrap())
.expect("Creating parent dir failed");
let tmp = "tmp_output";
println!("- Missing {}, so downloading {}", output, url);
abstio::download_to_file(url, tmp).await.unwrap();
if url.contains(".zip") {
let unzip_to = if output.ends_with("/") {
output
} else {
Path::new(&output).parent().unwrap().display().to_string()
};
println!("- Unzipping into {}", unzip_to);
must_run_cmd(Command::new(&config.unzip).arg(tmp).arg("-d").arg(unzip_to));
std::fs::remove_file(tmp).unwrap();
} else if url.ends_with(".gz") {
println!("- Gunzipping");
std::fs::rename(tmp, format!("{}.gz", output)).unwrap();
let mut gunzip_cmd = Command::new(&config.gunzip);
for arg in config.gunzip_args.split_ascii_whitespace() {
gunzip_cmd.arg(arg);
}
must_run_cmd(gunzip_cmd.arg(format!("{}.gz", output)));
} else {
std::fs::rename(tmp, output).unwrap();
}
}
pub async fn download_kml(
output: String,
url: &str,
bounds: &geom::GPSBounds,
require_all_pts_in_bounds: bool,
timer: &mut Timer<'_>,
) {
assert!(url.ends_with(".kml"));
if Path::new(&output).exists() {
println!("- {} already exists", output);
return;
}
std::fs::create_dir_all(Path::new(&output).parent().unwrap())
.expect("Creating parent dir failed");
let tmp = "tmp_output";
if Path::new(&output.replace(".bin", ".kml")).exists() {
std::fs::copy(output.replace(".bin", ".kml"), tmp).unwrap();
} else {
println!("- Missing {}, so downloading {}", output, url);
abstio::download_to_file(url, tmp).await.unwrap();
}
println!("- Extracting KML data");
let shapes = kml::load(tmp.to_string(), bounds, require_all_pts_in_bounds, timer).unwrap();
abstio::write_binary(output.clone(), &shapes);
std::fs::rename(tmp, output.replace(".bin", ".kml")).unwrap();
}
pub fn osmconvert(
input: String,
clipping_polygon: String,
output: String,
config: &ImporterConfiguration,
) {
let clipping_polygon = clipping_polygon;
if Path::new(&output).exists() {
println!("- {} already exists", output);
return;
}
std::fs::create_dir_all(Path::new(&output).parent().unwrap())
.expect("Creating parent dir failed");
println!("- Clipping {} to {}", input, clipping_polygon);
must_run_cmd(
Command::new(&config.osmconvert)
.arg(input)
.arg(format!("-B={}", clipping_polygon))
.arg("--complete-ways")
.arg(format!("-o={}", output)),
);
}
pub fn raw_to_map(
name: &MapName,
build_ch: bool,
keep_bldg_tags: bool,
timer: &mut Timer,
) -> map_model::Map {
timer.start(format!("Raw->Map for {}", name.describe()));
let raw: map_model::raw::RawMap = abstio::read_binary(abstio::path_raw_map(name), timer);
let map = map_model::Map::create_from_raw(raw, build_ch, keep_bldg_tags, timer);
timer.start("save map");
map.save();
timer.stop("save map");
timer.stop(format!("Raw->Map for {}", name.describe()));
if name.map == "huge_seattle" || name == &MapName::new("gb", "leeds", "huge") {
timer.start("generating city manifest");
abstio::write_binary(
abstio::path(format!(
"system/{}/{}/city.bin",
map.get_city_name().country,
map.get_city_name().city
)),
&map_model::City::from_huge_map(&map),
);
timer.stop("generating city manifest");
}
map
}